CentOS 7 安装NFS服务端和客户端

前端之家收集整理的这篇文章主要介绍了CentOS 7 安装NFS服务端和客户端前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


操作系统:

CentOSLinuxrelease7.2.1511(Core)


NFS服务端安装:

yuminstallnfs-utils-y


创建共享

1.在/etc/exports配置文件添加以下内容,保存退出;
/Data10.10.172.0/255.255.255.0(rw,sync,no_root_squash)

2.创建共享目录并给予写的权限
mkdir/Data
chmodo+w/Data


启动NFS服务

systemctlrestartrpcbind
systemctlrestartnfs-server(nfs)
systemctlenablerpcbind
systemctlenablenfs-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客户端安装:

yuminstallnfs-utils-y


创建挂载目录

mkdir/nfs_date


挂载NFS共享

mount-tnfsremote_ip:/Data/nfs_data

查看客户端挂载信息

df-h
原文链接:https://www.f2er.com/centos/374722.html

猜你在找的CentOS相关文章