centos7中nfs檔案系統的使用

2021-08-28 08:48:01 字數 2106 閱讀 4615

需求:

即將file01和file02的/data目錄都掛載到video01和video02上

處理:file01和file02安裝

yum install -y exportfs nfs-utils

video01和video02安裝

yum install -y nfs-utils

1.在file01和file02新增共享的資料夾和客戶端可以訪問的ip位址

[root@eus_filmora_file01:~]# vim /etc/exports

/data *(insecure,rw,no_root_squash,sync,anonuid=500,anongid=500)

# 檢視共享資料夾

[root@eus_filmora_file01:/data]# exportfs -rv

exporting *:/data

# 重啟file01的nfs服務

systemctl restart nfs

2.目標機器video01和video02上建立掛載點並掛載

# 客戶端video01和video02操作

mkdir /file01_nfs

mkdir /file02_nfs

# 掛載file01和file02

mount -t nfs 172.20.103.212:/data /file01_nfs -o proto=tcp -o nolock

mount -t nfs 172.20.103.211:/data /file02_nfs -o proto=tcp -o nolock

# 解除安裝nfs

[root@eus_filmora_video01:~]# umount 172.20.103.212:/data

列出nfs服務端共享的目錄:

[root@eus_filmora_video01:/file02_nfs]# showmount -e 172.20.103.212

export list for 172.20.103.212:

/data *

[root@eus_filmora_video01:/file02_nfs]# showmount -e 172.20.103.211

export list for 172.20.103.211:

/data *

# 新增開機自動掛載

[root@eus_filmora_video01:~]# cat /etc/rc.local

#!/bin/bash

mount -t nfs 172.20.103.212:/data /file01_nfs -o proto=tcp -o nolock

mount -t nfs 172.20.103.211:/data /file02_nfs -o proto=tcp -o nolock

報錯:mount: wrong fs type, bad option, bad superblock on 10.25.177.47:/opt/data07,

missing codepage or helper program, or other error

(for several filesystems (e.g. nfs, cifs) you might

need a /sbin/mount.helper program)

in some cases useful info is found in syslog - try

dmesg | tail or so.

解決:yum install -y nfs-utils

報錯:mount.nfs: access denied by server while mounting 10.25.177.47:/data/voice

解決:nfs服務端

vim /etc/sysconfig/nfs

修改如下:

rpcnfsdargs="-n 2 -n 3"

----->啟用

# turn off v4 protocol support

rpcnfsdargs="-n 4" ---->啟用

重啟生效

systemctl restart nfs

CentOS7下配置NFS網路檔案系統

nfs網路系統檔案是用來方便基於tcp ip協議來讀寫linux系統上的共享檔案 第一步 安裝nfs服務 yum install nfs utils注 順帶將防火牆清空或者關閉,centos7為 systemctl stop firewalld.service 第二步 建立用於nfs共享檔案的目錄。...

Centos 7網路檔案系統nfs搭建

server端 1 通過yum安裝nfs yum install y nfs 2 啟動nfs systemctl enable nfs server 開機啟動 systemctl start nfs server 啟動nfs systemctl status nfs server 狀態3 配置nfs...

Centos7遷移fastdfs檔案系統

系統從乙個地方遷移到另乙個地方,資料保持不變,但是ip位址和網路情況不一樣了,最困難的是要遷移的那個地方還麼有網際網路,這tm就坑了,所以想到將fastdfs儲存的目錄整體拷貝過去,這個方法簡單粗暴,這樣檔案在檔案系統中的位置也不會發生變化,訪問檔案時檔案位址只需要修改為遷移後的ip即可,那就這麼幹...