- 论坛徽章:
- 0
|
1、环境介绍
nfs服务器是sun01(solaris 8),使用automount的是hp01(hp11i)
2、nfs服务器的设置
[07][root@sun01][/]cat /etc/dfs/dfstab
share -F nfs -o ro=hp01 /export/home/testhp
3、重新启动nfs.server服务
[07][root@sun01][/export/home/testhp]/etc/rc3.d/S15nfs.server start
4、检查share情况
[07][root@sun01][/]share
- /export/home/testhp ro=hp01 \"\"
5、hp01参数设置情况
[08:45 AM][root@hp01][/]cat /etc/auto_master
/net -hosts -nosuid,soft
/- /etc/auto.direct
[08:45 AM][root@hp01][/]cat /etc/auto.direct
/zj/tttt sun01:/export/home/testhp
[08:45 AM][root@hp01][/]cat zps
ps -ef | grep -i $1 | grep -v grep
6、重新启动automount服务
注意:只能使用-term来停止,不要使用-9来停止,否则会hang!!
[08:47 AM][root@hp01][/]zps automount
root 18412 1 0 08:29:33 ? 0:00 /usr/lib/netsvc/fs/automount/automount -f /etc/auto_master
[08:48 AM][root@hp01][/]kill -term 18412
[08:48 AM][root@hp01][/]zps automount
[08:48 AM][root@hp01][/]automount -f /etc/auto_master
[08:49 AM][root@hp01][/]zps automount
root 18782 1 0 08:49:05 ? 0:00 /usr/lib/netsvc/fs/automount/automount -f /etc/auto_master
7、查看源目录情况
[07][root@sun01][/export/home/testhp]ls -l
total 0
-rw-r--r-- 1 root other 0 Nov 10 07:06 zj.2004-11-10
8、访问/zj/tttt目录
[08:50 AM][root@hp01][/]cd /zj/tttt
[08:51 AM][root@hp01][/zj/tttt]ll
total 0
-rw-r--r-- 1 root other 0 Nov 10 07:06 zj.2004-11-10
9、察看目录的属性,应该是tmp_mnt的链接
[08:53 AM][root@hp01][/zj]ll tttt
lrwxrwxrwx 1 root root 20 Nov 10 08:51 tttt ->; /tmp_mnt/zj/tttt
10、检查mount情况
[08:31 AM][root@hp01][/]mount
...
/tmp_mnt/zj/tttt on sun01:/export/home/testhp rw,dev=0007 on Wed Nov 10 08:29:57 2004
11、一段时间不使用,automount自动umount掉了
[08:53 AM][root@hp01][/zj]mount
...
12、再次使用/zj/tttt,系统又自动mount上了
[09:02 AM][root@hp01][/zj]cd tttt
[09:02 AM][root@hp01][/zj/tttt]ll
total 0
-rw-r--r-- 1 root other 0 Nov 10 07:06 zj.2004-11-10
[09:02 AM][root@hp01][/zj/tttt]mount
...
/tmp_mnt/zj/tttt on sun01:/export/home/testhp rw,dev=000b on Wed Nov 10 09:02:41 2004 |
|