mysql 5.6.35 winx64 free installation version configuration tutorial under win10, the specific contents are as follows 1. Unzip the MySQL compressed package Unzip the downloaded MySQL compressed package to a custom directory. I put it in C:\software\mysql-5.6.35-winx64\mysql_master Add environment variables Configure the MySQL path to the path path 2. Edit the unzipped file my-default.ini [client] port=3306 default-character-set=utf8 [mysqld] #Set MySQL directory basedir=C:/software/mysql-5.6.35-winx64/mysql_master #Set MySQL data datadir=C:/software/mysql-5.6.35-winx64/mysql_master/data port=3306 character_set_server=utf8 default-storage-engine=MYISAM sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES Register Windows system service Register MySQL as a Windows system service The operation is as follows: 1) Right-click the start menu and select "Command Prompt (Administrator)" (must be under administrator privileges) 2) Enter the service installation command: mysqld install MySQL --defaults-file="C:\software\mysql-5.6.35-winx64\mysql_master\my-default.ini" After the installation is successful, a message will pop up saying that the service has been successfully installed. If it appears The service already exists! 5. Start MySQL service Method 1: The command to start the service is: net start mysql Method 2: Open the management tool service and find the MySQL service. Start the service by right-clicking and selecting Start or directly clicking Start on the left. "C:\software\mysql-5.6.35-winx64\mysql_master\bin\mysqld" --defaults-file="C:\software\mysql-5.6.35-winx64\mysql_master\my-default.ini" MySQL3306 6. Change the root account password When the installation is just completed, the default password of the root account is empty. At this time, you can change the password to the specified password. For example: 123456 Method 1: c:>mysql –uroot mysql>show databases; mysql>use mysql; mysql>UPDATE user SET password=PASSWORD(“123456”) WHERE user='root'; mysql> FLUSH PRIVILEGES; mysql>QUIT Method 2: Use third-party management tools to change passwords. Such as Navicat for MySQL 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:
|
<<: VSCode configuration Git method steps
>>: Detailed explanation of Vue's caching method example
GitHub address, you can star it if you like it Pl...
Let’s not start with the introduction and get str...
The following problem occurred when installing my...
After I set up the PHP development environment on...
Use the vscode editor to create a vue template, s...
This article uses examples to illustrate the prin...
Table of contents Event Loop miscroTask (microtas...
1. MySQL rpm package installation # Download the ...
Table of contents 1. Introduction 2. Ideas Two wa...
As a super rookie, I just started learning MySQL ...
Preface: In Vue, props can be used to connect ori...
mysql permissions and indexes The highest user of...
Table of contents Directory Structure bin directo...
Table of contents 01. Listener watch (1) Function...
1. Download the mysql tar file: https://dev.mysql...