環境:
# 停止並禁用防火牆
$ systemctl stop firewalld
$ systemctl disable firewalld
# 若當前啟用了 selinux 則需要臨時設定其當前狀態為 permissive
$ setenforce 0
# 編輯/etc/sysconfig selinux 檔案,以徹底禁用 selinux
$ sed -i 's/^selinux=enforcing$/selinux=disabled/' /etc/selinux/config
# 檢視selinux狀態
$ getenforce
如果selinux狀態為permissive,則執行reboot重新啟動即可
$ yum install -y nfs-utils rpcbind
# 建立資料夾
$ mkdir /nfs
# 更改歸屬組與使用者
$ chown -r root.root /nfs
# 編輯exports
$ vi /etc/exports
$ /nfs 192.168.2.0/24(rw,async,no_root_squash)
#如果設定為 /nfs *(rw,async,no_root_squash) 則對所以的ip都有效
使用者對映:
$ systemctl restart rpcbind
$ systemctl enable nfs
$ systemctl restart nfs
$ showmount -e 192.168.2.31
$ yum install -y nfs-utils rpcbind
$ mkdir -p /nfs-data
$ mount -t nfs -o nolock,vers=4 192.168.2.31:/nfs /nfs-data
檢視掛載
$ df -h
$ umount /nfs-data
# 檢視nfs服務端資訊
$ nfsstat -s
# 檢視nfs客戶端資訊
$ nfsstat -c
CentOs7搭建NFS伺服器
環境 nps 192.168.42.171 服務端 client 192.168.42.67 客戶端 一.關閉系統防火牆和selinux root linuxidc systemctl status firewalld firewalld.service firewalld dynamic fire...
Centos7搭建NFS伺服器
現在有3臺伺服器 s1 主 s2 從 s3 從 需要實現檔案實時同步,我們可以安裝nfs服務端和客戶端來實現!一 安裝 nfs 伺服器所需的軟體包 yum install y nfs utils 二 編輯exports檔案,新增從機 vim etc exports home nfs 192.168....
CentOS7搭建NFS服務
nfs是net file system的簡寫,即網路檔案系統.準備兩個nfs伺服器 192.168.1.100 做為服務端 192.168.1.200 做為客戶端 主要步驟和大概意思 在192.168.1.100上安裝nfs服務端,設定乙個檔案目錄alla資料夾用來共享。然後在192.168.1.2...