1. MySQL yum source installation 2. After installation, log in to MySQL for the first time and configure the password 1. CentOS7+MySQL8.0, yum source installation 1. Before installing MySQL, you should uninstall the original MySQL. If not, please ignore it. 1.2 Use the following commands to delete the above files one by one 1.3 Delete the mysl configuration file 2. Install mysql8.0 from yum source After clicking Download, click directly on the red circle in the picture below 2.2 After downloading is complete, transfer the file to the virtual machine master folder /usr/local/module/ via Xftp (the folder can be customized) 2.3yum install repo
After the installation is complete, enter cd/etc/yum.repos.d and you can see the newly added repo After completion, update the yum cache with the following command 2.4yum install mysql 2.4.1 Modify the installed version (default highest version)
As can be seen in the figure above, for versions 5.5, 5.6, and 5.7, the enabled value is 0, which means it is not installed. 8.0 and other tools, the enabled value is 1, which means installation. The highest version is installed by default and can be left unchanged 2.4.2 Execute the installation command
Possible problems: Due to network problems, there may be problems with missing dependencies
At this time, you only need to install the corresponding missing dependencies
In addition, due to poor network environment, slow network speed, slow connection to the official MySQL source, etc., there may be interruptions during the installation process. Execute yum install multiple times until the installation is complete. 2. Log in to MySQL and change the password
Active (running) appears, indicating that MySQL is running and the service is started successfully. 2. View the initial login password of MySQL root@localhost: followed by the initial password, copy it 3. Change the MySQL login password. Note: The MySQL installed in the official source has the password security check plug-in (validate_password) installed by default. The default password check policy requires that the password must contain: uppercase and lowercase letters, numbers and special symbols, and the length must not be less than 8 characters. Otherwise, the error message ERROR 1819 (HY000): Your password does not satisfy the current policy requirements will be displayed. This article does not recommend modifying the default password security policy. 3.1 Enter the database and modify the root user password
Enter password: Enter the password after that. The password is the initial password for viewing (that is, what was copied in the previous step will not be displayed after pasting, just press the enter key) Then use mysql After executing use mysql, enter
The content in single quotes is the password Note that after entering the password, an error message will appear: ERROR 1819 (HY000): Your password does not satisfy the current policy requirements The error is caused by password policy issues. The password cannot be too simple. Then you can check the password policy and change your password before that, otherwise you will be prompted to change your password no matter what you do. Enter again
If there is no error, jump directly to 3.11 If the same error is still reported, jump directly to 3.12 3.11 Enter the following command to view the corresponding parameters
3.12 Then modify the parameters and enter the following command
Then change the password you want to configure (I configured it to 123456, you can use it as you like, it is recommended to use a more complex password)
4. Log in to mysql Enter the password to log in to mysql 3. Remote Login 1. Modify the host of the root user
The default host of the root user is localhost, which needs to be changed to % (the above picture is modified) to allow remote login to the database. Enter the following command
After the modification is completed, use the following command to refresh to make the modification effective flush privileges;
This is because the navicat password encryption method is mysql_native_password, while the mysql default encryption format is caching_sha2_password Just change the root user password encryption method to the same as navicat Execute Command
Open Navicat Preminum, click Connect, then click MySQL to display the following interface The connection name is arbitrary For the host, fill in the IP address of the virtual host where you installed MySQL. The port is usually 3306 and will not change. Fill in the root user as the username The password is the password you use to log in as root Click Test Connection, and you are done. This is the end of this article about the MySQL 8.0 installation process under Centos7 in VMware workstation16 + Navicat remote connection. For more relevant VMware workstation Navicat remote connection content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: What we can learn from Google's new UI (pictures and text)
>>: MYSQL uses Union to merge the data of two tables and display them
Preface In daily work or study, it is inevitable ...
1. Backup source list The default source of Ubunt...
MySQL deduplication methods 【Beginner】There are v...
Let me show you the effect picture first. Persona...
1.1 Introduction By enabling the slow query log, ...
Preface Index Condition Pushdown (ICP) is a new f...
Sometimes you will see English commas ",&quo...
I wrote a simple UDP server and client example be...
Table of contents Parsers and preprocessors Query...
Preface I have been summarizing my front-end know...
Install Docker You have to install Docker, no fur...
Preface The author has always felt that it would ...
1. Install Fcitx input framework Related dependen...
This article mainly introduces the analysis of th...
This article example shares the specific code for...