I encountered several problems when installing MySQL. The answers I found online were similar and did not solve my problem very well. After completing the installation, I recorded them for easy reference later. 1. Download MySQL version 8.0.16 from the official website 2. Unzip and place the unzipped files in C:\Program Files\MySQL 3. Configure environment variables and add C:\Program Files\MySQL\bin to the system variable path 4. Add the configuration file and create my.ini in the MySQL root directory The file content is as follows, modify the 'basedir=' and 'datadir=' addresses [mysqld] # Set port 3306 port=3306 # Set the installation directory of MySQL basedir=C:\Program Files\MySQL # Set the storage directory of MySQL database data datadir=C:\MySQL\Database # Maximum number of connections allowed max_connections=200 # The number of connection failures allowed. This is to prevent someone from trying to attack the database system from this host max_connect_errors = 10 # The default character set used by the server is UTF8 character-set-server=utf8 # The default storage engine that will be used when creating a new table default-storage-engine=INNODB # By default, the "mysql_native_password" plug-in is used for authentication. default_authentication_plugin=mysql_native_password [mysql] # Set the default character set of the mysql client to default-character-set=utf8 [client] # Set the default port used by the mysql client to connect to the server port = 3306 default-character-set=utf8 5. Create a Data folder under Program Files\MySQL 6. Check the initial password mysqld --initialize --console (The password is a string [Server] A temporary password is generated for root@localhost: q/4<l#jZ3*** If you can't remember, you can copy it into a text 7. Enter MySQL mysql -u root -p 'Enter password (copy and paste from the document in the previous step)' 8. Change password Navicat reports an error when using the default password to connect. As long as you can connect successfully in cmd, you only need to reset the password to use Navicat to connect alter user root@localhost identified by 'new password' 9. Use Navicat or other tools to connect to MySQL with the new password. Summarize The above is what I introduced to you about installing and using MySQL8.0.16 under Windows7 to change the password and connect to Navicat. I hope it will be helpful to you. 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:
|
<<: WeChat applet implements simple chat room
>>: How to deploy Angular project using Docker
Table of contents Preface Idea startup speed Tomc...
1. Install dependency packages yum -y install gcc...
How to solve the Mysql transaction operation fail...
Just like code, you can add comments to tables an...
Recently, due to the increase in buttons in the b...
Copy the following code to the code area of Drea...
Use MySQL proxies_priv (simulated role) to implem...
Table of contents Defining the HTML structure Inp...
Table of contents Deploy nginx on server1 Deploy ...
Implementation effect: 1. count(1) and count(*) W...
Nginx has taken over the majority of the Web serv...
Table of contents Lock Overview Lock classificati...
location matching order 1. "=" prefix i...
background There is a requirement in the project ...
The HTTP request methods specified by the HTTP/1....