This article shares the installation tutorial of MySQL 8.0.24 for your reference. The specific content is as follows Download address: Official website 1. Unzip the folder 2. Configure environment variables and add the bin directory under mysql to PATH; 3. Create a new my.ini configuration file in the mysql directory 4. Modify the configuration file [mysqld] #Set port 3306 port=3306 #Set the installation directory of mysql basedir=D:\MySQL\mysql-8.0.24\ #Set the storage directory of mysql database data datadir=D:\MySQL\mysql-8.0.24\data\ #Skip password authentication skip-grant-tables 5. Start CMD in administrator mode , switch the path to the bin directory under mysql, and then enter mysqld -install (install mysql service) 6. Enter The data directory will be automatically generated, and there will be some initial databases 7. Enter 8. Use the command This is the first time I get an error. Just restart the service. Note that the password is empty. 9. Change the root password after entering the interface alter user 'root'@'localhost' identified with mysql_native_password by '123456'; 10. Finally, enter 11. Finally, go back and comment out the last sentence in the my.ini file. Restart mysql and it will work normally net stop mysql net start mysql If the connection is successful, it is OK. 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:
|
<<: I have compiled a few cool design sites that I think are good.
>>: Steps to package and release the Vue project
This tutorial shares the installation and configu...
On a Linux computer, there are two times, one is ...
Preface In many MySQL test scenarios, some test d...
Preface Before we begin, we should briefly unders...
--1. Create a new group and user for mysql # user...
Download the image (optional step, if omitted, it...
Table of contents 1. Introduction 2. Self-increme...
0x0 Test Environment The headquarters production ...
Web design is both a science and an art. Web desi...
Today I was dealing with the issue of migrating a...
I often see some circular wave graphics on mobile...
1. The Chinese garbled characters appear in MySQL...
Today I made a Spring Festival gold coin red enve...
1. Description Earlier we talked about the instal...
Recently, I happened to be in touch with the vue+...