Changes between Version 25 and Version 26 of NSM2021/Agenda/Librenms


Ignore:
Timestamp:
May 9, 2021, 8:16:08 PM (4 years ago)
Author:
tuwan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NSM2021/Agenda/Librenms

    v25 v26  
    9696`systemctl restart mariadb`
    9797
     98loggin to the db
    9899
     100`mysql -u root`
     101
     102now you have to create a database for LibreNMS
     103
     104`CREATE DATABASE librenms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;`
     105
     106`CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'password';`
     107
     108`GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost';`
     109
     110`FLUSH PRIVILEGES;`
     111
     112`exit`
     113
     114
     115