a,b,c三颱機器上需要保證被訪問到的檔案是一樣的,a共享資料出來,b和c分別去掛載a共享的資料目錄,從而b和c訪問到的資料和a上的一致
#### 安裝
yum install -y nfs-utils rpcbind
#### 新增配置
vim /etc/exports
####加入如下內容
/home/nfstestdir 192.168.20.0/24(rw,sync,all_squash,anonuid=1000,anongid=1000)
mkdir /home/nfstestdir
chmod 777 /home/nfstestdir
systemctl start rpcbind
systemctl start nfs
systemctl enable rpcbind
systemctl enable nfs
yum install -y nfs-utils
showmount -e 192.168.20.254
//該ip為nfs服務端ip
mount -t nfs 192.168.20.254:/home/nfstestdir /mnt
df -h
//檢視共享磁碟掛載情況
touch /mnt/aminglinux.txt
ls -l /mnt/aminglinux.txt
//可以看到檔案的屬主和屬組都為1000
常用選項
-a
全部掛載或者全部解除安裝
-r
重新掛載
-u
解除安裝某乙個目錄
-v
顯示共享目錄
#### 增加配置
vim /etc/exports
#### 增加以下內容
/tmp/ 192.168.20.0/24(rw,sync,no_root_squash)
#### 全部重新掛載
exportfs -arv //不用重啟nfs服務,配置檔案就會生效
#### 建立被掛在目錄
mkdir /disk01
#### 掛載目錄
mount -t nfs -onolock 192.168.20.130:/tmp /disk01
#### 建立檔案,測試許可權
touch /disk01/test.txt
#### 檢視許可權
ls -l !$
補充:重新掛載-oremount,nfsvers=3
;如:mount -t nfs -oremount,nfsvers=3 192.168.20.130:/tmp /disk01
NFS服務搭建與配置
nfs服務搭建與配置 一 linux之間 nfs network file system 即網路檔案系統,是freebsd支援的檔案系統中的一種,它允許網路中的計算機之間共享資源。在nfs的應用中,本地nfs的客戶端應用可以透明地讀寫位於遠端nfs伺服器上的檔案,就像訪問本地檔案一樣。實驗需要兩台機...
NFS服務搭建與配置
yum install nfs utils y root tanyvlinux mnt netstat lntp 安裝後偵聽了111埠 active internet connections only servers proto recv q send q local address foreign...
NFS服務搭建與配置
nfs就是network file system的縮寫,它最大的功能就是可以通過網路,讓不同的機器 不同的作業系統可以共享彼此的檔案。nfs應用場合 在生產環境,我們很少使用單機部署應用,因為單機存在單點故障,一旦宕機,將無法為前端業務提供服務,這是客戶無法容忍的。現在提倡的高可用及7 24服務,是...