分类: 系统运维
2013-04-23 11:19:08
下配置
服务端配置:
1、 ypserv的安装;
2、 改主配置文件
# /etc/ypserv.conf [主机IP/掩码 域名 文件名 port 1024以下端口访问/deny无条件拒绝/none] )注:(*代表所有)
# /var/yp/securenets
[host 127.0.0.1]
[子网掩码 IP网段 ]允许本机的用户访问
3、 配置NIS域名 #nisdomainname hehe echo ‘NISDOMAIN=hehe’ >> /etc/sysconfig/network
4、 启动time和time-udp
#chkconfig time on
#chkconfig time-udp on
#chkconfig xinetd on
5、 启用NIS服务
#service ypserv start
#service yppasswdd start
以上两个服务需要portmap 服务支持
# service portmap on
6、 构建NIS数据库
# /urs/lib/yp/ypinit –m ---à ........to add :linserv -à ctrl+d --à Y --->Enter
客服端配置:
1、设置host文件
# echo ‘服务器IP linserv(服务器名)’ >> /etc/hosts
2、安装 ypbind、yp-tools 默认安装了
3、设置yp.conf
#echo ‘domain hehe server linserv’ >> /etc/yp.conf
4、建立NIS的域名(同上)
#nisdomainname hehe
#echo ‘NISDOMAIN=hehe’ >> /etc/sysconfig/network
5、设置 /etc/nsswitch.conf文件(用于设置系统中信息的查询方式)
#Passwd: files nis
#Shadow: files nis
#Group: files nis
#Hosts: files nis dns
6、启动ypbind 服务程序(需要protmap的支持)。