# vim /etc/zabbix/zabbix_server.conf DBHost=localhost DBName=zabbix DBUser=zabbix DBPassword=zabbix 实际上我的配置文件修改的是DBHost和DBPassword去掉前面的#号。
启动zabbix服务,设置开机自启动
#systemctl start zabbix-server #systemctl enable zabbix-server
7.编辑zabbix前端的PHP配合配置
php_value max_execution_time 300 php_value memory_limit 128M php_value post_max_size 16M php_value upload_max_filesize 2M php_value max_input_time 300 php_value always_populate_raw_post_data -1 php_value date.timezone Asia/Shanghai //主要去掉# 改成上海
调整时间同步:安装 ntpdate , yum -y install ntpdate
#ntpdate cn.pool.ntp.org
启动apache服务,设置开机自启动
#systemctl start httpd #systemctl enable httpd
8.登陆zabbix
http://IP/zabbix/
默认用户名/密码:Admin/zabbix
图片下文字显示□□ 解决方法:
参考:
http://
Win+R打开运行,输入fonts,回车进入Windows字体目录,找到微软雅黑-常规字体,复制出来将文件名修改为msyh.ttf,然后上传到/usr/share/zabbix/fonts
上传成功后,编辑
vim /usr/share/zabbix/include/defines.inc.php 将'graphfont' 修改为msyh
修改后 define('ZBX_GRAPH_FONT_NAME', 'msyh'); // font file name
也可直接执行命令:
查看字体配置# grep FONT_NAME /usr/share/zabbix/include/defines.inc.php -n 45:define('ZBX_GRAPH_FONT_NAME', 'graphfont'); // font file name 93:define('ZBX_FONT_NAME', 'graphfont'); 确认字体名称是否可以替换 # grep graphfont /usr/share/zabbix/include/defines.inc.php -n 45:define('ZBX_GRAPH_FONT_NAME', 'graphfont'); // font file name 93:define('ZBX_FONT_NAME', 'graphfont'); 执行快捷替换 # sed -i "s/graphfont/msyh/g" /usr/share/zabbix/include/defines.inc.php 确认是否替换成功 # grep FONT_NAME /usr/share/zabbix/include/defines.inc.php -n 45:define('ZBX_GRAPH_FONT_NAME', 'msyh'); // font file name 93:define('ZBX_FONT_NAME', 'msyh');
一些Zabbix相关教程集合:
Ubuntu 14.04下Zabbix2.4.5 源码编译安装 .com/Linux/2015-05/117657.htm
CentOS 7.0 x64下Zabbix 3.0 安装笔记