apache集群上传文件解决方案

linux 系统 centOS6.4

采取nfs系统来解决这个问题。nfs系统IP 192.168.1.99

安装:


[root@localhost etc]# rpm -qa | grep nfs
nfs-utils-lib-1.1.5-6.el6.i686
nfs4-acl-tools-0.3.3-6.el6.i686
nfs-utils-1.2.3-36.el6.i686


[root@localhost etc]# rpm -qa | grep rpcbind
rpcbind-0.2.0-11.el6.i686
[root@localhost etc]#


以上两个软件如果没有安装,可以用yum,在线安装。

配置:

vi /etc/exports

/usr/local/apache/htdocs/opencart/image/data 192.168.1.*(rw,sync,no_root_squash)

执行

service rpcbind restart

service nfs restart


客户端服务器ip 为 192.168.1.107

客户端执行showmount -e 192.168.1.99

来查看是否有可挂载的目录

mkdir /testnfs

mount 192.168.1.99:/usr/local/apache/htdocs/opencart/image/data /testnfs

对/testnfs目录的文件进行读写

即可在客户端读写远程目录