mysql -u root -p
(here I enter 'my_root_password' to get through the mysql prompt)
create database my_database;
GRANT ALL PRIVILEGES ON my_database.* TO 'my_user'@'localhost'
IDENTIFIED BY 'my_password' WITH GRANT OPTION;
Experiments in IT infrastructure, monitoring and automation, with practical notes on Linux, networking and observability
mysql -u root -p
(here I enter 'my_root_password' to get through the mysql prompt)
create database my_database;
GRANT ALL PRIVILEGES ON my_database.* TO 'my_user'@'localhost'
IDENTIFIED BY 'my_password' WITH GRANT OPTION;