Ubuntu14.04 x64 zabbix 3.0 安装
苦于网上的文档很多,但是对初学者来说,很多都搭建不成功,我重新安装一下。记录一下。
下载deb
wgethttp://repo.zabbix.com/zabbix/3.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.0-1+trusty_all.deb dpkg-izabbix-release_3.0-1+trusty_all.deb apt-getupdate
1.安装服务端
sudoapt-getinstall-yzabbix-server-MysqLPHP5-MysqLzabbix-frontend-PHP
我之前安装了MysqL,此时没有安装在安装MysqL,且设置了密码
1.1配置zabbix_server.conf
# cat /etc/zabbix/zabbix_server.conf
修改如下几个参数
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
快速替换,
sed-i"s@#DBHost=localhost@DBHost=localhost@g"/etc/zabbix/zabbix_server.conf sed-i"s@#DBPassword=@DBPassword=zabbix@g"/etc/zabbix/zabbix_server.conf cat/etc/zabbix/zabbix_server.conf|egrep"DBHost|DBName|DBUser|DBPassword"|grep-v"#"
由于DBName和DBUser默认就设置好了,我没有在替换
1.2设置MysqL
Mysql默认的root登陆密码就是root
MysqL>createdatabasezabbixcharactersetutf8collateutf8_bin; MysqL>grantallprivilegesonzabbix.*tozabbix@localhostidentifiedby'zabbix'; MysqL>flushprivileges; cd/usr/share/doc/zabbix-server-MysqL zcatcreate.sql.gz|MysqL-uroot-pzabbix sudocp-r/usr/share/zabbix/var/www/html/zabbix servicezabbix-serverrestart
1.3修改服务端配置信息
1.3.1配置PHP@H_502_146@
sudo vim /etc/PHP5/apache2/PHP.ini修改项:
post_max_size=16M max_execution_time=300 max_input_time=300 date.timezone="Asia/Shanghai"
修改完成后重启apache2
sudoserviceapache2restart
1.3.2网页端配置@H_502_146@
直接按照网页端配置执行。
地址:http://ip/zabbix
用户名密码:Admin/zabbix
默认账号是Admin密码是zabbix。
@H_404_234@安装的时候碰见的问题总结。
FAQ:
1、apache2:Couldnotreliablydeterminetheserver'sfullyqualifieddomainname解决方法
vim/etc/apache2/apache2.conf
最后加入一句 ServerName localhost:80
sudoapt-getinstalllanguage-pack-zh-hantlanguage-pack-zh-hans
3、zabbix中文乱码
http://www.ttlsa.com/zabbix/zabbix-chinese-garbled-ttlsa/
1.dpkg-reconfigure locales #选择系统语言包
#必须选择的en_US.UTF-8/zh_CN.UTF-8
2.在选择系统环境语言时,必须有必要选en_US.UTF-8
#check zabbix配置
vim /usr/share/zabbix/include/locales.inc.PHP
找到getLocales()函数检查zh_CN是否为True
Debian就可以这样解决
4.zabbix切换中文
You are not able to choose some of the languages,because locales for them are not installed on the web server.
apt-getinstall-ylanguage-pack-kde-zh-hans sudoserviceapache2restart原文链接:https://www.f2er.com/ubuntu/354921.html