centos7安裝NFS手冊
阿新 • • 發佈:2018-12-06
伺服器端(即要共享的電腦)
1.NFS與RPC同時安裝的yum命令
# yum install nfs* portmap -y
2.關閉防火牆,並使防火牆不開機自啟
# systemctl stop firewalld
# systemctl disable firewalld
3.禁用selinux
# vi /etc/selinux/config
將SELINUX的狀態修改為disabled
4.配置nfs
# vi /etc/exports
新增:/share *(insecure,rw,async,no_root_squash)
(其中/share是需要共享的資料夾,共享的檔案就存放在/share資料夾中,而 * 指的是讓哪個使用者連線 例如:192.168.1.121 而括號裡面的則是各種引數:可以百度檢視)
5.建立共享資料夾
# mkdir /share
6.NFS設為開機自啟並啟動NFS
# systemctl enable nfs
# systemctl start nfs
7.RPC設為開機自啟並啟動RPC
# systemctl enable rpcbind
# systemctl start rpcbind
8.使用chown命令掛載資料夾
# chown nfsnobody.nfsnobody /share
9.輸入“exportfs”檢視本機的共享檔案系統,如果有則代表成功
# exportfs
客戶端(指檢視共享資料夾的電腦)
1.安裝NFS與RPC並將它們設為開機自啟與啟動
# yum install nfs* portmap –y
# systemctl enable nfs
# systemctl start nfs
# systemctl enable rpcbind
# systemctl start rpcbind
2.關閉防火牆,並使防火牆不開機自啟
# systemctl stop firewalld
# systemctl disable firewalld
3.禁用selinux
# vi /etc/selinux/config
將SELINUX的狀態修改為disabled
4.掛載共享的nfs系統
# mount 192.168.1.140:/share /media
192.168.1.140:為裝NFS伺服器端的ip,/share為伺服器端設定的共享資料夾,/media為本地需要掛載的資料夾
5.檢視是否成功
# mount |grep media
media為本地需要掛載的資料夾
6.把共享目錄寫入系統掛載檔案
# vi /etc/fstab
新增以下程式碼: 192.168.1.140:/share /media nfs nodev,rw,rsize=32768,wsize=32768 0 0