linux NFS启动失败

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux NFS启动失败相关的知识,希望对你有一定的参考价值。

[root@station17 mnt]# service nfs restart
Shutting down NFS mountd: [ OK ]
Shutting down NFS daemon: [ OK ]
Shutting down NFS quotas: [ OK ]
Shutting down NFS services: [FAILED]
Starting NFS services: [ OK ]
Starting NFS quotas: [ OK ]
Starting NFS daemon: [ OK ]
Starting NFS mountd: [ OK ]

高手请进,帮着分析下
关键是不能用啊,我试了下,在/etc/host.conf下面添加上东西,那一项就显示OK了,不过出来一大推的东西,也不知道怎么回事

根据你的提示可以看出两个问题
1。在这次启动之前,你的nfs mounted已经顺利启动,这个服务管理nfs挂载
你的nfs daemon也已经顺利启动,这个服务管理客户端机能否顺利登入主机
你的nfs磁盘配额服务业已经顺利启动,这个是nfs磁盘配额
你的nfs 服务没有顺利启动,这个是你的nfs服务器端的主程序
在你这次重启nfs服务时
你后面的四个表示,现在四个服务都已顺利启动
所以整个来说,就是前四个的意思是,关闭程序的状况
后四个是再启动这四个的状况
似乎没有什么问题,不知道你说的错误是什么
参考技术A 去查看你的nfs配置共享的文件 里面语法或者格式有错误
例如 /shared 192.168.0.0/24(rw,sync)
/shared 192.168.0.0/255.255.255.0 (rw,sync) 这两行有很大区别。注意网络号格式
参考技术B 没有启动失败吖,
Shutting down NFS services: [FAILED]
是关闭失败(应该是没有开启造成的)

Starting NFS services: [ OK ]
已经启动成功
参考技术C Shutting down NFS services: [faild] 是关闭NFS失败,你的NFS已经启动成功了,你可以试一下,可以用的 参考技术D 请确定你的portmap服务是启动的 ,并且保证你的/etc/exports文件里面的内容格式正确

nfs(linux+linux)

服务端 192.168.1.15
客户端 192.168.1.157

1服务端安装过程

1.下载 nfs-utils和 rpcbind
yum install -y nfs-utils rpcbind
2.启动rpcbind(必须先启动)
systemctl start rpcbind
3.启动nfs-utils
systemctl start nfs
4.查看进程

ps aux | grep nfs
ps aux | grep rpcbind

5.设置开机自启动

systemctl enable rpcbind
systemctl enable nfs

6.查看自启情况
systemctl list-unit-files --type=service|grep "enabled"|egrep "rpcbind|nfs"
7.创建目录
mkdir /data
8.给权限
chown -R nfsnobody.nfsnobody /data
9.配置共享目录

cat>>/etc/exports<<EOF
> #NFS server share directories
> /data 192.168.1.0/24(rw,sync)
> EOF

10.平滑重启nfs
systemctl reload nfs
11.查看挂载目录
showmount -e 192.168.1.158(服务端Ip)
12.关闭防火墙

systemctl stop firewalld
setenforce 0

13.给/data目录加权限
chmod 777 /data

2 客户端安装

1.下载
yum install nfs-utils rpcbind -y
2.启动rcpbind(不用启nfs)
systemctl start rpcbind
3.设置开机自启动
systemctl enable rpcbind
4.本地查看挂载目录
showmount -e 192.168.1.158
5.设置开机自动挂载

mount -t nfs 192.168.1.158:/data /mnt
echo "mount -t nfs 192.168.1.158:/data /mnt">>/etc/rc.local

6.查看
df -h
7.关闭防火墙

systemctl stop firewalld
setenforce 0

以上是关于linux NFS启动失败的主要内容,如果未能解决你的问题,请参考以下文章

linux挂载iSCSI失败,求帮助

nfs 启动有问题急!!!!!高手请进

HDFS添加 NFS Gateway 角色实例启动失败问题及解决办法

linux 设好fstab 要开机自动挂载其他服务器上的nfs共享,为啥没有自动挂载?

linux nfs挂载失败案例

Linux启动apache失败怎么办