NIS客户端的高级配置
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-13
NIS客户端高级配置
一般情况下,NIS的客户端只能在启动的时候将服务器上的共享目录挂载到本地,而不能在启动的时候同时启动NIS客户端程序,我们先以Root用户登录本地然后才可以登录NIS服务器.
可是我们不想这么麻烦,总希望在登录本地以前就可以登录到NIS服务器上去.怎么办呢?具体做法如下:
我假设在服务器上已经做好了一切配置(包括NFS服务的启动),同样也假设客户端上的配置已经基本完成(我指的是NFS客户端的启动挂载)
环境假定完毕,现在我们就可以直接进入正题啦!
在/usr/local/sbin目录下编写一个脚本,内容如下:
#!/bin/sh
service portmap restart
service ypbind start
将它保存并命名为NIS-client.sh
进入/etc/rc.d/init.d目录,编写如下脚本:
#!/bin/sh
# #NIS-client: Start/Stop the nis-client # #chkconfig: 35 99 01 # #Description: This scrip is use to start the nis-client when we start the computer. //注意这个脚本里的所有内容一行不能少,包括注释行也不能少! #Source function library . /etc/init.d/functions [ -f /usr/local/sbin/nis-client.sh ] || exit 0 #See how we called.case $1 in start) echo "Starting nis-client:" /usr/local/sbin/nis-client.sh echo "done" ;; stop) echo "Stopping nis-client:" killall -q -9 nis-client echo "done" ;; status) status nis-client ;; reload|restart) $0 stop $0 start ;; *) echo "Usage: nis-client start|stop|status|reload|restart" exit 1 esac exit 0 将其保存命名为nis-client 在完成下面的操作: [root@localhost ~]#chmod 755 /usr/local/sbin/nis-client.sh [root@localhost ~]#chmod 755 /etc/rc.d/init.d/nis-client [root@localhost ~]#chkconfig -a nis-client [root@localhost ~]#init 6 然后就可以在启动后直接使用NIS服务器上的帐户登陆了,而不需先在本地登录开启NIS客户端程序ypbind. |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于NIS客户端的高级配置的所有评论