The installation of MySQL 5.7 on Ubuntu 1804 is introduced in detail. Execute the command to install MySQL sudo apt install mysql-server sudo apt install mysql-client After installation, check whether it is started: sudo ps aux | grep mysql If it has been started, you can see the corresponding information after executing the above command. If it has not been started, you can execute the following command to start mysql: sudo service mysql start In addition, you will need to restart MySQL later. The commands to restart and shut down MySQL are: sudo service mysql restart sudo service mysql stop After ensuring that mysql is started successfully, you can log in to mysql. However, there is no step to prompt for a username and password during the installation process. At this time, you can view the default username and password in '/etc/mysql/debian.cnf': sudo cat /etc/mysql/debian.cnf You can log in to mysql with user and password: mysql -udebian-sys-maint -pZBms1EM5icCfeePV However, the default username and password are hard to remember. You can use the following SQL statement to add a user named my_name with a password my_password: show databases; use mysql; update user set authentication_string=PASSWORD("my_password") where user='my_name'; update user set plugin="mysql_native_password"; flush privileges; exit; After adding the user, restart mysql and log in with my_name. Summarize The above is the problem and solution of not prompting for password when installing MySQL in Ubuntu 18.04. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: MySQL compressed package version zip installation configuration method
>>: Detailed tutorial for installing mysql 8.0.12 under Windows
This article shares with you how to use thinkphp5...
Sometimes we need to import some data from anothe...
How to implement the paging function of MyBatis i...
Why do I want to organize the content in this area...
Table of contents 1. List traversal 2. The role o...
There is currently a requirement that an operatio...
Preface: The previous article described several c...
Preface We all know that in Linux, "everythi...
Table of contents 1. Problem scenario 2. Cause An...
Table of contents Preface 1. Install Docker 2. In...
As the Internet era becomes more mature, the deve...
The installation tutorial of mysql5.7.17 is share...
1. Use css sprites. The advantage is that the smal...
①. How to use the alias (CNAME) record: In the do...
In the past, I used to directly order by rand() t...