Tag: debian

Python Versions

Even though I’ve used Python programming language on-and-off since about year 2000, I only started paying more attention to specific Python versions around 2016 when I gradually started using Python more seriously in devops. When dealing with different runtime environments it is crucial to know which features are available in which Python versions. This page […]

Moving Zabbix Database

In the series “why wouldn’t I put this out public instead of just saving it to my own notes”: Moving the Zabbix database to a new database server. Step 1: Dumping the current database # mysqldump –single-transaction zabbix | gzip > /mnt/zbx-dump.sql.gz No need to stop Zabbix for this. Add –user and –host and similar […]