本博文出自博客redking 博主,有任何问题请进入博主页面互动讨论! 博文地址:http://redking.blog.51cto.com/27212/1604984 |
OS:CentOS-6.6-x86_64(Minimal) Puppet3.7.3 Zabbix2.4 Puppet/Zabbixmaster:master/zabbix.redking.com Puppet/Zabbixagent:agent1~5.redking.com
Puppet安装
1.服务端安装puppet-server
puppet不在CentOS的基本源中,需要加入PuppetLabs提供的官方源,Puppet Master服务器端安装puppet-server,自动匹配安装Facter等相关依赖包
[root@master~]#rpm-ivhhttp://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-7.noarch.rpm [root@master~]#yuminstall-ypuppet-server [root@master~]#chkconfigpuppetmasteron [root@master~]#servicepuppetmasterstart
2.客户端安装puppet
[root@agent~]#rpm-ivhhttp://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-7.noarch.rpm [root@agent~]#yuminstall-ypuppet [root@agent~]#chkconfigpuppeton [root@agent~]#servicepuppetstart
Puppet Master服务器配置
1.配置自动认证
允许所有redking.com域的主机自动颁发证书.创建autosign.conf文件
[root@master~]#cat>/etc/puppet/autosign.conf<<EOF >*.redking.com >EOF [root@master~]#
Puppet Agent客户端配置
1.修改客户端主配置文件puppet.conf来增加监听与指定服务端域名
[root@agent~]#vim/etc/puppet/puppet.conf [agent] listen=true server=master.redking.com
Puppet测试
这样我们可以使用Puppet来管理Puppet,通过配置puppet modules的方式来管理所有puppet客户端,将配置文件应用到所有服务器。
client需要向服务器端发出请求, 让服务器对客户端进行管理. 这其实是一个证书签发的过程. ***次运行 puppet 客户端的时候会生成一个SSL证书并指定发给Puppet 服务端, 服务器端如果同意管理客户端,就会对这个证书进行签发,可以用这个命令来签发证书,由于我们已经在客户端设置了server地址,因此不需要跟服务端地址
[root@agent~]#puppetagent--test
为了详细了解注册的过程和日后排错,可以增加参数
–no-daemonize 前台输出日志
–verbose 输入更加详细的日志
–debug 更加详细的日志,排错的时候使用
–test 表示测试,就带一个–test参数就可以
[root@agent~]#puppetagent--no-daemonize--onetime--verbose--debug
服务端查看证书签发信息
[root@master~]#puppetcertlist--all
Zabbix Server安装
1.配置软件仓库并安装Zabbix
[root@master~]#rpm-ivhhttp://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm [root@master~]#yuminstall-yzabbix-server-mysqlzabbix-web-mysqlmysql-server
默认创建Zabbix运行的用户及组,创建Web服务器Apache虚拟主机配置文件。
2.创建数据库并导入数据表
[root@master~]#rpm-ivhhttp://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm [root@master~]#yuminstall-yzabbix-server-mysqlzabbix-web-mysqlmysql-server [root@master~]#servicemysqldstart [root@master~]#chkconfigmysqldon [root@master~]#mysqladmin-urootpassword'123456' [root@master~]#mysql-uroot-p123456 mysql>createdatabasezabbixcharactersetutf8; mysql>grantallprivilegesonzabbix.*tozabbix@localhostidentifiedby'zabbix'; mysql>flushprivileges;
进入Zabbix数据库文件目录导入数据库信息
[root@master~]#cd/usr/share/doc/zabbix-server-mysql-2.4.3/create/ [root@mastercreate]#mysql-uroot-p123456zabbix<schema.sql [root@mastercreate]#mysql-uroot-p123456zabbix<images.sql [root@mastercreate]#mysql-uroot-p123456zabbix<data.sql
3.修改Zabbix配置文件配置数据库相关信息
[root@master~]#vim/etc/zabbix/zabbix_server.conf DBHost=localhost DBName=zabbix DBUser=zabbix DBPassword=zabbix
4.设置PHP默认时区
[root@master~]#vim/etc/php.ini date.timezone=PRC
5.启动Zabbix和Apache服务
[root@master~]#servicezabbix-serverstart [root@master~]#chkconfigzabbix-serveron [root@master~]#servicehttpdstart [root@master~]#chkconfighttpdon
6.设置Zabbix
Zabbix安装页面:http://zabbix.redking.com/zabbix/setup.php
Zabbix后台界面
#p#
编写Zabbix模块
1.创建模块目录
[root@master~]#mkdir-p/etc/puppet/modules/zabbix/{manifests,templates}
2.创建manifests文件
服务器端保存着所有对客户端服务器的配置代码,在puppet里面叫做manifest. 客户端下载manifest之后,可以根据manifest对服务器进行配置,例如软件包管理,用户管理和文件管理等等。
Zabbix Agent程序采用官方提供的软件源,客户端配置文件采用模板方式进行文件下载,由于客户端需要指定Zabbix Server,因此配置文件采用变量进行传递,***使用“->”指定资源之间的依赖顺序关系。
[root@master~]#vim/etc/puppet/modules/zabbix/manifests/init.pp classzabbix{ package{'zabbix-agent': ensure=>installed, require=>Yumrepo["zabbix"], } yumrepo{'zabbix': baseurl=>"http://repo.zabbix.com/zabbix/2.4/rhel/\$releasever/\$basearch/", descr=>"ZabbixOfficialRepository", enabled=>1, gpgcheck=>0, } file{'/etc/zabbix/zabbix_agentd.conf': content=>template("zabbix/zabbix_agentd_conf.erb"), ensure=>file, } service{'zabbix-agent': ensure=>"running", hasstatus=>true, enable=>true, subscribe=>[File["/etc/zabbix/zabbix_agentd.conf"]], } Package["zabbix-agent"]->File["/etc/zabbix/zabbix_agentd.conf"]->service["zabbix-agent"] }
3.创建模板文件
[root@master~]#vim/etc/puppet/modules/zabbix/templates/zabbix_agentd_conf.erb PidFile=/var/run/zabbix/zabbix_agentd.pid LogFile=/var/log/zabbix/zabbix_agentd.log EnableRemoteCommands=1 LogRemoteCommands=1 Server=<%=zabbix_server%> Hostname=<%=fqdn%> ListenIP=<%=ipaddress%> Include=/etc/zabbix/zabbix_agentd.d/
4.创建节点文件
[root@master~]#mkdir/etc/puppet/manifests/nodes [root@master~]#vim/etc/puppet/manifests/nodes/agentgroup.pp node/^agent\d+\.redking\.com$/{ $zabbix_server="zabbix.redking.com" includezabbix }
5.修改site.pp将测试节点载入Puppet
[root@master~]#vim/etc/puppet/manifests/site.pp Package{ allow_virtual=>true, } import"nodes/agentgroup.pp"
节点agent.redking.com测试
[root@agent~]#puppetagent--test
客户端已经自动安装zabbix-agent并开启服务。
#p#
Zabbix Web界面测试
设置Discovery规则
设置Actions
Monitoring界面
==================================END=============================
发表评论