标签:nfs共享目录服务配置
今天就讲一讲NFS的配置,NFS共享服务 提供Linux与Unix之间的共享服务
1.软件包
nfs-utils portmap
2.主配置文件
/etc/exports
3.安装
rpm -q nfs-utils portmap或者用yum -y install nfs
[root@ser1 ~]# cat /etc/exports
/root 192.168.10.20(rw,sync,no_root_squash)
/usr/src 192.168.10.0/24(rw,async,all_squash)
a.启动服务
[root@ser1 ~]# service portmap restart
[root@ser1 ~]# service nfs restart
[root@ser1 ~]# chkconfig portmap on
[root@ser1 ~]# chkconfig nfs on
b.设置目录权限
[root@ser1 ~]# setfacl -m u:nfsnobody:rwx /usr/src/ //对nfsnobody用户有rwx权限
c.客户端测试
[root@ser2 ~]# showmount -e 192.168.10.10
Export list for 192.168.10.10:
/root 192.168.10.20
/usr/src 192.168.10.0/24
[root@ser2 ~]# mkdir -p /data/{src,root}
[root@ser2 ~]# mount -t nfs 192.168.10.10:/root/ /data/root/ //-t nfs 可省略
[root@ser2 ~]# mount -t nfs 192.168.10.10:/usr/src/ /data/src/
[root@ser2 ~]# touch /data/root/file1.txt
[root@ser2 ~]# touch /data/src/file1.txt
[root@ser2 ~]# ls -l /data/{root,src}/file1.txt
-rw-r--r-- 1 root root 0 11-19 17:36 /data/root/file1.txt
-rw-r--r-- 1 nfsnobody nfsnobody 0 11-19 17:36 /data/src/file1.txt
NFS配置完成,如果大家有什么疑问可以留言,希望能帮助大家
标签:nfs共享目录服务配置
原文地址:http://8909011.blog.51cto.com/8899011/1631788