1. Download MySQL from the official website: ![]() This is what we are looking for, win7 64 bit Click to download; ![]() As shown in the picture, we don’t need to log in or register, just click within the red line. 2. Installation and configuration: Then unzip it to the local folder: ![]() Go to the directory, copy the my-default.ini file and rename it to my.ini ![]() Open my.ini for configuration Code: (Change D:\mysql\mysql-5.6.17-winx64 to your own software path and save) [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=E:\mysql\mysql-5.7.11-winx64 # Set the storage directory of mysql database data datadir=E:\mysql\mysql-5.7.11-winx64\data (the data directory does not exist during installation) # 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 Save and exit; 3. Enter the cmd command line to install mysql (run as an administrator, otherwise it will be inaccessible) Enter the mysql bin directory ![]() Enter mysqld -install to install If there is no data file in the mysql directory, initialize it Enter mysqld –initialize-insecure to automatically generate a root user without a password and create a data folder Enter mysqld –initialize to automatically generate a root user with a random password. (Note: This command cannot be executed when the data folder exists. You can delete all folders under the data directory first) This completes the installation. Enter net start mysql to start the service, and then you can connect to the database and log in. In the new version of MySQL 5.7 ![]() This problem may occur because the data folder does not exist. Change the root user password Method 1: Use the SET PASSWORD command First log in to MySQL. Format: mysql> set password for username@localhost = password('new password'); Example:mysql> set password for root@localhost = password('admin10000.com'); The above example changes the password of user root to admin10000.com Method 2: Using mysqladmin Format: mysqladmin -u username -p old password password new password Example: mysqladmin -uroot -p123456 password admin10000.com The above example changes the original password 123456 of user root to the new password admin10000.com Method 3: Use UPDATE to edit the user table directly First log in to MySQL. mysql> use mysql; mysql>update user set password=password('admin10000.com')where user='root' and host='localhost'; mysql>flush privileges; Method 4: When you forget the root password, you can do this. Take Windows as an example: 1. Shut down the running MySQL service. 2. Open a DOS window and go to the mysql\bin directory. 3. Enter mysqld –skip-grant-tables and press Enter. –skip-grant-tables means skipping the permission table authentication when starting the MySQL service. 4. Open another DOS window (because the previous DOS window cannot be moved), and go to the mysql\bin directory. 5. Type mysql and press Enter. If successful, the MySQL prompt > will appear. 6. Connect to the privilege database: use mysql; . 6. Change password: update user set password=password(“admin10000.com”) where user=”root”; (don’t forget to add a semicolon at the end). 7. Refresh privileges (required step): flush privileges; . 8. Exit quit. 9. Log out of the system, then log back in using the username root and the new password admin10000.com you just set. The above is a summary of the common problems in downloading and installing Win7 64-bit MySQL 5.7. 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 custom scroll-view example code
>>: How to add ansible service in alpine image
This article shares the specific code of JavaScri...
Table of contents 1. Problem 2. Solution Option 1...
Preface: I wrote this because I helped my friend ...
Table of contents 1. What is deconstruction? 2. A...
Preface In the process of using MySQL database, i...
In development, it is often necessary to cache th...
Table of contents Features of etcd There are thre...
This article mainly introduces how to build a MyS...
The Docker container provides services and listen...
Preface I am a PHP programmer who started out as ...
A very common scenario in react projects: const [...
Publish Over SSH Plugin Usage Before using Publis...
Recently, I need to implement a cascading selecti...
Table of contents Matlab Centroid Algorithm As a ...
This article shares the specific code of Javascri...