linux shell nis

简介:

 #!/bin/bash

#this script is install nis server
#this nis server
yum -y install xinetd
yum -y install yp-tools ypbind ypserv portmap
read -p "please input a domain name for host(like:abc.com):" domain
read -p "please input a hostname for host:" hname
read -p "add a user for nis client:" user
echo  "==========set password for $user:=========="
passwd $user
CONF=/etc/ypserv.conf
IP=`ifconfig | grep "inet addr" | grep -v "127.0.0.1" | cut -d: -f2 | cut -d' ' -f1`
MASK=`ifconfig | grep Mask | grep -v "127.0.0.1" | cut -d: -f4`
NIP=`echo $IP | awk -F . -v OFS="." '{print $1,$2,$3}'`                       #print ip the three before(取ip的前三位,也就是取网段)
sed -i "s/`hostname`/$hname.$domain/g"  /etc/sysconfig/network
echo "NISDOMAIN=$domain" >>/etc/sysconfig/network
echo "/bin/nisdomainname $domain" >> /etc/rc.d/rc.local
sed -i "/127.0.0.1/s/localhost/$hname/" /etc/hosts
sed -i "/127.0.0.1/s/localhost.localdomain/$hname.$domain/" /etc/hosts
echo  "$IP  $hname  $hname.$domain "  >> /etc/hosts
nisdomainname $domian
sed -i '/port/s/^/# /g' $CONF   #把匹配有port的行,前面加上#号
cat >> $CONF << EOF
xfr_check_port: yes
127.0.0.0/255.255.255.0       :*     :*    :none
$NIP.0/$MASK                  :*     :*    :port
:*                            :*     :*    :deny
EOF
 
touch /etc/netgroup
cat >> /var/yp/securenets << EOF
host 127.0.0.1
$MASK   $NTP.0
EOF
 
/usr/lib/yp/ypinit -m
#start Related services
service xinetd restart
service rpcbind restart   #IN centos 6.x  Portmap has been replaced by rpcbind
service ypserv start
service yppasswd start 
chkconfig ypserv on
chkconfig yppasswdd on
chkconfig rpcbind on
 
 
 
 
 
#!/bin/bash
#this nis client,this script can not run
yum -y install ypbind yp-tools
#添加服务器的ip与主机名对应的关系
echo " 192.168.1.1  ypserver"  >> /etc/hosts
echo "NISDOMAIN=abc.com" >>/etc/sysconfig/network
echo "/bin/nisdomainname abc.com" >> /etc/rc.d/rc.local
sed -i '$a domain abc.com server ypserver.abc.com' /etc/yp.conf
 
cat >> /etc/nsswitch.conf << EOF
passwd:     files nis
shadow:     files nis
group:      files nis
hosts:      files nis dns
EOF
 
service rpcbind restart   #IN centos 6.x  Portmap has been replaced by rpcbind
service ypbind start
 
 
###测试用的命令
ypwhich -x
ypcat passwd
yptest









本文转自 jie783213507 51CTO博客,原文链接:http://blog.51cto.com/litaotao/1186923,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
Shell Linux
Linux shell编程学习笔记30:打造彩色的选项菜单
Linux shell编程学习笔记30:打造彩色的选项菜单
|
1月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
66 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
25天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
2月前
|
Shell Linux
Linux shell编程学习笔记82:w命令——一览无余
Linux shell编程学习笔记82:w命令——一览无余
|
2月前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
537 2
|
1月前
|
存储 Shell Linux
【Linux】shell基础,shell脚本
Shell脚本是Linux系统管理和自动化任务的重要工具,掌握其基础及进阶用法能显著提升工作效率。从简单的命令序列到复杂的逻辑控制和功能封装,Shell脚本展现了强大的灵活性和实用性。不断实践和探索,将使您更加熟练地运用Shell脚本解决各种实际问题
29 0
|
2月前
|
Shell Linux 开发工具
linux shell 脚本调试技巧
【9月更文挑战第3天】在Linux中调试shell脚本可采用多种技巧:使用`-x`选项显示每行命令及变量扩展情况;通过`read`或`trap`设置断点;利用`echo`检查变量值,`set`显示所有变量;检查退出状态码 `$?` 进行错误处理;使用`bashdb`等调试工具实现更复杂调试功能。
|
3月前
|
JavaScript 关系型数据库 Shell
Linux shell编写技巧之随机取字符串(一)
本文介绍了Linux Shell脚本的编写技巧,包括环境配置、变量命名规则和缩进语法,并提供了一个实例练习,展示如何使用`$RANDOM`变量和`md5sum`命令来生成随机的8位字符串。
55 4
|
3月前
|
Ubuntu Linux Shell
在Linux中,如何使用shell脚本判断某个服务是否正在运行?
在Linux中,如何使用shell脚本判断某个服务是否正在运行?
|
3月前
|
Java Shell Linux
【Linux入门技巧】新员工必看:用Shell脚本轻松解析应用服务日志
关于如何使用Shell脚本来解析Linux系统中的应用服务日志,提供了脚本实现的详细步骤和技巧,以及一些Shell编程的技能扩展。
56 0
【Linux入门技巧】新员工必看:用Shell脚本轻松解析应用服务日志
下一篇
无影云桌面