nfs 挂载

nfs 挂载试验

172.16.74.105 nfs client  

172.16.74.106 nfs server


nfs 上 

第一步:

nfs server 上安装     (nfs  client  上也需要安装)

yum install nfs-utils


第二步:

nfs配置文件

# cat /etc/exports 

/tmp *(rw,sync,no_root_squash)


第三步:

nfs启动

# /etc/init.d/rpcbind start

# /etc/init.d/nfs start


第四步:

查看共享的目录

# exportfs -rv


第五步:

client挂载

yum -y install nfs-utils

# cat /etc/fstab

172.16.74.106:/data /nfs nfs defaults,noatime 1 2


# mount -a


第六步:

nfs server 查看挂载项

# showmount -e 172.16.74.106

Export list for 172.16.74.106:

/data *


第七步:

异常描述:

1.在 nfs server 上 把 nfs 服务停掉,client 上 执行 df -h 会被卡住


解决:

1.在 nfs server 上 把 nfs 重启下,备注:reload 貌似不行

# /etc/init.d/rpcbind restart

# /etc/init.d/nfs restart

        2.在 nfs client 上执行 df -h 可以正常执行

你可能感兴趣的:(nfs)