nfs服務器的搭建和掛載使用
阿新 • • 發佈:2018-03-16
nfs mount nfs掛載 實驗環境:centos7.3
服務器: JAMF 172.16.22.247
客戶端: zabbix 172.16.22.233
安裝包:
服務器:
客戶端:
服務器: 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
[root@JAMF ~]# systemctl start rpcbind [root@JAMF ~]# systemctl start nfs [root@JAMF ~]# systemctl enable rpcbind [root@JAMF ~]# systemctl enable nfs
服務器關閉selinux,防火墻信任客戶端源IP
getenforce
Disabled
[root@JAMF ~]# firewall-cmd --permanent --zone=trusted --add-source=172.16.22.233
success
[root@JAMF ~]# firewall-cmd --reload
success
客戶端掛載:
[root@zabbix ~]# showmount -e 172.16.22.247 Export list for 172.16.22.247: /home/nfsdir 172.16.22.0/24 [root@zabbix ~]# 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) [root@zabbix ~]# df -h | grep nfs 172.16.22.247:/home/nfsdir 76G 24G 53G 31% /mnt
客戶端:
[root@JAMF nfsdir]# ll
[root@zabbix ~]# echo -e "testnfs\nmysql\n" > /mnt/testnf.txt
-rw-r--r-- 1 www www 15 Mar 16 01:28 testnf.txt
[root@zabbix ~]# ll /mnt/
total 8
-rw-r--r-- 1 www www 15 Mar 16 2018 testnf.txt
[root@zabbix ~]# id www
uid=1000(www) gid=1000(www) groups=1000(www) //雖然在客戶端使用的是root賬號創建的文件,但實際上是
[root@zabbix ~]#
服務器:
[root@JAMF mnt]# cd /home/nfsdir/
[root@JAMF 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
[root@JAMF nfsdir]# id www
uid=1000(www) gid=1000(www) groups=1000(www)
nfs服務器的搭建和掛載使用