如何在 Debian 11 上安装Cacti

Cacti 是最受欢迎的开源、基于 Web 的网络监控和绘图工具之一,您可以使用它来几乎实时跟踪您的网络性能。您还可以配置 Cacti 来轮询 SNMP 设备、流量计数器、路由器、服务器等。cacti-logo

Debian 11 Bullseye 上安装 Cacti

步骤 1. 在我们安装任何软件之前,通过apt在终端中运行以下命令来确保您的系统是最新的很重要:

sudo apt update
sudo apt upgrade

步骤 2. 安装 LAMP 堆栈。

需要 Debian 11 LAMP 服务器。如果您没有安装 LAMP,在 Debian 11 上安装LAMP 服务器

步骤 3. 安装 SNMP。

现在运行以下命令在您的 Debian 系统上安装 SNMP 软件包:

sudo apt install snmp php-snmp rrdtool librrds-perl

步骤 4. 配置 MariaDB。

默认情况下,MariaDB 未加固。您可以使用mysql_secure_installation脚本保护 MariaDB 。您应该仔细阅读以下每个步骤,这些步骤将设置 root 密码、删除匿名用户、禁止远程 root 登录以及删除测试数据库和访问安全 MariaDB 的权限:

mysql_secure_installation

像这样配置它:

- Set root password? [Y/n] y
- Remove anonymous users? [Y/n] y
- Disallow root login remotely? [Y/n] y
- Remove test database and access to it? [Y/n] y
- Reload privilege tables now? [Y/n] y

接下来,我们需要登录到 MariaDB 控制台并为 Cacti 创建一个数据库。运行以下命令:

mysql -u root -p

这将提示您输入密码,因此请输入您的 MariaDB 根密码并按 Enter。登录到数据库服务器后,您需要为 Cacti 安装创建一个数据库:

MariaDB [(none)]> CREATE DATABASE cacti_db;
MariaDB [(none)]> CREATE USER 'cacti_user'@'localhost' IDENTIFIED BY 'your-strong-password';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON cacti_db.* to cacti_user@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit

然后,我们将其导入到 MariaDB 数据库中,如下所示:mysql_test_data_timezone.sql

sudo mysql -u root -p mysql < /usr/share/mysql/mysql_test_data_timezone.sql

步骤 5. 在 Debian 11 上安装 Cacti。

现在我们从官方页面下载最新版本的 Cacti 安装程序:

wget https://www.cacti.net/downloads/cacti-latest.tar.gz

接下来,提取 Cacti 存档:

tar -zxvf cacti-latest.tar.gz
sudo mv cacti-1* /opt/cacti

之后,我们将默认的 Cacti 数据库数据导入到新创建的数据库中:

sudo mysql -u root -p cacti_db < /opt/cacti/cacti.sql

完成后,编辑 Cacti 配置文件以指定数据库类型、名称、主机名、用户和密码信息:

sudo nano /opt/cacti/include/config.php

添加以下文件:

/* make sure these values reflect your actual database/host/user/password */
$database_type = "mysql";
$database_default = "cacti_db";
$database_hostname = "localhost";
$database_username = "cacti_user";
$database_password = "your-strong-password";
$database_port = "3306";
$database_ssl = false;

步骤 6. 配置 Apache。

现在我们创建一个新的 VirtualHost 来更好地管理 Cacti:

sudo nano /etc/apache2/sites-available/cacti.conf

添加以下文件:

Alias /cacti /opt/cacti

  <Directory /opt/cacti>
      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>

保存并关闭,然后重新启动 Apache 网络服务器以进行更改:

sudo ln -s /etc/apache2/sites-available/cacti.conf /etc/apache2/sites-enabled/cacti.conf
sudo a2enmod rewrite
sudo systemctl restart apache2

我们需要更改一些文件夹权限:

sudo chown -R www-data:www-data /opt/cacti/

步骤 7. 数据收集频率。

为了让 Cacti 每隔几分钟轮询一次,您可能需要在您的 crontab 中添加以下内容:

sudo nano /etc/cron.d/cacti

添加以下文件:

*/5 * * * * www-data php /opt/cacti/poller.php > /dev/null 2>&1

步骤 8. 访问 Cacti Web 界面。

成功安装后,打开网络浏览器并转到以下屏幕,您将看到以下屏幕,并输入默认用户名和密码,即adminadminhttps://your-domain.com/cacti

Cacti-Login-Interface

感谢您使用本教程在 Debian 11 Bullseye 上安装最新版本的 Cacti 监控。如需更多帮助或有用信息,我们建议您查看官方 Cacti 网站

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun75499.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年10月14日 下午3:48
下一篇 2021年10月14日 下午4:41

相关推荐