NFS服务搭建

NFS网络文件系统,类似Windows中的文件夹共享

一、服务端搭建

yum -y install nfs-utils rpcbind 
service rpcbind start 
service nfs start

# 创建共享文件夹
mkdir /home/test
# 给予/home/test权限
chmod 777 /home/test

vi /etc/exports
# 添加如下,/home/test共享目录只允许192.168.1.0/24网段的用户访问,并且拥有读写权限,sync保持了数据的一致性,允许以root身份登陆
/home/test 192.168.1.0/24(rw,sync,no_root_squash)

二、客户端配置

# 启动rpc服务
service rpcbind start

# 查看服务端共享的目录
showmount -e 192.168.1.1

# 创建文件夹,搭建挂载点
mkdir /home/client

# 将服务端共享的目录挂载到本地
mount -t nfs 192.168.1.1:/home/test /home/client

# 查看挂载信息 
df -h

作者:Zleoco,如若转载,请注明出处:https://www.zleoco.com/?p=243