Guest User

Untitled

a guest
Jan 18th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. 1951:20190116:044530.834 [Z3001] connection to database 'zabbix' failed: [1045] Access denied for user 'zabbix'@'localhost' (using password: YES)
  2.  
  3. global $DB;
  4.  
  5. $DB['TYPE'] = 'MYSQL';
  6. $DB['SERVER'] = '127.0.0.1';
  7. $DB['PORT'] = '0';
  8. $DB['DATABASE'] = 'zabbixdb';
  9. $DB['USER'] = 'zabbixuser';
  10. $DB['PASSWORD'] = '[my_pass_here]';
  11.  
  12. // Schema name. Used for IBM DB2 and PostgreSQL.
  13. $DB['SCHEMA'] = '';
  14.  
  15. $ZBX_SERVER = '127.0.0.1';
  16. $ZBX_SERVER_PORT = '10051';
  17. $ZBX_SERVER_NAME = 'SV Zabbix Server';
  18.  
  19. $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
  20.  
  21. GRANT ALL PRIVILEGES ON `zabbixdb`.* TO 'zabbixuser'@'localhost'
Add Comment
Please, Sign In to add comment