Nfs

NFS 連接被拒絕

  • September 8, 2019

我想用 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
  1. 刪除拒絕條目
  2. 刪除轉發條目
  3. 節省

在命令行中,鍵入:

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。

引用自:https://unix.stackexchange.com/questions/64915