centos6.5安装配置zabbix3.0.3
1.首先要準(zhǔn)備LAMP環(huán)境。
(1)安裝php Zabbix 3.0對(duì)PHP的要求最低為5.4,而CentOS6默認(rèn)為5.3.3,完全不滿足要求,故需要利用第三方源,將PHP升級(jí)到5.4以上 rpm -ivh http://repo.webtatic.com/yum/el6/latest.rpm yum install php56w php56w-gd php56w-mysql php56w-bcmath php56w-mbstring php56w-xml php56w-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 -ivh http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm yum install -y mysql-server mysql-devel mysql 配置,根據(jù)需求來,這里我簡(jiǎn)化了 vim /etc/my.cnf max_connections = 3000 實(shí)際MySQL服務(wù)器允許的最大連接數(shù)16384; sort_buffer_size = 2M thread_cache_size = 16 log-bin=mysqlbin-log #開啟binlog binlog_cache_size = 32M innodb_file_per_table #獨(dú)立表空間模式 explicit_defaults_for_timestamp=true初始化mysql
mysql_install_db --user=mysql --data=/var/lib/mysql/
啟動(dòng)mysql
service mysqld start
mysql -uzabbix -pzabbix zabbix < database/mysql/schema.sql
mysql -uzabbix -pzabbix zabbix < database/mysql/images.sql mysql -uzabbix -pzabbix zabbix < database/mysql/data.sql
(3)安裝apache
yum?install?httpd?libxml2-devel?net-snmp-devel?libcurl-devel
(4)安裝zabbix groupadd zabbix useradd -g zabbix -m -s /sbin/nologin wget http://sourceforge.net/projects/zabbix/files/ZABBIX%20Latest%20Stable/3.0.3/zabbix-3.0.3.tar.gz tar zxvf zabbix-3.0.3.tar.gz cd zabbix-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 &&make install
(5)配置zabbix
vim /etc/zabbix/zabbix_server.conf DBHost=localhost 數(shù)據(jù)庫(kù)ip地址 DBName=zabbix DBUser=zabbix DBPassword=zabbix ListenIP=192.168.10.10 zabbix server ip地址 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
ln -s /usr/local/zabbix/sbin/* /usr/sbin/
cp /home/sources/zabbix-3.0.3/misc/init.d/fedora/core/zabbix_* /etc/init.d/ #復(fù)制服務(wù)啟動(dòng)腳本
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 ServerName 127.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 -R apache.apache /var/www/html/zabbix/ chkconfig zabbix_server on chkconfig httpd on chkconfig mysqld on /etc/init.d/zabbix_server start service httpd restart(7)訪問
http://10.200.11.226/zabbix/setup.php
用戶名 Admin 密碼 zabbix
注意:為了確保安全,在安裝成功后要將setup.php重命名
cd /var/www/html/zabbix
cp setup.php setup.phpbak
轉(zhuǎn)載于:https://www.cnblogs.com/fujinzhou/p/5684616.html
總結(jié)
以上是生活随笔為你收集整理的centos6.5安装配置zabbix3.0.3的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [转]retina屏下支持0.5px边框
- 下一篇: 第二次冲刺每日站立会议03