參考該連接rpm -qa rpcbind nfs-tools
//檢查是否已安裝次工具html
yum install rpcbind nfs-tools -y
vim
yum install net-tools lsof -y
//安裝端口檢查和服務的工具服務器
systemctl status rpcbind systemctl start rpcbind lsof -i :111 //查看rpcbind 111端口是否開啓 netstat -tulnp | grep rpcbind //檢查rpcbind 服務
rpcinfo -p localhost
此時nfs 還沒開啓,因此沒太多的註冊端口信息工具
檢查rpcbind 是否開機啓動systemctl is-enabled rpcbind
測試
systemclt start nfs
code
systemclt status nfs
htm
mkdir /data chown -R nfsnobody:nfsnobody /data
vim /etc/exprots /data 192.168.100.0/24(rw,sync) `ps:` 該ip 爲nfs客戶端的ip `exports -rv` 讓配置生效 `cat /var/lib/nfs/etab` 查看nfs 開始的參數,包含默認的參數
mkdir /data2 mount -t nfs 192.168.100.128:/data /data2 df -h
cat /var/lib/nfs/rmtab
blog
yum install rpcbind nfs-tools -y
ip
systemctl start rpcbind
ci
yum install showmount -y
showmount -e 192.168.100.128
//查看客戶端是否有權限鏈接nfs服務端機器
ps: 這裏要提早關閉nfs 服務端的防火牆,該命令爲
systemctl stop firewalld
mount -t nfs 192.168.100.128:/data /data2
查看 df -h