nfs檔案系統

2021-08-16 18:04:17 字數 2984 閱讀 1281

'nfs(network file system)即網路檔案系統,是freebsd支援的檔案系統中的一種,

它允許網路中的計算機之間通過tcp/ip網路共享資源。

nfs檔案系統安裝

在服務端

yum install nfs-utils -y

systemctl start nfs-server

systemctl enable nfs-server

systemctl stop firewalld 或者

firewall-cmd --permanent --add-service=nfs

firewall-cmd --permanent --add-service=rpc-bind

firewall-cmd --permanent --add-service=mountd

若是該主機上裝了firewalld,則要在火牆上新增nfs、rpc-bind、mountd服務,並且讓其載入生效。

實現配置共享

配置共享

在服務端server

mkidr /nfsdir

vim /etc/exports

本機目錄        共享客戶端(共享方式)

/nfsdir        *(sync)

exportfs -rv

在客戶端dersktop

mount 172.25.254.131:/nfsdir /mnt

建立檔案

在服務端server

chmod  777 /nfsdir

vim /etc/exports

/nfsdir    172.25.254.0/24(rw,anonuid=1001,anongid=1001,no_root_squash)

當有no_root_squash時 前面的uid,gid就不會生效

exportfs -rv

在客戶端desktop

配置自動掛載

自動掛載

在客戶端desktop

yum install autofs -y

systemctl start autofs.service

systemctl enable autofs.service

vim /etc/sysconfig/autofs

time=3 (預設為300秒)

systemctl restart autofs.service

[root@desktop ~]# cd /mnt

[root@desktop mnt]# cd

[root@desktop ~]# cd /net

[root@desktop net]# ls

[root@desktop net]# ls -a

.  ..

[root@desktop net]# cd 172.25.254.131

[root@desktop 172.25.254.131]# ls

nfsdir

[root@desktop 172.25.254.131]# cd nfsdir/

[root@desktop nfsdir]# ls

aq  as  az  er

[root@desktop nfsdir]# df

172.25.254.131:/nfsdir  10473984 3193856   7280128  31% /net/172.25.254.131/nfsdir

cd (等三秒之後)

df(取消掛載)

把time = 300 改為3

指定掛載點

想要取消掛載進入cd 之後等秒自動就解除安裝了

nfs檔案系統

nfs network file system 即網路檔案系統,是freebsd支援的檔案系統中的一種,它允許網路中的計算機之間通過tcp ip網路共享資源。在nfs的應用中,本地nfs的客戶端應用可以透明地讀寫位於遠端nfs伺服器上的檔案,就像訪問本地檔案一樣。網路檔案系統 nfs 是unix系統...

NFS檔案系統

1.nfs 網路檔案系統 簡介 nfs network file system 即網路檔案系統,是freebsd支援的檔案系統中的一種,它允許網路中的計算機之間通過tcp ip網路共享資源。在nfs的應用中,本地nfs的客戶端應用可以透明地讀寫位於遠端nfs伺服器上的檔案,就像訪問本地檔案一樣。2....

NFS檔案系統

配置檔案的說明管理 網路檔案系統 nfs 是 unix 系統和網路附加儲存檔案管理器常用的網路檔案系統 允許多個客戶端通過網路共享檔案訪問。它可用於提供對共享二進位制目錄的訪問 也可用於允許使用者在同一工作組中從不同客戶端訪問其檔案。nfs 協議有多個版本 linux 支援版本 4 版本 3 和版本...