The installation and configuration methods of MySQL 8.0 are for your reference. The specific contents are as follows Download : Go to the website first Found on this site After downloading, unzip it to the path you need MySQL Configuration Then create a new folder in the unzipped folder. my.ini file [mysqld] # Set port 3306 port=3306 #Set the installation directory of mysql to basedir=C:\\JavaEnvironment\mysql-8.0.11-winx64 # Set the storage directory of mysql database data datadir=C:\\JavaEnvironment\mysql-8.0.11-winx64\\data # Maximum number of connections allowed max_connections=200 # The number of connection failures allowed. This is to prevent someone from trying to attack the database system from this host max_connect_errors = 10000 # The default character set used by the server is UTF8 character-set-server=utf8 # The default storage engine that will be used when creating a new table default-storage-engine=INNODB wait_timeout=31536000 interactive_timeout=31536000 #sql_mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION [mysql] # Set the default character set of the mysql client to default-character-set=utf8 [client] # Set the default port used by the mysql client to connect to the server port = 3306 default-character-set=utf8 Paste the above code in and pay attention to this #Set the installation directory of mysql to basedir=C:\\JavaEnvironment\mysql-8.0.11-winx64 # Set the storage directory of mysql database data datadir=C:\\JavaEnvironment\mysql-8.0.11-winx64\\data These two lines should be changed according to your mysql location Environment variable configuration Then configure the environment variables Then configure in Path MySQL service initialization Next, start the installation and run it in CMD mysqld --initialize --user=mysql --console You can see Be sure to remember this initial password. You will need to use this initial password to log in to MySQL and change the password. If you click on it, just delete the data file configured in datadir and then re-initialize it. Then enter mysqld --install Register the service. net start mysql Then the fun started Change the default password use mysql -u root -p Log in to mysql and enter the initial password. Next, change the password ALTER USER "root"@"localhost" IDENTIFIED BY "123456"; At this point the password is initialized to 123456. other If an error occurs when connecting using the database connection tool, try adding default_authentication_plugin=mysql_native_password I don't know why, but it's the right thing to add. 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:
|
<<: How to use the Clipboard API in JS
>>: Add crontab scheduled tasks to debian docker container
Official documentation: So mysql should be starte...
1. <select style="width:195px" name=&...
1. Install Oracle There are too many Oracle insta...
Problem description: The user has a requirement t...
1. Understanding the meaning of web standards-Why...
Table of contents Storage Engine Memory Managemen...
Check what is installed in mysql rpm -qa | grep -...
Our veteran predecessors have written countless c...
Speaking of Nestjs exception filter, we have to m...
1. IE8's getElementById only supports id, not ...
Table of contents 1. Mutex 1. Initialization of m...
In this blog, I will walk you through the process...
Detailed explanation and examples of database acc...
This article records the installation and configu...
DetachKeyPair Unbind SSH key pairs from one or mo...