muerwre.github.io/content/SQL/MySQL and MariaDB setup.md
2022-11-04 18:29:11 +06:00

643 B

Install MariaDB on Ubuntu 20.04 LTS

sudo apt update
sudo apt install mariadb-server
sudo mysql_secure_installation

Access Database from outside

Open /etc/mysql/mariadb.conf.d/50-server.cnf and change the bind-address to:

...
bind-address = 0.0.0.0
...

Create Administrative User

  1. Create a new user newuser for the host localhost with a new password:
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
  1. Grant all permissions to the new user
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
  1. Update permissions
FLUSH PRIVILEGES;