随遇而安
分类: LINUX
2010-03-22 11:23:35
1、 检查和确认NFS服务是否启动,如果没有启动执行:
/etc/rc.d/init.d/nfs start
/etc/init.d/portmap start
2、 编写共享目录和共享给那些机器
# vi /etc/exports
/LUN1 210.32.80.203(rw,sync,no_root_squash)
/LUN1 210.32.80.204(rw,sync,no_root_squash)
/LUN3 210.32.80.207(rw,sync,no_root_squash)
/LUN3 210.32.80.206(rw,sync,no_root_squash)
(“/LUN1”是共享后的目录名,“210.32.
例:安财门户目录共享:“/opt/cmstar app2(rw,sync,no_root_squash)”,app2需要在hosts配置。
启动NFS
# exportfs -rv
# exportfs -av
3、 挂载NFS,在需要访问共享的机器上执行挂载命令
在210.32.80.203上输入:
# mount 210.32.80.203:/LUN1 /LUN1
例:安财113服务器挂载命令:“mount 211.86.241.112:/opt/cmstar /opt/cmstar”
可以用“# df –h”命令看能否自己挂载
[root@ids1 /]# df -h
其它需要挂载NFS主机的机器操作步骤同上。
在其它机器上检测能否访问,如不能访问,说明权限限制成功。
4、 写入自动启动挂载脚本(在需要访问共享的服务器上)
Vi /etc/rc.local
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
mount 210.32.80.210:/LUN1 /LIN1
让系统在自己脚本中不断尝试挂载,以适应网卡连接延迟时间。
(可以增加mount参数:mount -t nfs app1:/opt/cmstar /opt/cmstar)