One of the many reasons I have held onto Zabbix 3.0 LTS is because the now function in maintenance windows. This is very useful when I need to put something into maintenance for a specific time period. The lack of this has held me off for many years from wanting to upgrade. Finally I got …
Tag: Zabbix
Zabbix 3.0 on Ubuntu 16.04 with Percona
After upgrading to Ubuntu 16.04, I couldn’t get Zabbix to run and was receiving the following
1 |
zabbix-server[3962]: /opt/sbin/zabbix_server: /usr/lib/libmysqlclient.so.18: version `libmysqlclient_18' not found (required by /opt/sbin/zabbix_server) |
To fix this I needed to symlink the perconaclient library to the mysql client libraries that Zabbix was expecting.
1 2 3 4 5 |
apt-get install libperconaserverclient18 ln -s /usr/lib/x86_64-linux-gnu/libperconaserverclient.so.18 /usr/lib/libmysqlclient.so.18 ln -s /usr/lib/x86_64-linux-gnu/libperconaserverclient_r.so.18 /usr/lib/libmysqlclient_r.so.18 service zabbix-server restart service zabbix-agent restart |