Cacti requires:
shell> tar xzvf cacti-version.tar.gz
shell> mysqladmin create cacti
shell> mysql cacti < cacti.sql
shell> mysql --user=root mysql
mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'somepassword';
mysql> flush privileges;
Specify the MySQL user, password and database for your cacti configuration.
$database_default = "cacti";
$database_hostname = "localhost";
$database_username = "cactiuser";
$database_password = "cacti";
Make sure you have the following options set in your php.ini file:
register_globals = On
register_argc_argv = On
shell> chown cactiuser rra/ log/
(Enter a valid username for cactiuser, this user will also be used in the next step for data gathering.)
*/5 * * * * cactiuser php /var/www/html/cacti/cmd.php > /dev/null 2>&1
http://your-server/cacti/
Log in the with a username/password of admin. You will be required to change this password immediatly. Make sure to fill in all of the path variables carefully and correctly on the following screen.