Puppet根据节点机器名推送并自动执行SHELL脚本

简介:

puppet的基础环境介绍:

puppet服务器和客户端都已下载了epel的外部yum源,都已通过yum程序自动安装了puppet程序,过程比较简单,这里就不一一介绍了,机器都放置在同一局域网内,cn7788.com的域名,内部有内网DNS环境,没有用LDP作为域控,局域网还有其它客户端,由于不需要使用puppet环境,所以就不一一介绍了。

1
2
3
4
server.cn7788.com 192.168.1.124  puppet-master
client.cn7788.com 192.168.1.125  puppet-client
lamp.cn7788.com 192.168.1.126  puppet-client
xen.cn7788.com  192.168.1.144 puppet-client

大家可以将上面的域名对应关系可将其都写在各自机器的/etc/hosts文件里,在各个puppet客户端上建议ntpdate精准对时(因为puppet的证书对时间要求严格),不然puppet-client连接时会报如下错误:

1
2
3
4
5
6
7
warning: peer certificate won't be verified  in  thisSSL session
info: Caching certificate  for  client.cn7788.com
info: Caching certificate_revocation_list  for  ca
err: Could not retrieve catalog from remote server:certificate verify failed.  This is oftenbecause the  time  is out of  sync  on the server or client
warning: Not using cache on failed catalog
err: Could not retrieve catalog; skipping run
err: Could not send report: certificate verifyfailed.  This is often because the timeis out of  sync  on the server or client

需求如下:客户机机器xen.cn7788.comlamp.cn7788.com没有安装nagios客户端程序,这时想过通过puppet-server推送SHELL脚本自动安装,其它的客户端暂时没这么需求,这个应该如何实现呢?

由于客户端节点机器比较多,所以这里需要用到节点和模块的概念,这里我们先建立名为nagioscli的模块,如下所示:

1
mkdir  -p /etc/puppet/modules/nagioscli/ {manifests,files,templates}

files目录下的nagioscli.sh文件内容如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
useradd  nagios
cd  /usr/local/src
wget wget http: //syslab .comsenz.com /downloads/linux/nagios-plugins-1 .4.13. tar .gz
wget http: //syslab .comsenz.com /downloads/linux/nrpe-2 .12. tar .gz
tar  zxvf nagios-plugins-1.4.13. tar .gz
cd  nagios-plugins-1.4.13
. /configure
make
make  install
chown  nagios:nagios  /usr/local/nagios
chown  -R nagios:nagios  /usr/local/nagios/libexec
cd  ../
tar  zxvf nrpe-2.12. tar .gz
cd  nrpe-2.12
. /configure
make  all
make  install -plugin
make  install -daemon
make  install -daemon-config
sed  -i 's@allowed_hosts=127.0.0.1@allowed_hosts=114.112.11.11@' /usr/local/nagios/etc/nrpe .cfg
#114.112.11.11为nagios服务器的IP地址,这个可以根据实际需求更改。
/usr/local/nagios/bin/nrpe  -c /usr/local/nagios/etc/nrpe .cfg -d
echo  "/usr/local/nagios/bin/nrpe -c/usr/local/nagios/etc/nrpe.cfg -d"  >>  /etc/rc . local

site.pp文件内容如下:

1
import  "node.pp"

这里扩展了site.pp文件内容,它会载入node.pp文件,这样puppet-master在启动的时候,就会自动截入并处理node.pp文件了。

node.pp文件内容如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
node  'lamp.cn7788.com' {
file
{ "/usr/local/src/nagioscli.sh" :
source  => "puppet://server.cn7788.com/modules/nagioscli/nagioscli.sh" ,
group => root,
owner => root,
mode  => 755,
}
exec  {
"auto install naigios client" :
command  => "sh /usr/local/src/nagioscli.sh" ,
user => "root" ,
path =>[ "/usr/bin" , "/usr/sbin" , "/bin" , "/bin/sh" ],
}
}
node  'xen.cn7788.com' {
file
{ "/usr/local/src/nagioscli.sh" :
source  => "puppet://server.cn7788.com/modules/nagioscli/nagioscli.sh " ,
group => root,
owner => root,
mode  =>644,
}
exec  {
"auto install naigios client" :
command  => "sh /usr/local/src/nagioscli.sh" ,
user => "root" ,
path =>[ "/usr/bin" , "/usr/sbin" , "/bin" , "/bin/sh" ],
}
}
node  'client.cn7788.com' {

client.cn7788.com节点机器后面什么都没有,则表示没有任何操作在此节点机器上面,因为client机器也在puppet环境里,并配置成了自动连接,配置成如此,是防止自动连接时puppet频繁报错。

这里以xen.cn7788.com为例,在其主机上输入如下命令:

1
puppetd -- test  --server server.cn7788.com

xen.cn7788.com上命令显示结果如下所示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
info: Caching catalog  for  xen.cn7788.com
info: Applying configuration version  '1382622383'
---  /usr/local/src/nagioscli .sh       2013-10-24 22:35:36.000000000 +0800
+++  /tmp/puppet-file .22857.0   2013-10-24 22:39:08.000000000 +0800
@@ -1,4 +1,5 @@
  #!/bin/bash
+yum -y  install  httpd gcc gcc-c++ glibcglibc-common gd gd-devel
  useraddnagios
  cd /usr/local/src
  wgetwget http: //syslab .comsenz.com /downloads/linux/nagios-plugins-1 .4.13. tar .gz
info: FileBucket adding{md5}f75e9aa3fc301c8e9c85f2677feaa9b5
info: /Stage [main] //Node [xen.cn7788.com] /File [ /usr/local/src/nagioscli .sh]:Filebucketed  /usr/local/src/nagioscli .sh to puppet with sumf75e9aa3fc301c8e9c85f2677feaa9b5
notice: /Stage [main] //Node [xen.cn7788.com] /File [ /usr/local/src/nagioscli .sh] /content : contentchanged  '{md5}f75e9aa3fc301c8e9c85f2677feaa9b5'  to '{md5}a1ed4dc2b98450e3144530f32677f736'
notice: /Stage [main] //Node [xen.cn7788.com] /Exec [auto  install  naigios client] /returns :executed successfully
notice: Finished catalog run  in  283.11 seconds

执行时间比较长,总共耗时283.11秒,我们要检查下xen.cn7788.com的节点机器上是否开启了nrpe 进程,输入命令如下所示:

1
ps  aux |  grep  nrpe |  grep  v  grep

命令显示结果如下所示:

1
nagios  22331  0.0  0.1  5108   924 ?        Ss  22:35   0:00 /usr/local/nagios/bin/nrpe  -c  /usr/local/nagios/etc/nrpe .cfg -d

我们检查下/etc/rc.local,看此命令有没有添加进去,命令如下:

1
grep  - v "^#"  /etc/rc . local

命令执行结果显示如下所示:

1
2
touch  /var/lock/subsys/local
/usr/local/nagios/bin/nrpe  -c /usr/local/nagios/etc/nrpe .cfg -d

检查结果说明puppet-masternagioscli模块是正常的,lamp.cn7788.com的结果类似,这里就不再贴出检测结果了,我们主要看下lamp.cn7788.com总共耗时多少,命令如下所示:

1
puppetd -- test  --serverserver.cn7788.com

结果如下所示:

1
2
3
4
info: Caching catalog  for  lamp.cn7788.com
info: Applying configuration version  '1382622383'
notice:  /Stage [main] //Node [lamp.cn7788.com] /Exec [autoinstall naigios client] /returns : executed successfully
notice: Finished catalog run  in  169.08 seconds

执行时间比较长,总共耗时169.08秒。


其实工作中像这种推送脚本执行的需求还是很多的,类似在各种不同名字的节点上执行的优化服务器命令、批量清除varnish缓存加速服务器缓存、根据机器名推送文件,我们只需要将此案例稍为变通下即可在工作中投入应用了。









本文转自 抚琴煮酒 51CTO博客,原文链接:http://blog.51cto.com/yuhongchun/1317107,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
108 1
|
1月前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
60 2
6种方法打造出色的Shell脚本
|
26天前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
53 1
|
1月前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
45 2
|
2月前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
51 6
|
1月前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
2月前
|
分布式计算 Hadoop Shell
Hadoop-36 HBase 3节点云服务器集群 HBase Shell 增删改查 全程多图详细 列族 row key value filter
Hadoop-36 HBase 3节点云服务器集群 HBase Shell 增删改查 全程多图详细 列族 row key value filter
59 3
|
Shell
在shell中执行计算
在shell中执行计算 法一:用let,它几乎支持所有的运算符 a=2 b=-1 let c=a+b echo $c 结果就是1 法二:如果是Bash,可以用运算符$(( )) c=$((a+b)) echo $c 结果也是1 http://zhidao.
786 0
|
2月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
79 12
|
2月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
69 2

推荐镜像

更多