Centos7搭建NFS服务端

最终效果

image.png

安装必要软件

服务端和客户端都要安装

# 安装必要软件
yum -y install nfs-utils rpcbind
# 设置开机自启动
systemctl enable nfs
systemctl enable rpcbind

# 启动nfs
systemctl start rpcbind
systemctl start nfs

服务端

# 配置nfs
vi /etc/exports
/usr/local/k8s/nfsdata 172.16.255.0/24(rw,no_root_squash,no_all_squash,sync)
# 启动nfs
systemctl restart nfs

客户端测试

# 挂载测试
mount -t nfs 172.16.255.130:/usr/local/k8s/nfsdata /root/data
# 172.16.255.130是nfs的服务端ip
# /usr/local/k8s/nfsdata是服务端挂载目录
# /root/data是客户端挂载目录

# 取消挂载
umount /root/data

你可能感兴趣的:(Centos7搭建NFS服务端)