求助大神负载均衡使用NFS,其他机器访问NFS,需要怎么设置
Re求助大神负载均衡使用NFS,其他机器访问NFS,需要怎么设置
NFS服务
用在网络上共享存储,比方说有三台机器A,B,C 他们需要访问一个目录,目录中都是图片,使用NFS,只需要放到A上,A共享给B,C即可,访问的时候B和C通过网络的方式去访问A上的目录
使用NFS需要安装两个包nfs-utils和rpcbind不过使用yum安装nfs-utils会把rpcbind一起安装上
安装nfs服务
[root@wqslinux vhosts]# yum -y install nfs-utils rpcbind
打开文件exports
[root@wqslinux ~]# vim /etc/exports
[客户端1 选项(访问权限,用户映射,其他)]
访问权限选项
设置输出目录只读:ro
设置输出目录读写:rw
同步模式 :sync
不同步:async
/boot 192.168.205.5(rw,sync)
启动nfs服务有先后顺序先启动rpcbind 在启动nfs
[root@wqslinux ~]# /etc/init.d/rpcbind start
[root@wqslinux ~]# /etc/init.d/nfs start
加入系统服务启动
[root@wqslinux 111]# chkconfig --add rpcbind
[root@wqslinux 111]# chkconfig --level rpcbind on
[root@wqslinux 111]# chkconfig --add nfs
[root@wqslinux 111]# chkconfig nfs on
客户端配置
先安装nfs-utils这个包
[root@wqslinux ~]# yum install -y nfs-utils
查看服务器共享了哪些目录,ip地址是服务端的
[root@wqslinux 123]# showmount -e 192.168.205.4
挂载目录这里的IP是服务端的
[root@wqslinux 123]# mount -t nfs 192.168.205.4:/111 /123
赞0
踩0