cara install librenms di redhat 9.4
sudo dnf update -y
sudo dnf install -y epel-release
sudo dnf install -y https://rpms.remirepo.net/enterprise/remi-release-9.rpm
sudo systemctl enable --now mariadb
sudo systemctl enable --now httpd
sudo systemctl enable --now php-fpm
sudo systemctl enable --now crond
sudo useradd librenms -d /opt/librenms -M -r -s /bin/bash
sudo git clone https://github.com/librenms/librenms.git
cd /opt/librenms
exit
date.timezone = Asia/Jakarta
sudo timedatectl set-timezone Asia/Jakarta
innodb_file_per_table=1
lower_case_table_names=0
sudo mysql -u root
CREATE DATABASE librenms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'PasswordKuat123';
GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Komentar
Posting Komentar