If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
The install instructions on section 2.4.5 say to point your browser to the zabbix url... but what is the default? I tried http://localhost, http://localhost:10051 i tried ~zabbix and nothing!!
Just must say: insturctions on setting up web-server are beyond the zabbix installation manual.
You must read attentively the instructions of your desired web-server software (apache or nginx or MS IIS, etc.) and follow it to set web frontend of zabbix up.
and then inside of that has a folder "include" with a file db.inc.php that probably will need to be edited with your database specific info so that the frontend can get to the database.
As far as the error, it sounds like you don't have the php-mysql module installed on your webserver (I'm assuming your using apache..?) get that installed and you should be another step closer.. hopefully all up and running.
I found this on PHP's website referring to Mysql.. so depending on your version of PHP you'll do one of the two things..
Installation on Linux Systems
PHP 4
The option --with-mysql is enabled by default. This default behavior may be disabled with the --without-mysql configure option. If MySQL is enabled without specifying the path to the MySQL install DIR, PHP will use the bundled MySQL client libraries.
Users who run other applications that use MySQL (for example, auth-mysql) should not use the bundled library, but rather specify the path to MySQL's install directory, like so: --with-mysql=/path/to/mysql. This will force PHP to use the client libraries installed by MySQL, thus avoiding any conflicts.
PHP 5+
MySQL is not enabled by default, nor is the MySQL library bundled with PHP. Read this FAQ for details on why. Use the --with-mysql[=DIR] configure option to include MySQL support. You can download headers and libraries from MySQL.
Comment