打开虚拟机
sudo apt update
sudo apt install mysql-server
文章来源:https://www.toymoban.com/news/detail-861826.html
mysql --version
sudo mysql
mysql > ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'very_strong_password';
mysql > FLUSH PRIVILEGES;
mysql > ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'very_strong_password';
very_strong_password这里改成你自己的命令,要注意格式,使用英文字符
sudo mysql_secure_installation
systemctl status mysql
mysql -u root -p mysql
mysql -u 用户名 -p 密码
文章来源地址https://www.toymoban.com/news/detail-861826.html
到了这里,关于在ubuntu上安装mysql(在线安装需要)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!