标签:port 查看 util line 文件 keyword 启动 service uil
1,安装软件:
yum -y install nfs-utils
注意,会自动安装rpcbind
2,启动nfs
service rpcbind start
service nfs start
3,修改配置文件
vim /etc/exports
/data 172.16.12.0/24(rw,sync,anonuid=48,anongid=48)
4,读取nfs配置文件
exportfs -r
5,查看nfs挂载情况
showmount -e 172.16.12.1
Export list for 172.16.12.1:
/data 172.16.12.0/24
6,客户端配置,同样安装nfs-utils和rpcbind
yum -y install nfs-utils
7,客户端挂载nfs
mount -t nfs 172.16.12.1:/data /mnt/nfs
标签:port 查看 util line 文件 keyword 启动 service uil
原文地址:http://www.cnblogs.com/linushelp/p/7019306.html