首页 > 代码库 > Zabbix在centos7下的epel源安装
Zabbix在centos7下的epel源安装
Zabbix在centos7下的epel源安装
上次对zabbix进行初步安装测试后,由于有其他项目所以未继续研究,现在终于空闲了下来,忙里偷闲,研究下。
centos7已安装epel源。
- 安装mysql服务器yum install mariadb mariadb-server
- 安装zabbix (会自动安装apache php) yum install zabbix22-dbfiles-mysql.noarch zabbix22-server-mysql zabbix22-server zabbix22-web-mysql.noarch zabbix22-web
- 运行zabbix_agentd
zabbix_server
报错zabbix_server [2837]: user zabbix does not exist
zabbix_server [2837]: cannot run as root!
安装代理 yun install zabbix22-agent
错误变为zabbix_server [2925]: cannot open [/var/log/zabbixsrv/zabbix_server.log]: [13] Permission denied
新建日志文件并授权
touch /var/log/zabbixsrv/zabbix_server.log
chown zabbix /var/log/zabbixsrv/zabbix_server.log
报错zabbix_server [3704]: cannot create PID file [/run/zabbixsrv/zabbix_server.pid]: [13] Permission denied
新建运行文件并授权
Touch /run/zabbixsrv/zabbix_server.pid
chown zabbix /run/zabbixsrv/zabbix_server.pid
报错 [Z3001] connection to database ‘zabbix‘ failed: [1044] Access denied for user ‘‘@‘localhost‘ to database ‘zabbix‘
13061:20141211:111949.698 Cannot connect to the database. Exiting...
创建数据库用户名,导入数据库
mysql_secure_installation #设置root密码
create database zabbix default charset utf8; #创建数据库
GRANT ALL PRIVILEGES ON zabbix.* to ‘zabbix‘@‘localhost‘identified by‘zabbix‘ ; #创建用户名密码
flush PRIVILEGES; #刷新权限
cd /usr/share/zabbix-mysql/
mysql -u root -p zabbix<schema.sql
mysql -u root -p zabbix<images.sql
mysql -u root -p zabbix<data.sql
修改配置文件里面的用户名和密码 vim /etc/zabbix_server.conf
DBUser=zabbix
DBPassword=‘zabbix‘
尝试运行一下
Ok。
然后设置web端
输入http://ip/zabbix,点击下一步
设置php.ini
post_max_size =16m
max_execution_time=300
max_input_time=300
date.timezone =PRC
输入设置的mysql用户名密码
进入后报错
Selinux问题,a、解决办法关闭selinux setenforce 0
B、设置httpd_can_network_connect 参数为打开
setsebool -P httpd_can_network_connect on
4、设置服务自启动并启动服务。
systemctl enable httpd.service mariadb.service
systemctl start httpd.service mariadb.service
5、设置并启动防火墙
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-port=10051/tcp
firewall-cmd --permanent --add-port=10050/tcp
firewall-cmd reload
6、设置中文显示
Vim /usr/share/zabbix/include/locales.inc.php
zh_CN 设置成 true
vim /usr/share/zabbix/include/defines.inc.php
找到C:\Windows\Fonts\simkai.ttf上传到/usr/share/ fonts/dejavu目录下,然后执行以下操作
修改DejaVuSans 为simkai
最后 在组态 主机 里面 启用zabbix server.
ps:
http://www.niubilety.com/2014/10/20/70.html
http://www.ttlsa.com/zabbix/follow-ttlsa-to-study-zabbix/
Zabbix在centos7下的epel源安装