puppet连载15:搭建zabbix服务端、客户端

本文涉及的产品
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介: zabbix的安装需要先安装mysql.服务端/puppet/soft建vi zabbix35server.sh 文件,内容:!/bin/bashresult=netstat -tnlup|grep 3306;if [ "$result" !=...

zabbix的安装需要先安装mysql.

服务端/puppet/soft建vi zabbix35server.sh 文件,内容:

!/bin/bash

result=netstat -tnlup|grep 3306;

if [ "$result" != "0" ];then
service mysqld start
fi

mysql -uroot -pxmrbi3967968@ -e "create database zabbix character set utf8;"
mysql -uroot -pxmrbi3967968@ -e "grant all privileges on zabbix.* to 'zabbix'@'localhost' identified by 'zabbix';"
mysql -uroot -pxmrbi3967968@ -e "flush privileges;"

cd /usr/share/doc/zabbix-server-mysql-4.0.0
gunzip create.sql.gz
mysql -uroot -pxmrbi3967968@ zabbix</usr/share/doc/zabbix-server-mysql-4.0.0/create.sql

firewall-cmd --add-port=10051/tcp --permanent
firewall-cmd --reload

sed -i "s#;date.timezone =#date.timezone = Asia/Shanghai#g" /etc/php.ini
sed -i "s#post_max_size = 8M#post_max_size = 16M#g" /etc/php.ini
sed -i "s#max_execution_time = 30#max_execution_time = 300#g" /etc/php.ini
sed -i "s#max_input_time = 60#max_input_time = 300#g" /etc/php.ini
sed -i "s#;always_populate_raw_post_data = -1#always_populate_raw_post_data = -1#g" /etc/php.ini

service mysqld restart
chmod 777 /data/mysql

保存退出


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

建zabbix_server配置文件:

vi /etc/puppet/modules/linuxzabbix/templates/zabbix_server.conf.erb
LogFile=/var/log/zabbix/zabbix_server.log
LogFileSize=0
PidFile=/var/run/zabbix/zabbix_server.pid
SocketDir=/var/run/zabbix
DBName=zabbix
DBUser=zabbix
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
Timeout=4
AlertScriptsPath=/usr/lib/zabbix/alertscripts
ExternalScripts=/usr/lib/zabbix/externalscripts
LogSlowQueries=3000
DBHost=localhost
DBPassword=zabbix
DBSocket=/data/mysql/mysql.sock


客户端配置

vi /etc/puppet/modules/linuxzabbix/templates/zabbix_agentd.conf.erb
LogFile=/var/log/zabbix/zabbix_agentd.log
PidFile=/var/run/zabbix/zabbix_agentd.pid
EnableRemoteCommands=1
LogRemoteCommands=1
Server=<%= zabbix_server %>
Hostname=<%= fqdn %>
ListenIP=<%= ipaddress %>
Include=/etc/zabbix/zabbix_agentd.d/


vi /etc/puppet/modules/linuxzabbix/manifests/init.pp
class linuxzabbix::zabbix35 {
yumrepo { "zabbix":
descr => "zabbix repo",
baseurl => "http://repo.zabbix.com/zabbix/3.5/rhel/7/$basearch/",
gpgcheck => "0",
enabled => "1",
}
user {"zabbix":
uid => "1051",
shell => "/sbin/nologin",
}
}
class linuxzabbix::zabbixserver35 {
require linuxzabbix::zabbix35
exec {"yum fping":
command => "rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/f/fping-3.10-4.el7.x86_64.rpm",
path => ["/usr/sbin","/usr/bin","/bin","/sbin",],
before => Package["zabbix-server-mysql"],
unless => "rpm -qa|grep fping",
}
exec {"yum iksemel":
command => "rpm -ivh http://springdale.math.ias.edu/data/puias/unsupported/7/x86_64//iksemel-1.4-6.sdl7.x86_64.rpm",
path => ["/usr/sbin","/usr/bin","/bin","/sbin",],
before => Package["zabbix-server-mysql"],
unless => "rpm -qa|grep iksemel",
}
package {["zabbix-server-mysql","zabbix-web-mysql",]:
ensure =>installed,
require => Yumrepo["zabbix"],
notify => Exec["zabbixsetup"],
}
file {"/data/zabbix35server.sh":
source => "puppet:///soft/zabbix35server.sh",
ensure => present,
}
exec {"zabbixsetup":
command => "bash /data/zabbix35server.sh",
cwd => "/data",
user => root,
provider => shell,
logoutput => true,
require => File["/data/zabbix35server.sh"],
refreshonly => true,
}
file {"zabbix server config":
ensure => present,
mode => 755,owner=> zabbix,group => zabbix,
path => "/etc/zabbix/zabbix_server.conf",
content => template("/etc/puppet/modules/linuxzabbix/templates/zabbix_server.conf.erb"),
notify => Service["zabbix-server"],
}
service {["zabbix-server","httpd",]:
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
}
exec {"mysqlsock":
command => "ln -s /data/mysql/mysql.sock /var/lib/mysql/mysql.sock",
path => ["/usr/sbin","/usr/bin","/bin","/sbin",],
unless => "ls /var/lib/mysql/mysql.sock",
}
}

class linuxzabbix::zabbixagent35 {
require linuxzabbix::zabbix35
package {"zabbix-agent":
ensure => "installed",
require => Yumrepo["zabbix"],
notify => Exec["firewall10050"],
}

exec {"firewall10050":
command => "firewall-cmd --add-port=10050/tcp --permanent && firewall-cmd --reload",
path => ["/usr/sbin","/usr/bin","/bin","/sbin"],
refreshonly => true,
}

file {"/etc/zabbix/zabbix_agentd.conf":
ensure => present,
mode => 755,owner => zabbix,group => zabbix,
content => template("/etc/puppet/modules/linuxzabbix/templates/zabbix_agentd.conf.erb"),
notify => Service["zabbix-agent"],
}
service {"zabbix-agent":
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
}
}

调用方式

node 'huangat-test' {

include test

include linuxbaseinstall
include linuxoptimize
include linuxjdktomcat::tomcat8036

include linuxclean::yumclean

include linuxnginx::nginx1102
include linuxpercona::perconaxtradbcluster57rpm
$zabbix_server = "api2"
include linuxzabbix::zabbixagent35
include public::externalfacter
}
node 'api2' {
include linuxbaseinstall
include linuxoptimize
include linuxjdktomcat::tomcat8516

include linuxnginx::openresty1136

include linuxpercona::perconaserver57rpm
include linuxzabbix::zabbixserver35
include public::externalfacter
}

相关实践学习
基于CentOS快速搭建LAMP环境
本教程介绍如何搭建LAMP环境,其中LAMP分别代表Linux、Apache、MySQL和PHP。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
2月前
|
监控 关系型数据库 Linux
|
2月前
|
存储 JSON 监控
源码分析Zabbix客户端如何向服务端发起请求
源码分析Zabbix客户端如何向服务端发起请求
29 2
|
6月前
|
监控 网络协议 Unix
zabbix通过agent客户端监控主机
zabbix通过agent客户端监控主机
|
9月前
|
监控
Zabbix实战之客户端自动发现
Zabbix实战之客户端自动发现
101 0
|
9月前
|
存储 监控 数据可视化
Zabbix-客户端部署全过程
客户端部署全过程
187 0
|
9月前
|
监控 Windows
Zabbix监控Windows客户端设置
Zabbix监控Windows客户端设置
128 0
|
9月前
|
监控 安全 Linux
Zabbix-客户端部署
Zabbix-客户端部署
114 0
|
监控 Linux 网络安全
【zabbix教程三】——centos7 安装zabbix客户端并监控
【zabbix教程三】——centos7 安装zabbix客户端并监控
300 0
【zabbix教程三】——centos7 安装zabbix客户端并监控
|
监控 关系型数据库 MySQL
【zabbix教程二】——Centos7 安装zabbix3.07服务端
【zabbix教程二】——Centos7 安装zabbix3.07服务端
180 0
【zabbix教程二】——Centos7 安装zabbix3.07服务端
|
监控 关系型数据库 MySQL
【zabbix教程八】——Centos7 安装zabbix3.07服务端 补充
【zabbix教程八】——Centos7 安装zabbix3.07服务端 补充
94 0
【zabbix教程八】——Centos7 安装zabbix3.07服务端 补充