今天使用CentOS 6.x 安裝CentOS 架設NFS server,照網路上的教學,基本上就是安裝三個套件,並把它設定啟動即可,不過卻遇到錯誤訊息,
System Error: No route to host. 查了一下,原來是firewall設定的問題,最簡單的方法就是把iptables 停止,或著就是直接修改ptables的設定
#services iptables stop
A.安裝nfs server packages
#yum install rpcbind #yum install nfs-utils nfs-utils-lib
B.設定nfs config
#啟動相關服務
#chkconfig --level 35 nsf on
#chkconfig --level 35 nsflock on
#chkconfig --level 35 rpcbind on
#service nsf start
#service nsflock start
#service rpcbind start
#vim /etc/exports
##範例如下:
/sharefolder 192.168.1.0/23(rw,insecure,async,no_wdelay,no_subtree_check,no_root_squash,no_all_squash,anonuid=99,anongid=99)
#更改分享檔案的權限,
#chown nfsnobody.nofsnobody /sharefolder
C.disable iptables
#services iptables stop
沒有留言:
張貼留言