Download the MySQL installation package. I downloaded mysql-8.0.11-winx64, unzip it to the directory you want to install it, and then configure the environment (under Windows environment, I haven't tried it on Mac yet). 1. First, configure the environment: right-click this computer -> Properties -> Advanced system settings -> Environment variables -> path -> New, and then add your own path (for example, my directory: F:\mysql\mysql-8.0.11-winx64). In addition, you need to see if there is a my.ini file or my-default.ini file in the unzipped compressed package. If not, you need to write one in the root directory. The default configuration information is as follows: To view all configuration items, refer to: https://dev.mysql.com/doc/refman/8.0/en/mysqld-option-tables.html [mysqld] # Set port 3306 port=3306 # Set the installation directory of mysql to basedir=F:\mysql\mysql-8.0.11-winx64 # Set the storage directory for the MySQL database data (this directory will be generated by commands later, no need to write it manually) datadir=F:\mysql\mysql-8.0.11-winx64\Data # 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 2. Then open the terminal, press window+r and enter cmd to open the terminal and switch to the path, and execute the command mysqld --initialize to check the current environment. If there is no error, open your directory and you will see a data folder in your root directory; everything is normal Note that you may encounter some error messages in this step, such as "Cannot continue code execution because vcruntime140.dll is not found. Reinstalling the program may solve this problem." This means that your computer is missing some necessary files. At this time, you need to open the control panel to view the specific information of C++ 2015. My problem is that I didn't have x64-bit C++ before, so the file is missing. If you have it, you can click Uninstall. It will prompt you to repair it. Click Repair. After it's done, you can continue to enter commands in the terminal. Initialize the database At this time, the following error will be printed, which means that there is already a data directory. Just delete it.
Execute the above command again, and the user's initial password will be printed. @localhost:XXXXXX is the default password. You need to remember it. If you don't remember it, delete the data file generated later and generate it again.
3. Then install the service, mysqld --install [service name]. If there is only one service, you can leave the default mysql blank. If there are multiple services, you can write the specific service name, XXXX. After pressing Enter, an error occurs again, install/remove of the service deined. This is because the cmd is not run as an administrator. Just run cmd again as an administrator. If service successfully installed appears, it means the service is installed. F:\mysql\mysql-8.0.11-winx64\bin>mysqld --install Service successfully installed. 4. Start the service and run the command: net start mysql. You can see that the service has been started successfully. F:\mysql\mysql-8.0.11-winx64\bin>net start mysql MySQL service is starting.... The MySQL service has been started successfully. 5. Change password and password authentication plug-in, Execute the command in the bin directory of the MySQL installation directory: mysql -u root -p F:\mysql\mysql-8.0.11-winx64\bin>mysql -u root -p Enter password: ******* ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) At this time, you need to regenerate the password, delete the data directory, and run mysqld --initialize --console. F:\mysql\mysql-8.0.11-winx64\bin>mysqld --initialize --console 2018-10-29T10:04:23.337650Z 0 [System] [MY-013169] [Server] F:\mysql\mysql-8.0.11-winx64\bin\mysqld.exe (mysqld 8.0.11) initializing of server in progress as process 7928 2018-10-29T10:05:19.210237Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: RXZG!fJR2Ly+ 2018-10-29T10:06:00.603070Z 0 [System] [MY-013170] [Server] F:\mysql\mysql-8.0.11-winx64\bin\mysqld.exe (mysqld 8.0.11) initializing of server has completed Re-execute mysql -u root -p and enter the password (note that there are no spaces around the password). The relevant information will be printed out.
To change the user password, execute the command in MySQL: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'new password';. If the following situation appears, it proves that you have successfully changed the password. mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '5502yulijian.'; Query OK, 0 rows affected (0.17 sec) show databases; (';' must be added) That's it. Summarize The above is what I introduced to you about solving the problems encountered in installing mysql-8.0.11-winx64 in Windows environment. 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:
|
<<: JavaScript implements asynchronous submission of form data
>>: In-depth explanation of Session and Cookie in Tomcat
Table of contents Preface Background Implementati...
Preface After deploying the server, I visited my ...
About CSS3 variables When declaring a variable, a...
This article shares with you the graphic tutorial...
After the changes: innodb_buffer_pool_size=576M -...
Table of contents 1. Ant Design Vue 1. Official w...
Recently, there is a requirement for uploading pi...
Table of contents Preface Dockerfile What is a Do...
Limit input box to only pure numbers 1、onkeyup = ...
1. Prerequisites Since I have installed it severa...
background: In MySQL, if there is a limited level...
The purpose of using HTML to mark up content is t...
summary: The following is a method for changing t...
Table of contents 1. Problem 2. Solution Option 1...
Character set error always exists locale: Cannot ...