Here's what I get when I try to connect to http://myserver/cacti/ :
The obvious answer is, "You fool, you need to set the proper password in your include/config.php file." In fact, this is the relevant snippet from that file:Warning: Access denied for user: 'cactiuser@localhost' (Using password: YES) in /usr/local/cacti-0.6.8/include/database.php on line 19
Warning: MySQL Connection Failed: Access denied for user: 'cactiuser@localhost' (Using password: YES) in /usr/local/cacti-0.6.8/include/database.php on line 19
Cannot connect to MySQL server on localhost
And when I try the following, I can connect, no probs:$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cacti";
Now for my lame attempt at debugging it: I tried to change the value of $database_username to some other string, and when I went to reload the page, it still insists that I'm trying to connect as cactiuser. I thought that *maybe* something might have possibly been cached in Apache, so I restarted it. No effect.$ mysql -u cactiuser -pcacti
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 95 to server version: 3.23.49
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
Other useful info:
If anyone has any suggestions, let me know.$ uname -a
Linux webmonk 2.4.18-3 #1 Thu Apr 18 07:37:53 EDT 2002 i686 unknown
$ cat /proc/version
Linux version 2.4.18-3 (bhcompile@daffy.perf.redhat.com) (gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-110)) #1 Thu Apr 18 07:37:53 EDT 2002
Kneebone