NFS是Network File System的简称,即网络文件系统。NFS是系统间进行文件共享的一种网络协议,它允许用户像访问本地文件一样去访问网络上共享的文件。
NFS是Network File System的简称,即网络文件系统。NFS是系统间进行文件共享的一种网络协议,它允许用户像访问本地文件一样去访问网络上共享的文件。
CentOS 自带NFS功能
若没有需安装:yum install -y nfs-utils rpcbind
-
本次实验平台: CentOS release 6.8 (Final) -
服务端IP:172.17.99.67 -
客服端IP:172.17.99.61
一、环境搭建
1. 编辑配置文件/etc/exports
vim /etc/exports
/ane/data/LBLOGS 172.17.99.61(rw,sync,no_root_squash)
/ane/data/LPLOGS *(ro,sync)
#表示只有172.17.99.61有读写权限LBLOGS,只有读权限LPLOGS
2. 修改固定端口
vim /etc/sysconfig/nfs
RQUOTAD_PORT=30001
LOCKD_TCPPORT=30002
LOCKD_UDPPORT=30002
MOUNTD_PORT=30003
STATD_PORT=30004
二、搭建NFS
1. 创建nfs共享目录
mkdir /ane/data/LBLOGS -p
mkdir /ane/data/LPLOGS -p
2. 启动nfs
service nfs start
service rpcbind start
3. 在客服端查询
showmount -e 172.17.99.131
clnt_create: RPC: Program not registered
#此报错是因为启动nfs应用顺序错误导致
4. 重启nfs
service nfs stop
service rpcbind stop
#必须按以下方式顺序启动
service rpcbind start
service nfs start
5. 客服端查询
showmount -e 172.17.99.67
Export list for 172.17.99.67:
/ane/data/LBLOGS 172.17.99.61(rw,sync,no_root_squash)
/ane/data/LPLOGS *(ro,sync)
6. 挂载
mount -t 172.17.99.67:/ane/data/LBLOGS /ane/data/LBLOGS
mount -t 172.17.99.67:/ane/data/LPLOGS /ane/data/LPLOGS
7. 检查
mount | grep nfs
172.17.99.67:/ane/data/LBLOGS on /ane/data/LBLOGS type nfs (ro,vers=4,addr=172.17.99.67,clientaddr=172.17.99.61)
172.17.99.67:/ane/data/LPLOGS/ on /ane/data/LPLOGS type nfs (rw,vers=4,addr=172.17.99.67,clientaddr=172.17.99.61)
三、nfs其他配置
1. 其他报错
mount 172.17.99.131:/ane/data/YTLOGS/ /ane/data/YTLOGS/
mount.nfs: access denied by server while mounting 172.17.99.131:/ane/data/YTLOGS/
#因为版本的问题导致
mount -o v3 172.17.99.131:/ane/data/YTLOGS/ /ane/data/YTLOGS/ #指定版本挂载即可
2. 按需自动挂载(间接映射)
#修改不活动状态的超时时间
vim /etc/sysconfig/autofs
TIMEOUT=300
修改为为
TIMEOUT=600
也就是将不活动状态的超时时间由5分钟修改为10分钟。
3. 开机挂载
vim /etc/fstab
172.17.99.67:/ane/data/LPLOGS /ane/data/LPLOGS nfs defaults 0 0
4. 卸载nfs挂载
umount /ane/data/LPLOGS
以上就是良许教程网为各位朋友分享的Linux下NFS的搭建。想要了解更多Linux相关知识记得关注公众号“良许Linux”,或扫描下方二维码进行关注,更多干货等着你!