Install MySQL
Install MySQL Server
Overview
Install MySQL Server
Commands
This will install MySQL Server, continue?
sudo apt-get update && sudo apt-get install -y mysql-server
sudo systemctl enable --now mysql
Use Cases
Business database storage, WordPress/Typecho blog setup.
Prerequisites
Memory >= 512MB; run security configuration sudo mysql_secure_installation first.
FAQ
- Cannot log in as root without password → enter via
sudo mysqland change the authentication method - Character set issue → configure
/etc/mysql/mysql.conf.d/mysqld.cnfand addcharacter-set-server=utf8mb4
Related Commands
- Restart MySQL
- Export MySQL Database
- Import MySQL Database