[ Spring ] Install MySQL on Unbuntu24
Reference Guidance
https://medium.com/@jasonrbodie/how-to-install-mysql-on-ubuntu-24-04-bfd11f73224b
Install or Uninstall MySQL
sudo apt update
sudo apt install mysql-server-8.0
sudo apt purge mysql-server-8.0
Start or Stop MySQL
sudo systemctl enable mysql.service
sudo systemctl start mysql.service
sudo systemctl stop mysql.service
sudo systemctl restart mysql.service
Initialize after First Installation
sudo mysql_secure_installation
Set Default Password
sudo mysql
SET GLOBAL validate_password.length=9;
SET GLOBAL validate_password.policy=LOW;
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY '123456789';
exit
mysql -u root -p
123456789
原文地址:https://blog.csdn.net/u013718730/article/details/145091136
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!