CentOS 7 安装NFS服务端和客户端
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 安装NFS服务端和客户端相关的知识,希望对你有一定的参考价值。
操作系统:
CentOS Linux release 7.2.1511 (Core)
NFS服务端安装:
yum install nfs-utils -y
创建共享
1.在/etc/exports配置文件中添加以下内容,保存退出; /Data 10.10.172.0/255.255.255.0(rw,sync,no_root_squash) 2.创建共享目录并给予写的权限 mkdir /Data chmod o+w /Data
启动NFS服务
systemctl restart rpcbind systemctl restart nfs-server(nfs) systemctl enable rpcbind systemctl enable nfs-server(nfs) 注:nfs其实还依赖nfs-lock、nfs-idmap两个服务,但是无需我们去做相关配置。
防火墙配置
firewall-cmd --permanent --zone=public --add-service=nfs firewall-cmd --permanent --zone=public --add-service=mountd firewall-cmd --permanent --zone=public --add-service=rpc-bind firewall-cmd --reload
NFS客户端安装:
yum install nfs-utils -y
创建挂载目录
mkdir /nfs_date
挂载NFS共享
mount -t nfs remote_ip:/Data /nfs_data
查看客户端挂载信息
df -h
以上是关于CentOS 7 安装NFS服务端和客户端的主要内容,如果未能解决你的问题,请参考以下文章