如今有 3 臺服務器 s1(主),s2(從), s3(從)須要實現文件實時同步,咱們能夠安裝 NFS 服務端和客戶端來實現!vim
yum install -y nfs-utils
2、添加從機bash
編輯 exports文件服務器
vim /etc/exports /home/nfs/ 192.168.248.0/24(rw,sync,fsid=0) # 如無需限定IP段,則使用 * 代替 # /home/nfs/ *(rw,sync,fsid=0)
同 192.168.248.0/24一個網絡號的主機能夠掛載 NFS 服務器上的 /home/nfs/ 目錄到本身的文件系統中網絡
rw 表示可讀寫;sync 表示同步寫,fsid=0 表示將 /data 找個目錄包裝成根目錄app
先爲 rpcbind 和 nfs 作開機啓動:(必須先啓動 rpcbind 服務)tcp
systemctl enable rpcbind.service systemctl enable nfs-server.service
而後分別啓動 rpcbind 和 nfs 服務:spa
systemctl start rpcbind.service systemctl start nfs-server.service
確認 NFS 服務器啓動成功:code
[root@iZwz9c75kyx5uabstwem5jZ ~]# rpcinfo -p program vers proto port service 100000 4 tcp 111 portmapper 100000 3 tcp 111 portmapper 100000 2 tcp 111 portmapper 100000 4 udp 111 portmapper 100000 3 udp 111 portmapper 100000 2 udp 111 portmapper 100024 1 udp 56748 status 100024 1 tcp 47957 status 100005 1 udp 20048 mountd 100005 1 tcp 20048 mountd 100005 2 udp 20048 mountd 100005 2 tcp 20048 mountd 100005 3 udp 20048 mountd 100005 3 tcp 20048 mountd 100003 3 tcp 2049 nfs 100003 4 tcp 2049 nfs 100227 3 tcp 2049 nfs_acl 100003 3 udp 2049 nfs 100003 4 udp 2049 nfs 100227 3 udp 2049 nfs_acl 100021 1 udp 45326 nlockmgr 100021 3 udp 45326 nlockmgr 100021 4 udp 45326 nlockmgr 100021 1 tcp 46542 nlockmgr 100021 3 tcp 46542 nlockmgr 100021 4 tcp 46542 nlockmgr
檢查 NFS 服務器是否掛載咱們想共享的目錄 /home/nfs/:server
exportfs #能夠查看到已經ok /home/nfs 192.168.248.0/24
首先是安裝 nfs,同上,而後啓動 rpcbind 服務4、在從機上安裝 NFS 客戶端ci
先爲 rpcbind 作開機啓動:
systemctl enable rpcbind.service
而後啓動 rpcbind 服務:
systemctl start rpcbind.service
注意:客戶端不須要啓動 nfs 服務
檢查 NFS 服務器端是否有目錄共享:showmount -e nfs 服務器的 IP
[root@paas205 ~]# showmount -e 192.168.248.208 Export list for 192.168.248.208: /home/nfs 192.168.248.0/24
在從機上使用 mount 掛載服務器端的目錄 /home/nfs 到客戶端某個目錄下:
cd /home && mkdir /nfs mount -t nfs 192.168.248.208:/home/nfs /home/nfs
df -h 查看是否掛載成功。
[root@2 ~]# mount -t nfs xxx.xxx.xxx.xxx:/nfs/ /root/bak [root@2 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/vda1 40G 37G 481M 99% / xxx.xxx.xxx.xxx:/nfs/logs/ 296G 3.6G 277G 2% /root/bak