LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
楼主: webzi

关于nis 验证的 nfs+ autofs 用户家目录远程自动挂接及与autofs有关的问题

[复制链接]
发表于 2005-3-16 15:13:38 | 显示全部楼层
[root@hx etc]# umount /dev/mapper/vg-home
[root@hx etc]# mount -l
/dev/mapper/vg-root on / type ext3 (rw) []
none on /proc type proc (rw)
none on /sys type sysfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
usbfs on /proc/bus/usb type usbfs (rw)
/dev/sda1 on /boot type ext3 (rw) [/boot]
none on /dev/shm type tmpfs (rw)
/dev/mapper/vg-tmp on /tmp type ext3 (rw) []
/dev/mapper/vg-usr on /usr type ext3 (rw) []
/dev/mapper/vg-var on /var type ext3 (rw) []
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
automount(pid3121) on /home type autofs (rw,fd=4,pgrp=3121,minproto=2,maxproto=4)
[root@hx etc]# service autofs restart
Stopping automount:[  OK  ]
Starting automount:[  OK  ]
[root@hx etc]# su - e1
su: warning: cannot change directory to /home/e1: No such file or directory
-bash-3.00$ exit
logout
[root@hx etc]# cat /var/log/messages
Feb 26 02:32:08 hx autofs: automount shutdown succeeded
Feb 26 02:32:08 hx kernel: SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
Feb 26 02:32:08 hx autofs: automount startup succeeded
Feb 26 02:32:14 hx su(pam_unix)[3321]: session opened for user e1 by root(uid=0)
Feb 26 02:32:14 hx su[3321]: Warning!  Could not relabel /dev/pts/0 with user_ubject_r:devpts_t, not relabeling.Operation not permitted
Feb 26 02:32:14 hx automount[3323]: failed to mount /home/e1
Feb 26 02:32:16 hx su(pam_unix)[3321]: session closed for user e1
[root@hx etc]# mount -l
/dev/mapper/vg-root on / type ext3 (rw) []
none on /proc type proc (rw)
none on /sys type sysfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
usbfs on /proc/bus/usb type usbfs (rw)
/dev/sda1 on /boot type ext3 (rw) [/boot]
none on /dev/shm type tmpfs (rw)
/dev/mapper/vg-tmp on /tmp type ext3 (rw) []
/dev/mapper/vg-usr on /usr type ext3 (rw) []
/dev/mapper/vg-var on /var type ext3 (rw) []
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
automount(pid3314) on /home type autofs (rw,fd=4,pgrp=3314,minproto=2,maxproto=4)

umount还是不行,奇怪!
回复 支持 反对

使用道具 举报

发表于 2005-3-16 15:34:21 | 显示全部楼层
automount(pid3314) on /home type autofs (rw,fd=4,pgrp=3314,minproto=2,maxproto=4)

你已经挂上了呀!
回复 支持 反对

使用道具 举报

发表于 2005-3-16 15:51:47 | 显示全部楼层
[root@hx etc]# su - e1
su: warning: cannot change directory to /home/e1: No such file or directory
-bash-3.00$ ll /home
total 0
但e1的home目录怎么进不去呢?
回复 支持 反对

使用道具 举报

发表于 2005-3-16 16:18:44 | 显示全部楼层
Post by wiq
[root@hx etc]# su - e1
su: warning: cannot change directory to /home/e1: No such file or directory
-bash-3.00$ ll /home
total 0
但e1的home目录怎么进不去呢?

e1用户在nis中存在吗?
nis server 和nis client正常吗?
nfs server 和client正常吗?

在nfs server的 home下 mkdir /home/test ,然后 touch /home/test/testfile
在nfs client 也就是autofs 的机器上 , cd /home/test   看看是否挂接正常,如果正常看看是否有testfile文件。如果不正常,可能是nfs 或是 autofs配置问题,然后逐一排除。
回复 支持 反对

使用道具 举报

发表于 2005-3-16 16:50:40 | 显示全部楼层
谢谢kevin老师!确实如你所说。一开始是vg的原因,后来又是我配/etc/exports的时候IP输错了。
禁不住又想问问:为什么挂载了lv后就不能再挂nfs?不好意思,麻烦老师太多了!
回复 支持 反对

使用道具 举报

发表于 2005-3-16 17:02:07 | 显示全部楼层
Post by wiq
谢谢kevin老师!确实如你所说。一开始是vg的原因,后来又是我配/etc/exports的时候IP输错了。
禁不住又想问问:为什么挂载了lv后就不能再挂nfs?不好意思,麻烦老师太多了!


这个我也不清楚,有时间我看看LVM的文档找找原因吧!
回复 支持 反对

使用道具 举报

发表于 2005-3-16 17:09:10 | 显示全部楼层
谢谢老师!
回复 支持 反对

使用道具 举报

发表于 2005-3-18 01:31:44 | 显示全部楼层
弱弱的问一下 /home/&
这个&表示什么啊
谢谢
回复 支持 反对

使用道具 举报

发表于 2005-3-18 10:05:25 | 显示全部楼层
Post by reynold
弱弱的问一下 /home/&
这个&表示什么啊
谢谢


&= 你输入的字符串
回复 支持 反对

使用道具 举报

发表于 2005-6-23 16:58:22 | 显示全部楼层
Post by webzi
vi /etc/auto.master
/home /etc/auto.home --timeout=60

如果我这样 mount 显示 没有 autofs on /home的。

vi /etc/auto.master
/rhome /etc/auto.home --timeout=60

这样的话就会mount  显示 autofs on /rhome/
cd /rhome/student13就可以了。

这是为什么呢?


我跟你遇到的情况一模一样。可是我的机器上没有挂在lvm的分区啊。奇怪,不知道什么原因。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表