diff --git a/doc/Installation/Install-LibreNMS.md b/doc/Installation/Install-LibreNMS.md index 8f415f51b7..2307d44b19 100644 --- a/doc/Installation/Install-LibreNMS.md +++ b/doc/Installation/Install-LibreNMS.md @@ -173,10 +173,13 @@ innodb_file_per_table=1 lower_case_table_names=0 ``` +Then restart MariaDB + ``` systemctl enable mariadb systemctl restart mariadb ``` +Start MariaDB client ``` mysql -u root @@ -188,7 +191,6 @@ mysql -u root CREATE DATABASE librenms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost'; -FLUSH PRIVILEGES; exit ```