小型架构实践--NFS环境搭建

基础环境

mysql主机1(Ha1):169.254.235.100

mysql主机2(Ha2):169.254.235.101

共享存储(Store):169.254.235.102


前置条件

1.yum install nfs-utils -y (会自动安装好nfs-utils和rpcbind2个搭建NFS必须的包)

/etc/init.d/rpcbind start   (必须先启动rpcbind,否则nfs启动时会报错)

/etc/init.d/nfs start

2.setenforce 0 (关闭selinux)

3.服务端和客户端iptables的设置

eg.服务端规则

iptables -I INPUT -s 169.254.235.100 -j ACCEPT

iptables -I INPUT -s 169.254.235.101 -j ACCEPT

service iptables save

service iptables restart

4.创建相应的用户和文件夹

用户:服务端和客户端创建用户的uid,gid必须一致(这里都创建mysql)

[root@NFS rsyncd]# groupadd -g 502 mysql

[root@NFS rsyncd]# useradd -u 502 mysql -g mysql -G mysql

[root@NFS rsyncd]# id mysql

uid=502(mysql) gid=502(mysql) groups=502(mysql)

文件夹:在服务端创建需要共享的文件夹 /mysql_share

在服务端和客户端创建挂载的文件夹 /data

修改上述2个文件夹的属主为mysql


配置NFS

服务端

echo '/mysql_share 169.254.235.100(rw,no_root_squash) 169.254.235.101(rw,no_root_squash)' >> /etc/exports

重载配置

exportfs -rv

######################################################

常见错误:

1.这里并没有写自己的IP,所以不要尝试挂载自己来检测是否成功

(尝试挂载会得到报错:access denied by server while mounting....)

2.写在一行,不要换行,不然会有报错

eg.

[root@NFS rsyncd]# vi /etc/exports

/data             

192.168.40.100(rw,no_root_squash)

192.168.40.101(rw,no_root_squash)

执行挂载报错:

[root@NFS rsyncd]# exportfs -rv

exportfs: No options for /data : suggest (sync) to avoid warning

exportfs: No options for 192.168.40.100(rw,no_root_squash) : suggest (sync) to avoid warning

exportfs: No options for 192.168.40.101(rw,no_root_squash) : suggest (sync) to avoid warning

exporting :192.168.40.101(rw,no_root_squash)

exportfs: Failed to stat 192.168.40.101(rw,no_root_squash): No such file or directory

exporting :192.168.40.100(rw,no_root_squash)

exportfs: Failed to stat 192.168.40.100(rw,no_root_squash): No such file or directory

exporting :/data

修改后:

[root@NFS rsyncd]# cat /etc/exports

/data 192.168.40.100(rw,no_root_squash) 192.168.40.101(rw,no_root_squash)

[root@NFS rsyncd]# exportfs -rv

exporting 192.168.40.100:/data

exporting 192.168.40.101:/data

3.配置的机器没有安装nfs相关组件

[root@Master02 /]# mount -t nfs 192.168.40.110:/data /datamount: wrong fs type, bad option, bad superblock on 192.168.40.110:/data, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program)

      In some cases useful info is found in syslog - try

      dmesg | tail  or so

根据提示: need a /sbin/mount. 

可以发现不存在/sbin/mount.nfs

执行安装 yum install -y nfs-utils

之后会生成/sbin/mount.nfs

客户端并不需要启动rpcbind或者nfs的服务,安装完成后执行挂载即可

######################################################


客户端

在2个客户端直接进行挂载操作

mount -t nfs 169.254.235.102:/mysql_share /data

完成后可以通过showmount -e 169.254.235.102来查看挂载情况

也可以通过df -h在磁盘信息里面直接看到nfs挂载磁盘的信息


--------------------------------------------------

至此NFS环境已经搭建完成

本以为把Mysql的datadir设置成为挂载的共享磁盘就万事大吉,然而了解更多之后发现2个Mysql机之间还需要通过heartbeat或者corosync来实现心跳配置

在实验中pacemaker和heartbeat的配置一直报错;加上目前Mysql高可用基本不采用NFS+Mysql的方式,所以进一步的实验就此搁置

进一步实践参考:小型架构实践--Mysql双主+corosync+NFS

你可能感兴趣的:(小型架构实践--NFS环境搭建)