服务端配置:
yum install rpcbind -y #安装rpcbind服务
yum install nfs-utils -y #安装nfs服务
开始配置
mkdir /data/nfs
chmod 766 /data/nfs
服务器安全端口 配置需要开启端口2049
配置nfs ip
/data/nfs 111.229.27.104(rw,sync,no_subtree_check) 8.210.103.209(rw,sync,no_subtree_check) 43.154.111.2(rw,sync,no_subtree_check)
开启nfs服务
systemctl enable nfs-server --now
客户端配置:
yum install nfs-utils -y #安装nfs服务
配置
mkdir /data/nfs
chmod 766 /data/nfs
挂在nfs
111.229.27.114:/data/nfs /data/nfs nfs defaults 0 0
生效
sudo mount -a