[Linux] - centos使用mount + nfs 遠程共享存儲

服務端安裝nfs

一、使用yum安裝nfs

yum install nfs-utils nfs-utils-lib -y

若是安裝過程出現這樣的錯誤:vim

得先安裝lvm2異步

yum install -y lvm2

 

二、編輯文件exports

vim /etc/exports

加入代碼,如:async

/home 192.168.1.100(rw,sync,no_root_squash,no_subtree_check)

#參數詳解
ro #只讀共享
rw #讀寫共享
sync #同步寫操做
async #異步寫操做
wdelay #延遲寫操做
root_squash #屏蔽遠程root權限
no_root_squash #不屏蔽遠程root權限
all_squash #屏蔽全部遠程用戶的權限
no_subtree_check #此選項可防止子樹檢查tcp

 

三、運行導出

exportfs -a

 能夠使用-r刷新spa

exportfs -r

 

四、開啓端口

/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 111 -j ACCEPT
/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 2049 -j ACCEPT
/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 30001 -j ACCEPT
/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 30002 -j ACCEPT
/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 30003 -j ACCEPT
/sbin/iptables -I INPUT -p tcp -s 192.168.1.100 --dport 30004 -j ACCEPT

 

五、啓動nfs和rpc服務

service nfs-server start
service rpcbind start

 

客戶端安裝nfs

一、安裝nfs

yum install nfs-utils -y

 

二、使用mount遠程共享

mount -t nfs 192.168.1.100:/home /home

 

到此完成。code


 

 

若是要把home連接到別的目錄,能夠使用例如以下命令:server

ln -s /home /root/home

 

取消掛載能夠使用命令:blog

umount -t nfs 192.168.1.100:/home

 

掛載開機啓動能夠使用以下方式ip

一、編輯rpc

vim /etc/fstab

 

二、加入代碼

192.168.1.100:/home /home nfs defaults 0 0

 

查看NFS共享,能夠使用命令:

showmount -e 192.168.1.100
相關文章
相關標籤/搜索