Nfs
NFS 連接被拒絕
我想用 NFS 設置文件共享伺服器。但是當我想顯示導出的內容時,我得到了這個:
manuel@server ~ $ showmount clnt_create: RPC: Port mapper failure - Unable to receive: errno 111 (Connection refused)
它有什麼問題?
太可怕了。我閱讀了大約 5 個教程,但沒有一個提到需要該服務
rpcbind
。對於 Debian
sudo service rpcbind start
成功了。
請執行下列操作:
vi /etc/sysconfig/iptables
- 刪除拒絕條目
- 刪除轉發條目
- 節省
在命令行中,鍵入:
iptables -I INPUT -p tcp --dport 111 -j ACCEPT iptables -I INPUT -p tcp --dport 2049 -j ACCEPT /etc/init.d/iptables save
重新啟動
rpcbind
服務。執行
showmount -e ipaddress
其中“ipaddress”是 NFS 伺服器的 IP。