Step 1 — Installing MySQL
|
sudo apt install mysql-server |
Step 2 — Configuring MySQL
|
sudo mysql_secure_installation |
Step 3 — (Optional) Adjusting User Authentication and Privileges
Next, check which authentication method each of your MySQL user accounts use with the following command:
|
SELECT user,authentication_string,plugin,host FROM mysql.user; |
|
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; |
ที่มา : https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04
ป้ายกำกับ:install, mysql, Ubuntu 18.04