Advanced Zabbix Database Management
Whether you’ve been using Zabbix for a while or you are looking toward setting up your first production instance, database management is important right from the start. A lot of the time, people set up their Zabbix database and don’t know yet that it will be a big database. The Zabbix housekeeper just can’t keep up when your database grows beyond a certain size, and that’s when we need to look for different options.
In this chapter, we’ll look into keeping our Zabbix database from using up 100% disk space when the Zabbix housekeeper is not keeping up. For MySQL users, we’ll look into using database partitioning to keep our database in check. For PostgreSQL users, we’ll look toward the TimescaleDB support. Last but not least, we’ll also check out how to secure our connection between the Zabbix server and the database.
We’ll do all this in the following recipes:
- Setting up...