download MySQL official download, select Windows (x86, 64-bit), ZIP Archive Install 1. Unzip the file to the root directory of drive D. 2. Initialize MySQL 5.7 and later do not have a data directory by default, so the initialization command has changed Open cmd and enter the bin directory of mysql. Subsequent commands must be run in the bin directory (even if environment variables are configured) mysqld--initialize-insecure After this method is initialized, the root user has no password mysqld --initialize --console. After this method is initialized, the root user has a password. The password is a string output in the console (remember this string) Both commands can be used here. 3.mysqld --install The installation prompt is successful before proceeding to the next step 4. Start the service: net start mysql 5. Login: mysql -u root -p without password change password SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass'); Change Encoding 1. Copy my.default.ini and rename it to my.ini 2. Add the following code to the corresponding position of my.ini [client] default-character-set=utf8 [mysqld] character-set-server=utf8 3. Restart MySQL mysqld restart 4. Query code show variables like 'character%'; +--------------------------+----------------------------------------+ | Variable_name | Value | +--------------------------+----------------------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | utf8 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | utf8 | | character_set_system | utf8 | | character_sets_dir | D:\mysql-5.7.17-winx64\share\charsets\ | +--------------------------+----------------------------------------+ Other commands 1. Delete the mysql service sc delete mysql 2. Start the MySQL service net start mysql 3. Stop the MySQL service net stop mysql The above is the method I introduced to you to install Mysql5.7.17 under Window and set the encoding to utf8. 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 to achieve accordion effect
>>: WebStorm cannot correctly identify the solution of Vue3 combined API
Table of contents Preface Component Introduction ...
This article example shares the specific code of ...
If you have experience in vue2 project developmen...
Abstract: HBase comes with many operation and mai...
HTML is made up of tags and attributes, which are...
This article uses examples to illustrate the prin...
When writing my own demo, I want to use display:f...
Introduction yum (Yellow dog Updater, Modified) i...
Copy code The code is as follows: <style type=...
MGR (MySQL Group Replication) is a new feature ad...
MySQL filtering timing of where conditions and ha...
a href="#"> After clicking the link, ...
Concept of SFTP sftp is the abbreviation of Secur...
Implementation principle The main graphics are co...
<br />The content is reproduced from the Int...