zabbix使用tomcat进行web配置
tomcat安装和zabbix设置
tomcat的安装不做阐述,我是将已有的tomcat直接复制过来进行配置。
配置zabbix非常简单,进入zabbix压缩包的解压目录:
cp -r frontends/php/* /tomcat/webapps/zabbix/
在tomcat的webapps目录下新建zabbix文件夹,将zabbix的php文件拷到这个目录下,必要时对相关文件进行权限修改:chmod 755,之后重新启动tomcat即可。访问http://10.x.x.107:8082/zabbix/setup.php 就可以看到zabbix的初始页面
zabbix初始化检查
参数错误
在访问zabbix初始页面后,到第二步会进行初始检查,得到错误信息如下:
Minimum required size of PHP post is 16M (configuration option "post_max_size").
Minimum required limit on execution time of PHP scripts is 300 (configuration option "max_execution_time").
Minimum required limit on input parse time for PHP scripts is 300 (configuration option "max_input_time").
Time zone for PHP is not set (configuration parameter "date.timezone").
PHP bcmath extension missing (PHP configuration parameter --enable-bcmath).
PHP gd JPEG image support missing.
PHP gd FreeType support missing.
PHP option "post_max_size" 8M 16M Fail
PHP option "max_execution_time" 30 300 Fail
PHP option "max_input_time" 60 300 Fail
PHP option "date.timezone" unknown Fail
PHP bcmath off Fail
前四个参数按照提示,修改/etc/php.ini中的参数:
post_max_size=16M
max_execution_time=300
max_input_time=300
date.timezone =Asia/Shanghai
修改完成重启php服务:
systemctl restart php-fpm
重新安装bcmatn
错误提示bcmath扩展缺失,所以需要重新安装。
通过