nfs服务器的搭建和挂载使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nfs服务器的搭建和挂载使用相关的知识,希望对你有一定的参考价值。
实验环境:centos7.3
服务器: JAMF 172.16.22.247
客户端: zabbix 172.16.22.233
安装包:
服务器: yum -y install rpcbind.x86_64 nfs-utils.x86_64
客户端: yum -y install nfs-utils
服务器:
vim /etc/exports
/home/nfsdir 172.16.22.0/24(rw,sync,all_squash,anonuid=1000,anongid=1000)
NFS配置选项
- rw 读写
- ro 只读
- sync 同步模式,内存数据实时写入磁盘
- async 非同步模式
- no_root_squash 客户端挂载NFS共享目录后,root用户不受约束,权限很大
- root_squash 与上面选项相对,客户端上的root用户收到约束,被限定成某个普通用户
- all_squash 客户端上所有用户在使用NFS共享目录时都被限定为一个普通用户
- anonuid/anongid 和上面几个选项搭配使用,定义被限定用户的uid和gid
[[email protected] ~]# systemctl start rpcbind
[[email protected] ~]# systemctl start nfs
[[email protected] ~]# systemctl enable rpcbind
[[email protected] ~]# systemctl enable nfs
服务器关闭selinux,防火墙信任客户端源IP
getenforce
Disabled
[[email protected] ~]# firewall-cmd --permanent --zone=trusted --add-source=172.16.22.233
success
[[email protected] ~]# firewall-cmd --reload
success
客户端挂载:
[[email protected] ~]# showmount -e 172.16.22.247
Export list for 172.16.22.247:
/home/nfsdir 172.16.22.0/24
[[email protected] ~]# mount | grep nfs
nfsd on /proc/fs/nfsd type nfsd (rw,relatime)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime)
172.16.22.247:/home/nfsdir on /mnt type nfs4 (rw,relatime,vers=4.1,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,clientaddr=172.16.22.233,local_lock=none,addr=172.16.22.247)
[[email protected] ~]# df -h | grep nfs
172.16.22.247:/home/nfsdir 76G 24G 53G 31% /mnt
客户端:
[[email protected] nfsdir]# ll
[[email protected] ~]# echo -e "testnfs\nmysql\n" > /mnt/testnf.txt
-rw-r--r-- 1 www www 15 Mar 16 01:28 testnf.txt
[[email protected] ~]# ll /mnt/
total 8
-rw-r--r-- 1 www www 15 Mar 16 2018 testnf.txt
[[email protected] ~]# id www
uid=1000(www) gid=1000(www) groups=1000(www) //虽然在客户端使用的是root账号创建的文件,但实际上是
[[email protected] ~]#
服务器:
[[email protected] mnt]# cd /home/nfsdir/
[[email protected] nfsdir]# ll
total 4
-rw-r--r-- 1 www www 15 Mar 16 18:00 testnfs.txt
drwxr-xr-x 2 www www 6 Mar 16 01:40 tmp
[[email protected] nfsdir]# id www
uid=1000(www) gid=1000(www) groups=1000(www)
以上是关于nfs服务器的搭建和挂载使用的主要内容,如果未能解决你的问题,请参考以下文章