Yes, I know there are a lot of "zabbix server is not running the information may not be current" posts about, however:
and the zabbix_server.conf
Not one of them has root as the DBUser 
To set up the database, I did:
What the heck is going on?
Originally posted by /tmp/zabbix_server.log
/etc/zabbix/zabbix_server.conf
/root/zabbix-2.4.6/conf/zabbix_server.conf
/usr/local/etc/zabbix_server.conf
/root/zabbix-2.4.6/conf/zabbix_server.conf
/usr/local/etc/zabbix_server.conf

To set up the database, I did:
Code:
mysql -uroot -p create database zabbix character set utf8 collate utf8_bin; grant all privileges on zabbix.* to zabbix@localhost identified by '<password>'; quit; mysql -uzabbix -p zabbix < schema.sql mysql -uzabbix -p zabbix < images.sql mysql -uzabbix -p zabbix < data.sql

Comment