Linux學習筆記十四周一次課(5月9日)
阿新 • • 發佈:2018-05-10
NFS介紹 NFS服務端安裝 NFS客戶端安裝 14.1 NFS介紹
14.2 NFS服務端安裝配置
服務端安裝nfs-utils和rpcbind;客戶端只安裝nfs-utils
#yum install -y nfs-utils rpcbind
#vim /etc/exports
/home/nfstestdir
192.168.133.0/24(rw,sync,all_squash,anonuid=1000,anongid=1000)
#mkdir /home/nfstestdir
#chmod 777 /home/nfstestdir
查看監聽端口#netstat -lntp
#systemctl start rpcbind
#systemctl start nfs
查看運行進程服務#ps aux | grep nfs
開機啟動#systemctl enable rpcbind
#systemctl enable nfs
14.3 NFS配置選項
#yum install -y nfs-utils
#showmount -e 192.168.133.130
關閉防火墻服務#systemctl stop firewalld
關閉防火墻#setenforce 0
#mount -t nfs 192.168.133.130:/home/nfstestdir /mnt
#df -h
#touch /mnt/aminglinux.txt
#ls -l /mnt/aminglinux.txt
Linux學習筆記十四周一次課(5月9日)