Cenos6 1搭建nfs檔案共享服務

2022-08-21 22:21:13 字數 1293 閱讀 9023

當前配置為centos6.x下的配置流程(當前prod的server版本),centos7.x的配置流程有一定的區別;

服務端配置10.10.10.10

1.rpm -qa | grep nfs

2.rpm -qa | grep rpcbind

3.yum -y install nfs-utils rpcbind

4.mkdir -p  /home/attach_file  

備註:(/home/attach_file為需要共享的檔案目錄)

5.chmod 666 /home/attach_file

6.vim /etc/exports 命令修改要新增的共享目錄然後:wq儲存,目錄如下:

/home/attach_file 10.10.10.11/24(rw,no_root_squash,no_all_squash,sync)

說明:10.10.10.11為客戶端的ip

7.exportfs -r

8./etc/init.d/rpcbind start 啟動rpcbind服務

9./etc/init.d/nfs start 啟動nfs服務

10.設定開機自啟動:

chkconfig nfs on

chkconfig rpcbind on

11.檢視是否設定了開機自啟動:

chkconfig --list nfs

chkconfig --list rpcbind

12.檢視服務狀態,服務端這兩個service正常狀態下是開啟的:

service rpcbind status

service nfs status

客戶端配置:10.10.10.11

1.yum -y install nfs-utils

2.mkdir -p /home/attach_file

3.chmod 666 /home/attach_file

4./etc/init.d/nfs start 啟動nfs服務

5.showmount -e 10.10.10.10(該ip為伺服器ip)

6.mount -t nfs 10.10.10.10:/home/attach_file /home/attach_file -o proto=tcp -o nolock

7.設定開機自啟動:

chkconfig nfs on

8.檢視服務狀態,客戶端這個service正常狀態下是開啟的:

service nfs status

cenos7,NFS檔案分享系統搭建

1.本機ip位址設定 2.檢查網絡卡是否啟用 nmcli connection show 3.配置網絡卡資訊 nmcli connection modify test networking ipv4.addresses 192.168.80.200 24 ipv4.gateway 192.168.8...

nfs共享檔案服務搭建

網路檔案共享伺服器192.10.19.132 yum install y nfs utils 在exports檔案中新增的從機範圍 vim etc exports home nfs 192.10.19.0 24 rw,sync,fsid 0 rw表示可讀寫 sync表示同步寫,fsid 0表示將 d...

linux下設定目錄同步NFS 實現檔案共享

一 概念 nfs network file system 網路檔案系統 1 設定linux系統之間的檔案共享 linux與windows中間檔案共享採用samba服務 2 nfs只是一種檔案系統,本身沒有傳輸功能,是基於rpc協議實現的,才能達到兩個linux系統之間的檔案目錄共享 3 nfs為c ...