我已经安装了 cacti 来监控我的系统。安装很简单,一切顺利。
但是当我尝试访问时127.0.0.1/cacti
出现此错误
这是我第一次使用 apache,请帮忙解决这个错误。
这是配置文件,
Alias /cacti /usr/share/cacti/site
<Directory /usr/share/cacti/site>
Options +FollowSymLinks
AllowOverride None
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order Allow,Deny
Allow from all
</IfVersion>
AddType application/x-httpd-php .php
<IfModule mod_php.c>
php_flag magic_quotes_gpc Off
php_flag short_open_tag On
php_flag register_globals Off
php_flag register_argc_argv On
php_flag track_vars On
# this setting is necessary for some locales
php_value mbstring.func_overload 0
php_value include_path .
</IfModule>
DirectoryIndex index.php
</Directory>
此文件是在安装过程中自动创建的。我从这里安装了它,https://www.server-world.info/en/note?os=Ubuntu_16.04&p=cacti
答案1
您的系统上未安装软件包 php-xml。请使用软件包管理器(apt、yum 等)进行安装。