使用nfs發布共享資源 關閉selinux
安裝nfs-utils、rpcbind軟體包(centos7預設安裝,調整為自啟狀態)
[root@localhost ~]# yum -y install nfs-utils rpcbind
[root@localhost ~]# systemctl enable nfs
[root@localhost ~]# systemctl enable rpcbind
設定共享目錄,預設配置檔案為/etc/exports,檔案內容預設為空(無共享)。
[root@localhost ~]# mkdir -p /opt/wwwroot 共享目錄
[root@localhost ~]# vim /etc/exports
[root@localhost ~]# cat /etc/exports
/opt/wwwroot 192.168.7.0/24(rw,sync,no_root_squash) 共享給7網段寫*代表所有
#如需將同乙個目錄共享給不同客戶機,且分配不同許可權,只要以空格分隔指定多個「客戶機(許可權選項)」即可
啟動nfs服務程式
[root@localhost ~]# systemctl start rpcbind
[root@localhost ~]# systemctl start nfs
[root@localhost ~]# netstat -anpt | grep rpcbind
檢視本機發布的nfs共享目錄
[root@localhost ~]# showmount -e
export list for localhost.localdomain:
/opt/wwwroot 192.168.7.0/24
在客戶機中訪問nfs共享資源
1)安裝nfs-utils、rpcbind軟體包並啟動rpcbind
[root@localhost ~]# yum -y install rpcbind nfs-utils
[root@localhost ~]# systemctl enable rpcbind
[root@localhost ~]# systemctl start rpcbind
[root@localhost ~]# showmount -e 192.168.7.250 檢視此ip共享的目錄
export list for 192.168.7.250:
/opt/wwwroot 192.168.7.0/24
手動掛載nfs共享目錄
[root@localhost ~]# mount 192.168.7.250:/opt/wwwroot /var/www/html/ [root@localhost ~]# tail -1 /etc/mtab //確認掛載結果
[root@localhost ~]# vim /var/www/html/index.html //在客戶機建立測試檔案
[root@localhost ~]# cd /var/www/html/
[root@localhost html]# ls
index.html //訪問客戶機/var/www/html資料夾相當於訪問伺服器/opt/wwwroot,。例如:上述建立的index就可以在伺服器/opt/wwwroot/下。
fstab自動掛載設定,在客戶機修改/etc/fstab,加入掛載目錄的掛載設定。
[root@localhost ~]# vim /etc/fstab //新增,這樣開機後自動掛載nfs共享資源。
NFS儲存共享服務
1.nfs簡介 1 nfs是一種基於tcp ip傳輸的網路檔案系統協議。通過使用nfs協議,nfs客戶機可以像訪問本地目錄一樣遠端訪問nfs伺服器中的資源 2.nsf服務的實現依賴於rpc 遠端過程呼叫 遠端連線 3.構建nfs服務 1 安裝nfs utils 檔案共享 rpcbind 遠端連線 y...
NFS共享服務
配置nfs共享服務 nfs簡述 nfs就是network file system的縮寫,它最大功能就是可以通過網路,讓不同的機器,不同的作業系統可以共享彼此的檔案 nfs伺服器可以讓pc將網路中的nfs伺服器共享的目錄掛載到本地的檔案系統中,而在本地端的系統中來檢視,那個遠端主機目錄就好像是自己的乙...
NFS共享服務
用途 為客戶機提供共享使用的資料夾 協議 nfs tcp udp 2049 rpc tcp udp 111 軟體包 nfs utils 預設安裝 服務名 nfs server 防火牆為trusted 建立共享目錄 public 修改配置檔案 etc exports 沒有共享名 內容 資料夾路徑 客戶...