6台服务器7个ip,1个阵列
221:183.60.12.221 lvs-dr-master
222:183.60.12.222 lvs-dr-backup
223:183.60.12.223 nfs-vip
224:183.60.12.224 nfs1接阵列
225:183.60.12.225 nfs2接阵列
233:183.60.12.233 web1+mount nfs-vip
234:183.60.12.234 web2+mount nfs-vip
磁盘阵列通过sas线与服务器233
一、阵列服务器
连接阵列,提供nfs服务
在224和225上
1.设置eth1 ip,即连接到存储柜的ip。
2.安装MDSM工具
3.启动MD Agent程序(搜索才能搜到ip)。
4.启动MDSM进行管理
5.自动搜索存储柜。
6.fdisk -l查看磁盘是否找到
7./etc/fstab中将磁盘映射到某个目录
比如:/dev/sdb /export ext4 defaults 1 1
8.安装nfs服务
9.为nfs开放权限,/etc/exports中
通过nfs开放文件夹共享权限给183.60.12.233和183.60.12.234
如:每行一个配置
/export/home/files 183.60.12.233(rw,async,all_squash,anonuid=500,anongid=100) 183.60.12.234(rw,async,all_squash,anonuid=500,anongid=100)
/export/home/webapp 183.60.12.233(rw,async,all_squash,anonuid=500,anongid=100) 183.60.12.234(rw,async,all_squash,anonuid=500,anongid=100)
在233和234上
10./etc/fstab中挂载nfs服务器磁盘
在183.60.12.233和183. 60.12.234挂载/export/home/files和/export/home/webapp
分别在/etc/fstab下增加
183.60.12.223:/export/home/files /export/home/files nfs rw,async,soft,intr,bg,nosuid,noexec,nodev
183.60.12.223:/export/home/webapps /export/home/webapps nfs rw,async,soft,intr,bg,nosuid,noexec,nodev