You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo apt install mariadb-server
mysql_secure_installation
sudo mysql
Create database
CREATEDATABASEdevices;
SHOW DATABASES;
CREATEUSERdevAdmin@localhost IDENTIFIED BY 'devAdm123';
SELECT User FROMmysql.user;
GRANT ALL PRIVILEGES ON devices.* to devAdmin@localhost;
FLUSH PRIVILEGES;
SHOW GRANTS FOR devAdmin@localhost;
SELECT user,authentication_string,plugin,host FROMmysql.user;