STORAGESRV、APPSRV
完成服務
NFS
共享/webdata/目錄。
用於儲存AppSrv主機的WEB資料。
僅允許AppSrv主機訪問該共享。
安裝NFS服務
AppSrv、Storagesrv
yum install -y nfs-utils
NFS配置
STORAGESRV
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