This article mainly introduces the detailed graphic and text explanation of downloading and installing the decompressed version of Mysql 5.7.18 and starting the mysql service. It is very good and has reference value. Friends in need can refer to it
Because MySQL Community Server5 There is no .ini file in the distribution package of .7.18, and the data directory will not be initialized, so the online installation and configuration tutorials for previous versions are not applicable
#step1: Download from the official websitehttps ://dev.mysql.com/downloads/mysql/
After decompression
step2: now configure environment variables
Create a new system variable named MYSQL_HOME, the path is the path to the decompressed file (remember to go to bin)
Add;%MYSQL_HOME%\bin to the path
#step3: Go to C:\Windows\System32\cmd.exe, select cmd.exe and manage it Run
cd to the file path, such as D:\SQL server\MySQL\mysql-5.7.18-winx64\bin
Enter mysqld –initialize-insecure to generate the data directory
Because there is no .ini file, you can use mysqld –verbose –help to view the configuration (It’s okay not to execute this command)
Enter mysqld -install to load the service (because I installed it again,,, so the result is different from the first installation, hhhh)
Enter net start mysql to start the service
Enter mysql -u root -p to initialize without a password, and press Enter to enter directly Database
#1. There is a Chinese manul but it is a transfer of version 5.1
http://tool.oschina.net/apidocs/apidoc? api=mysql-5.1-zh
2. The 5.7 version manul on the official website has Tutorial in English, and Chinese can be downloaded on csdn, but I don’t have enough coins to download it. It’s okay. I can hold it in English. , transfer required
https://dev.mysql.com/doc/refman/5.7/en/tutorial.html
The above is the detailed content of Detailed graphic explanation of Mysql 5.7.18 decompressed version download, installation and starting mysql service. For more information, please follow other related articles on the PHP Chinese website!