centos7 LAMP环境安装zabbix3.0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 LAMP环境安装zabbix3.0相关的知识,希望对你有一定的参考价值。

zabbix3.0要求的php、数据库、Apache/nginx的版本参考:

zabbix3.0对PHP、数据库、nginx/apache版本要求参考:

https://www.zabbix.com/documentation/3.0/manual/installation/requirements


本次安装的系统环境为centos7.2,lamp。第一次安装使用的版本是centos6.6,lnmp。安装后均可正常使用。

mysql版本

[[email protected] ~]# mysql -v
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 4572
Server version: 5.5.52-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Reading history-file /root/.mysql_history
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

创建zabbix库,授权zabbix用户

create database zabbix default charset utf8;
grant all privileges on zabbix.* to [email protected]‘localhost‘ identified by ‘zabbix‘;
flush privileges;
MariaDB [(none)]> show databases;
+--------------------+
| Database     |
+--------------------+
| information_schema|
| mysql       |
| performance_schema|
| zabbix      |
+--------------------+
4 rows in set (0.03 sec)

php安装

yum install php php-fpm php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xmlrpc php-mbstring php-bcmath -y
[[email protected] ~]# php -v
PHP 5.4.16 (cli) (built: Nov  6 2016 00:29:02) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies

vim /etc/php.ini
date.timezone = Asia/Shanghai
post_max_size = 16M
max_execution_time = 300
max_input_time = 300

启动php-fpm

apache为yum安装

vim /etc/httpd/conf/httpd.conf
#把配置地址修改为将要安装的zabbix位置,
DocumentRoot "/var/www/html/zabbix-3.0.9"
ServerSignature On
#增加对.php的默认
DirectoryIndex index.html index.php

#进行部分优化
Options Includes ExecCGI FollowSymLinks
Options FollowSymLinks
AllowOverride All
MaxKeepAliveRequests 500
AddDefaultCharset GB2312
max_execution_time = 300
systemctl restart httpd.service

创建test.php验证php是否正常

echo "<?php phpinfo(); ?>" > /var/www/html/zabbix/test.php

显示phpinfo界面为正常,然后删除test.php

安装zabbix

下载zabbix3.0 LTS,下载速度有点慢,建议用其他工具下载本地后,rz上传

wget https://sourceforge.net/projects/zabbix/files/ZABBIX%20Latest%20Stable/3.0.9/zabbix-3.0.9.tar.gz
tar zxf zabbix-3.0.9.tar.gz && cd zabbix-3.0.9
./configure --prefix=/usr/local/zabbix-3.0.9/ --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl --with-libxml2
make && make install

创建zabbix用户

groupadd zabbix
useradd zabbix -s /sbin/nologin -M -g zabbix

导入3个sql文件到zabbix数据库

mysql -uroot -p zabbix < database/mysql/schema.sql
mysql -uroot -pzabbix < database/mysql/images.sql
mysql -uroot -p zabbix < database/mysql/data.sql

编辑zabbix_server.conf

vim /usr/local/zabbix-3.0.9/etc/zabbix_server.conf
LogFile=/tmp/zabbix_server.log
PidFile=/tmp/zabbix_server.pid
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix

启动zabbix_server

/usr/local/zabbix-3.0.9/sbin/zabbix_server

访问网页进行安装,中间一个步骤需要下载文件并上传,上传后需修改所属。

本文出自 “linux笔记” 博客,请务必保留此出处http://darius2017.blog.51cto.com/10843028/1924329

以上是关于centos7 LAMP环境安装zabbix3.0的主要内容,如果未能解决你的问题,请参考以下文章

Centos7yum安装zabbix3.0

Zabbix3.0安装与部署(centos7)

CentOS 7安装zabbix3.0

CentOS7+LNMP 安装Zabbix3.0 安装笔记

zabbix3.0安装教程(环境)

zabbix3.0 LNMP安装部署 centos7