|
ZABBIX WEB Interface |
Configure WEB interface
As user zabbix (or whatever you decided to name your dedicated ZABBIX account), do the following:
- 1. Change these values in frontends/php/include/db.inc.php:
$DB_TYPE =”POSTGRESQL”; /* Or “MYSQL” for MySQL */
$DB_SERVER =”localhost”;
$DB_DATABASE =”zabbix”;
$DB_USER =””;
$DB_PWD =””
2. Copy the PHP source files to a place where your web server can get to it. Perhaps /home/zabbix/html or
/home/zabbix/public_html or /var/www/html/zabbix, etc.
For example:
shell> mkdir /home/zabbix/html
shell> cp -R frontends/php/* /home/zabbix/html/
|
|