STORAGESRV、APPSRV
完成服务
NFS
共享/webdata/目录。
用于存储AppSrv主机的WEB数据。
仅允许AppSrv主机访问该共享。
安装NFS服务
AppSrv、Storagesrv
yum install -y nfs-utils
NFS配置
标签:webdata,192.168,STORAGESRV,nfs,NFS,APPSRV,磁盘,共享 From: https://www.cnblogs.com/Laken/p/18516449STORAGESRV
echo "/webdata 192.168.100.100(rw)" >> /etc/exports systemctl restart rpcbind nfs systemct enable nfs
APPSRV
mkdir /webdata showmount -e 192.168.100.200 echo "192.168.100.200:/webdata /webdata nfs defaults 0 0" >> /etc/fstab mount -a df -hT #查看
STORAGESRV
chmod 777 /webdata #文件权限
APPSRV
systemctl restart nfs systemctl enable nfs