you can try creating a mysql database dump :
transfer it to another machine. later you can restore it with :
make sure that zabbix server is not running while the restore is happening
Code:
mysqldump zabbix | bzip2 -9 > dbdump.bz2
Code:
bzcat dbdump.bz2 | mysql zabbix
Comment