cacti中的thold模块是和monitor以及settings模块一起导入数据库的
这是数据库中的表
mysql> show tables;
+--------------------------------+
| Tables_in_cacti |
+--------------------------------+
| cdef |
| cdef_items |
| colors |
| data_input |
| data_input_data |
| data_input_fields |
| data_local |
| data_template |
| data_template_data |
| data_template_data_rra |
| data_template_rrd |
| graph_local |
| graph_template_input |
| graph_template_input_defs |
| graph_templates |
| graph_templates_gprint |
| graph_templates_graph |
| graph_templates_item |
| graph_tree |
| graph_tree_items |
| host |
| host_graph |
| host_snmp_cache |
| host_snmp_query |
| host_template |
| host_template_graph |
| host_template_snmp_query |
| plugin_config |
| plugin_db_changes |
| plugin_hooks |
| plugin_realms |
| plugin_thold_contacts |
| plugin_thold_log |
| plugin_thold_template_contact |
| plugin_thold_threshold_contact |
| poller |
| poller_command |
| poller_item |
| poller_output |
| poller_reindex |
| poller_time |
| rra |
| rra_cf |
| settings |
| settings_graphs |
| settings_tree |
| snmp_query |
| snmp_query_graph |
| snmp_query_graph_rrd |
| snmp_query_graph_rrd_sv |
| snmp_query_graph_sv |
| thold_data |
| thold_template |
| user_auth |
| user_auth_perms |
| user_auth_realm |
| user_log |
| version |
+--------------------------------+
而且都在include/config.php和include/global.php中都添加了$plugins =array()
$plugins [] = 'settings';
$plugins [] = 'thold';
$plugins [] = 'monitor';
我的三个模块的权限有关系吗
drwxr-xr-x 4 root cacti 4096 Sep 19 12:04 monitor
drwxr-xr-x 3 root cacti 4096 Sep 19 12:31 settings
drwxr-xr-x 5 apache cacti 4096 Jun 13 2010 thold
结果访问了http://nj23:8080/cacti却只显示monitor没有了thold模块,葛老师麻烦您给帮忙分析分析