centos7下搭建nfs服务
第一步 环境准备
1.配置网络
vi /etc/sysconfig/network-scripts/ifcfg-ens33
保存退出
重启网络:systemctl restart network
2.关闭防火墙和selinux
关闭防火墙:
systemctl stop firewalld
systemctl disable firewalld
关闭selinux:
setenforce 0
sed -i “s/enforcing/permissive/g” /etc/selinux/config
3.搭建本地yum源
将内容添加到文件中
创建挂载目录并挂载光盘
4.安装nfs
安装nfs:yum -y install nfs-utils rpcbind
第二步 修改nfs配置文件并启动nfs
创建共享目录并添加一个文件(否则无法挂载):
mkdir /nfs/share
touch /nfs/share/a
修改nfs配置文件:vi /etc/exports
添加如下配置
解析:
/nfs/share 为需要共享的目录
* 为所有网段的主机
rw 为可读可写
sync 为同步(同时将数据写入到内存与硬盘中,保证不丢失数据)
启动nfs服务:
此处顺序有误,应该先重启rpcbind,再启动nfs-utils
[root@classroom ~]# systemctl enable nfs-server.service --now
第三步 测试服务
测试机下载nfs:
yum -y install nfs-utils
测试机开启服务:
systemctl start nfs
测试机挂载目录:
mount.nfs 172.16.8.99:/nfs/share /mnt
测试机查看:
df -h
至此,centos7搭建nfs服务成功