centos6.5下的zabbix3.0.3 安装配置

前端之家收集整理的这篇文章主要介绍了centos6.5下的zabbix3.0.3 安装配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.首先要准备LAMP环境。

(1)安装PHP

Zabbix 3.0对PHP的要求最低为5.4,而CentOS6默认为5.3.3,完全不满足要求,故需要利用第三方源,将PHP升级到5.4以上

rpm-ivhhttp://repo.webtatic.com/yum/el6/latest.rpm
yuminstallPHP56wPHP56w-gdPHP56w-MysqLPHP56w-bcmathPHP56w-mbstringPHP56w-xmlPHP56w-ldap
vim/etc/PHP.ini
date.timezone=Asia/Shanghai
post_max_size=32M
max_execution_time=300
max_input_time=300
always_populate_raw_post_data=-1
(2)安装MysqL
rpm-ivhhttp://dev.MysqL.com/get/MysqL-community-release-el6-5.noarch.rpm
yuminstall-yMysqL-serverMysqL-devel

MysqL配置,根据需求来,这里我简化了

vim/etc/my.cnf
max_connections=3000实际MysqL服务器允许的最大连接数16384;
sort_buffer_size=2M
thread_cache_size=16
log-bin=MysqLbin-log#开启binlog
binlog_cache_size=32M
innodb_file_per_table#独立表空间模式
explicit_defaults_for_timestamp=true

初始化MysqL
MysqL_install_db--user=MysqL--data=/var/lib/MysqL/

启动MysqL
serviceMysqLdstart
chkconfigMysqLdon

导入zabbix库

MysqL-uroot-p
MysqL>CREATEDATABASEzabbixCHARACTERSETutf8COLLATEutf8_bin;
MysqL>GRANTALLPRIVILEGESONzabbix.*TOzabbix@localhostIDENTIFIEDBY'zabbix';
MysqL>flushprivileges;
MysqL>showdatabases;
+--------------------+
|Database|
+--------------------+
|information_schema|
|MysqL|
|performance_schema|
|zabbix|
+--------------------+

MysqL-uzabbix-pzabbixzabbix<database/MysqL/schema.sql
MysqL-uzabbix-pzabbixzabbix<database/MysqL/images.sql
MysqL-uzabbix-pzabbixzabbix<database/MysqL/data.sql

(3)安装apache
yuminstallhttpdlibxml2-develnet-snmp-devellibcurl-devel


(4)安装zabbix
groupaddzabbix
useradd-gzabbix-m-s/sbin/nologin
wgethttp://sourceforge.net/projects/zabbix/files/ZABBIX%20Latest%20Stable/3.0.3/zabbix-3.0.3.tar.gz
tarzxvfzabbix-3.0.3.tar.gz
cdzabbix-3.0.3
./configure--prefix=/usr/local/zabbix--sysconfdir=/etc/zabbix/--enable-server--enable-agent--with-net-snmp--with-libcurl--with-MysqL--with-libxml2
make&&makeinstall

(5)配置zabbix_server
vim/etc/zabbix/zabbix_server.conf
DBHost=localhost数据库ip地址
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
ListenIP=192.168.10.10zabbixserverip地址
StartIPMIPollers=10
StartPollersUnreachable=10
StartTrappers=10
StartPingers=10
StartDiscoverers=10
CacheSize=256M
StartDBSyncers=40
HistoryCacheSize=128M
TrendCacheSize=128M
HistoryTextCacheSize=128M
ValueCacheSize=128M
Timeout=30
AlertScriptsPath=/etc/zabbix/alertscripts//修改
ExternalScripts=/etc/zabbix/externalscripts//修改
LogSlowQueries=10000
StartProxyPollers=50

mkdir/etc/zabbix/alertscripts
mkdir/etc/zabbix/externalscripts

ln-s/usr/local/zabbix/sbin/*/usr/sbin/
cp/home/sources/zabbix-3.0.3/misc/init.d/fedora/core/zabbix_*/etc/init.d/#复制服务启动脚本
chmod+x/etc/init.d/zabbix_*
sed-i"s@BASEDIR=/usr/local@BASEDIR=/usr/local/zabbix@g"/etc/init.d/zabbix_server

(6)配置web
vim/etc/httpd/conf/httpd.conf
ServerName127.0.0.1
DocumentRoot"/var/www/html"
mkdir-p/var/www/html/zabbix
cp-r/home/sources/zabbix-3.0.3/frontends/PHP/*/var/www/html/zabbix/
chown-Rapache.apache/var/www/html/zabbix/
chkconfigzabbix_serveron
chkconfighttpdon
chkconfigMysqLdon
/etc/init.d/zabbix_serverstart
servicehttpdrestart

用浏览器访问http://10.200.11.226/zabbix/setup.PHP
用户名Admin密码zabbix
注意:为了确保安全,在安装成功后要将setup.PHP重命名
cd/var/www/html/zabbix
cpsetup.PHPsetup.PHPbak
原文链接:https://www.f2er.com/centos/381558.html

猜你在找的CentOS相关文章