NFC伺服器搭建與autofs自動掛載

2022-09-14 03:30:12 字數 1435 閱讀 9692

nfc

伺服器搭建與

autofs

自動掛載

rpc 

rpc = remote procedure call

#共享主機需要

rpc rpcbind

nfs nfs-server

#訪問主機需要

rpc rpcbind

1yum install nfs-utils -y   #

安裝nfs

2systemctl start nfs   #

開啟nfs服務

3systemctl enable nfs   #

開機自啟動

1mkdir /westos

2echo

'hello,world'

> /westos/hello  #

建立目錄/westos, 在其中建立測試檔案hello

showmount

命令檢視指定伺服器的

nfs共享檔案資訊,常用選項

-e:顯示指定伺服器輸出的共享目錄

1showmount -e

192.168

.1.152

2export list

for192.168

.1.152:3

/westos *   

1mount

2mount

192.168

.1.152

:/westos /mnt/ #

將共享目錄掛載到本地/mnt     ls /mnt/

3hello   #

有我們的測試檔案,說明目錄共享成功

4vim /etc/fstab

5192.168

.1.152

:/westos /mnt/ nfs defaults 00

# 讓共享目錄自動掛載

修改/etc/sysconfig/nfs

檔案mountd_port="4002"

statd_port="4003"

lockd_tcpport="4004"

lockd_u***ort="4004"

/etc/auto.master.d/share.autofs #

一定要加上

.autofs

字尾,前面的

share

可以隨意改

/share /etc/auto.demo #

前面/share

為掛載點的目錄,服務啟動會自動生成,後面的為對映檔案,名稱隨意

work -rw,sync :/#

引數和mount

相同,work

為掛載點,在

/share

目錄下,這兩個目錄都不需要手動去建立,會自動生成,而

work

之後在訪問的時候,自動掛載之後才會生成,不訪問的時候會自動刪掉

NFS伺服器搭建與autofs自動掛載

1 安裝nfsyum install nfs utils y 安裝nfs systemctl start nfs 開啟nfs服務 systemctl enable nfs 開機自啟動2 配置nfs root localhost vim etc exports 第一次使用nfs服務需手動建立 home...

NFS伺服器搭建與autofs自動掛載

nfs,是network file system的簡寫,即網路檔案系統。網路檔案系統是freebsd支援的檔案系統中的一種,也被稱為nfs。nfs允許乙個系統在網路上與他人共享目錄和檔案。通過使用nfs,使用者和程式可以像訪問本地檔案一樣訪問遠端系統上的檔案。2.1安裝nfs 2.11安裝nfs軟體...

NFS伺服器搭建與autofs自動掛載

nfs伺服器搭建與autofs自動掛載 nfs網路檔案系統,英文全稱network file system,是當前主流異構平台共享檔案系統之一。其實現主要是採用遠端過程呼叫rpc機制,可以通過網路,讓不同的機器 不同的作業系統可以共享彼此的檔案。nfs伺服器可以允許nfs客戶端將遠端nfs伺服器端的...