MySQL is the most popular relational database management system. In terms of WEB applications, MySQL is one of the best RDBMS (Relational Database Management System) application software. 1. Download the MySQL installation package Open the website to download MySQL (MySQL download address link) The default link to this website is the latest version of MySQL, so if you need to download version 5.7, you need to click the link in the picture below to download it. Select the version that corresponds to your computer, which is generally a 64-bit computer. Next, click Download and select No thanks, just start my download to download the installation package directly. 2. Unzip to the corresponding folder The downloaded file is a compressed file, unzip it to the directory you want to put it in. Configure MySQL environment variables, system variables--->New---->Variable name MYSQL_HOME, variable value is your path name My variable name is: C:\MySQL\mysql-5.7.24-winx64 Then change the Path environment variable and add the following value: %MYSQL_HOME%\bin 3. my.ini file There is no data folder and my.ini file in the folder you unzipped, so add an empty data folder and a my.ini file. The contents of the my.ini file are as follows [mysql] # Set the default character set of the mysql client to default-character-set=utf8 [mysqld] #Set port 3306 port = 3306 # Set the installation directory of mysql to basedir=C:\MySQL\mysql-5.7.24-winx64 # Set the storage directory of MySQL database data datadir=C:\MySQL\mysql-5.7.24-winx64\data # Maximum number of connections allowed max_connections=200 # The default character set used by the server is the 8-bit latin1 character set character-set-server=utf8 # The default storage engine that will be used when creating a new table default-storage-engine=INNODB 4. Install MySQL service and initialize Run cmd as an administrator and execute the command to install the mysql service: mysqld install We can see that the service has been successfully installed. If the installation fails, it may be because you installed it before but did not uninstall it completely, so be sure to uninstall it completely. Then execute the mysql initialization command: msqld --initialize Execute this command and start our mysql: net start mysql The following errors may occur here The solution is to enter our MySQL decompression package, delete the data folder, and then re-execute the command: mysqld --initialize Execute: net start mysql and you will find that the service is started successfully. After successful startup, we log in. Since there is a default password during initialization, where can we find the default password? In the file ending with err under our data folder. Execute the command: mysql -u root -p Enter the password found above: EcpHl,h33/N), then log in and change the default root password: alter user root@localhost identified by '123456'; Finally, let’s talk about how to set the username and password for remote connection: We use Navicat for user management. When adding a new user, you can see the host input box. When setting it up, if you want the user to be able to connect remotely, please enter %. If it is for local connection, please enter localhost Wonderful topic sharing: MySQL different versions installation tutorial MySQL 5.6 installation tutorials for various versions MySQL 5.7 installation tutorials for various versions mysql8.0 installation tutorials for various versions The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Nginx uses reverse proxy to implement load balancing process analysis
>>: In-depth explanation of modes and environment variables in Vue CLI
let Utils = { /** * Is it the year of death? * @r...
1. Pull the MySQL image Get the latest MySQL imag...
vuex-persistedstate Core principle: store all vue...
This article will introduce some commonly used ar...
<a href="https://www.jb51.net/" titl...
Scenario How to correctly render lists up to 1000...
I saw this question in the SQL training question ...
When I was looking at some CSS3 animation source ...
This article shares the installation steps of MyS...
Benefits of using xshell to connect to Linux We c...
Table of contents Mode Parameters HashHistory Has...
1. Command Introduction The chkconfig command is ...
1. Introduction Recently I found that there are m...
Table of contents background question Problem ana...
Table of contents 1 Review 2 Five strategies for ...