Ubuntu install mysql

发布时间:2022-06-23 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了Ubuntu install mysql脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

1,

sudo apt update

 

Ubuntu install mysql

 

 

 

2.

sudo apt upgrade

Ubuntu install mysql

 

 

 

 

3. 

sudo apt install mysql-server

 

Ubuntu install mysql

 

 

 

4.Check version

mysql --version

 

Ubuntu install mysql

 

 

 

5.

sudo mysql_secure_installation

 

Ubuntu install mysql

 

 

 And failed,its prompts  is 

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y ... Failed! Error: SET PASSWORD has no significance for user 'root'@'localhost' as the authentication method used doesn't store authentication data in the MySQL server. Please consider using ALTER USER instead if you want to change authentication parameters.

To solve this run

sudo mysql

Ubuntu install mysql

 

 

 And then run the below command and resolved the problems.

alter user 'root'@'localhost'  identified with mysql_native_password  by 'NewPassword';
sudo mysql_secure_installation;

 

6.Check mysql whether it is running.

sudo systemctl status mysql;

Ubuntu install mysql

 

 

 

 

7.Log in mysql 

mysql -u root -p

Then enter password

Ubuntu install mysql

 

 

 

When logined in successfully and run "show databases;"

show databases;

 

Ubuntu install mysql

 

 

 

use sys;show tables;

Ubuntu install mysql

 

 

 

select * from user_summary;

Ubuntu install mysql

 

 

 

ps -aux |grep mysql

Ubuntu install mysql

 

 

 

We can see that  mysql is running via ps aux command as above snapshot.

 

In another command

sudo service mysql status;

Ubuntu install mysql

 

 

 

We found that the mysql service has shutdown.

Then we have to start the mysql

Ubuntu install mysql

 

sudo service mysql start;
sudo service mysql status;

Ubuntu install mysql

 

 

The above snapshot has illustrated that the mysql service has been started.

 

When mysql service is running,then logged in via below command and enter password.

sudo mysql -u root -p

Ubuntu install mysql

 

 

Ubuntu install mysql

 

脚本宝典总结

以上是脚本宝典为你收集整理的Ubuntu install mysql全部内容,希望文章能够帮你解决Ubuntu install mysql所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: