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


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

--

Legend:

Unmodified
Added
Removed
Modified
  • NSM2021/Agenda/Librenms

    v26 v27  
    102102now you have to create a database for LibreNMS
    103103
    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`
     104{{{#!bash
     105CREATE DATABASE librenms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
     106CREATE USER 'librenms'@'localhost' IDENTIFIED BY 'password';
     107GRANT ALL PRIVILEGES ON librenms.* TO 'librenms'@'localhost';
     108FLUSH PRIVILEGES;
     109exit
     110}}}
    113111
    114112
    115113
     114