码迷,mamicode.com
首页 > 其他好文 > 详细

nfs服务配置

时间:2015-04-13 13:02:31      阅读:139      评论:0      收藏:0      [点我收藏+]

标签: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服务配置

标签:nfs共享目录服务配置

原文地址:http://8909011.blog.51cto.com/8899011/1631788

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!