Cacti Frequently Asked Questions (FAQ)

Using Cacti

How do I create traffic graphs?

Before you can create traffic graphs, Cacti must have working SNMP support. One way to do this is to compile PHP with SNMP support built in, many times you can install the 'php-snmp' package to do this. The second option is to have Cacti call the snmpget and snmpwalk binaries from your ucd-snmp or net-snmp installation. You can use the about page to determine whether to are using "built-in" or "external" SNMP support.

Now that you have working SNMP support, follow these steps.

1. Click "Polling Hosts" on Cacti's menu.

2. Click "Add" to add a new polling host.

3. Type a description, hostname, management IP, and SNMP community. Make sure to select "Generic SNMP-enabled Host" under "Host Template" and click "Create".

4. You should see one or more interfaces listed under the "Data Query [SNMP - Interface Statistics]" box. Place a check next to each interface that you want to graph. Below the box, select type of graph that you want to create (bits, bytes, summation, etc).

5. Click "Save", and "Create" on the following screen to create your graphs.

General

I get the following error message from Cacti: Warning: Undefined variable: _SERVER in .../cacti/install/index.php on line 59

Cacti 0.8 and above requires that you have at least PHP 4.1 or greater installed.

I get the following error message from Cacti: Fatal error: Call to undefined function: mysql_connect() in /usr/share/cacti/include/database.php on line 19

Your installation of PHP does not have MySQL installed or enabled. On binary-based distributions, make sure you have the 'php-mysql' package installed. Also make sure that 'extension=mysql.so' is uncommented in your php.ini file.

I have forgotten my 'admin' password to Cacti, how do I reset it?

To reset the admin account password back to the default of 'admin', connect to your Cacti database at the command line.

shell> mysql -u root -p cacti

Now execute the following SQL:

mysql> update user_auth set password='21232f297a57a5a743894a0e4a801fc3' where username='admin';

Monitoring

I am polling thousands of items and cmd.php takes more than 5 minutes to run.

Give cactid, the future replacement for cmd.php a try. Unlike cmd.php, cactid is written in c and makes use of pthreads. On a typical installation, it is not uncommon for cactid to poll about 500 items in less then 10 seconds.

I changed x, and now some of my graphs are not updating.

The best thing to do here is to force Cacti to rebuild its poller cache. To do this click "Utilities" on the Cacti menu, and simply select "Clear Poller Cache".

I am using Redhat 8.0 and SNMP is not working.

Redhat 8.0 comes with a broken php-snmp package. Updating your 'php-snmp' and 'net-snmp' packages to their latest versions should fix this problem.

How do I configure net-snmp so it will work with Cacti?

Run snmpconf -g basic_setup and follow the prompts. Also check that the file being used by snmpd is the correct config file. For Redhat Linux, snmpconf creates the /etc/snmpd.conf, but snmpd uses /etc/snmpd/snmpd.conf.

If this doesn't work a very simple config file is:

# contact
syslocation Something
syscontact "root@someone.com"

# auth
rocommunity public

# disk monitoring
disk /

Graphs

I just installed Cacti and all of my graphs appear as broken images.

For you to actually get graph images, cmd.php must run at least once so it can create .rrd files in Cacti's 'rra/' directory. Double check that you configured your /etc/crontab file to execute cmd.php every five minutes. Also make sure that the user cmd.php runs as has permission to create new files in Cacti's 'rra/' directory.

If all of your settings appear correct, try running cmd.php manually by cd'ing to Cacti's directory and typing:

shell> php cmd.php

If you have files in your 'rra/' directory, but your graphs still appear as broken images, you should enable graph debug mode see exactly why the graphs are not rendering. To do this go into Cacti, select "Graph Management" from the menu, select any graph listed, and select "Turn On Graph Debug Mode".

My graphs render, but they do not contain any data.

More often than not, this problem's cause is permissions. For instance if you run cmd.php manually as root for testing, any .rrd files that it creates will be owned by root. Now when cmd.php runs from cron, it will not be able to update these .rrd files because they are owned by root. You can double check the owner of your .rrd files by running the following command in your Cacti directory:

shell> ls -al rra/

If only some of your graphs are not updating correctly, double check the "Maximum Value" field for all data sources used by these graphs. If the value being fed to the .rrd file exceeds its "Maximum Value", RRDTool will insert an "Unknown" and you will see no data on the graph.

A lot of my graphs contain long ifAlias names, but they are being truncated to 15 characters.

Cacti does this by default to better control graph title formatting. You can change this limit, by going to "Cacti Settings" on the Cacti menu, selecting the "Visual" tab, and changing the value for "Data Queries - Maximum Field Length".

One of my devices rebooted and now I have a huge spike on my graph!

This occurs because the reboot causes SNMP's counters to reset, which can cause a rather large spike on the graph when RRDTool tries to determine the change between the new small counter value and the large previous value. One way to combat this issue is to specify realistic maximum values for your data sources. RRDTool will ignore any value that is larger than the maximum value.

If you already have a spike on one or more of your graphs, there is a really useful Perl script that will remove them for you.

Windows Related

I get the following error message from Cacti: Fatal error: Cannot redeclare title_trim() (previously declared in ...\cacti\include\functions.php:27)

Contrary to previous versions of Cacti, you must not put Cacti in your PHP include path. Check your php.ini file to make sure there is not something like 'include_path = C:/Apache2/htdocs/cacti'.