首先咱們將134資源經過NFS映射到135機器上nginx
首先 134環境準備vim
修改nfs配置在vim /etc/sysconfig/nfs裏面修改ide
LOCKD_TCPPORT=50001 # TCP鎖使用端口 LOCKD_UDPPORT=50002 # UDP鎖使用端口 MOUNTD_PORT=50003 # 掛載使用端口
STATD_PORT=50004 # 狀態使用端口
RDMA_PORT=50005調試
#配置映射及權限code
#/data,本地文件路徑
#10.10.10.135,容許掛載的IP,能夠經過子網掩碼進行網段批量設置
#(ro, sync, all_squash),ro只讀權限,sync同步(文件同步寫入到內存和磁盤當中),all_squash(限定權限)ip
vim /etc/exports
/data 10.10.10.135(ro,sync,all_squash)內存
#啓動nfs服務資源
service nfs start chkconfig nfs on service rpcbind start chkconfig rpcbind on
若是本地開放防火牆,須要配置爲靜態端口,而且經過iptable開放相關端口。rpc
2、135環境(root@135)
#安裝nfs
yum install nfs-utils同步
#掛載134資源
#將nfs 10.10.10.134 的/data
目錄映射到本地/data
目錄(須要提早創建本地/data目錄)
mount -t nfs 10.10.10.134:/data /data
#NGINX設置(具體配置根據路徑設定,經過error.log,能夠很容易調試並設定成功)vim nginx.conflocation /feed/data/fullfeed{root /;autoindex on; # for testautoindex_exact_size on; # for testautoindex_localtime on; # for test}