I recently deployed MySQL 5.6 and found that by default MySQL only allows local services. If you want to make some configurations, please record them as follows. 1. Set up MySQL service to allow external network access Modify the mysql configuration file, some are my.ini (windows), some are my.cnf (linux), Add in the configuration file [mysqld] port=3306 bind-address=0.0.0.0 Then restart the MySQL service and execute service mysql restart. 2. Set up MySQL users to support external network access You need to log in to MySQL with root privileges, update the mysql.user table, and set the Host field of the specified user to %. The default is generally 127.0.0.1 or localhost. 1. Log in to the database mysql -u root -p Enter password mysql> use mysql; 2. Query host mysql> select user,host from user; 3. Create a host If there is no "%" host value, execute the following two sentences: mysql> update user set host='%' where user='root'; mysql> flush privileges; 4. Authorized Users (1) Any host connects to the MySQL server as user root and password mypwd mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypwd' WITH GRANT OPTION; mysql> flush privileges; (2) The host with IP address 192.168.133.128 connects to the MySQL server as user myuser and password mypwd mysql> GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.133.128' IDENTIFIED BY 'mypwd' WITH GRANT OPTION; mysql> flush privileges; 【Host field description】 % Allow login from any IP address xxxx Allow access from specified IP address The above detailed process of setting up Mysql5.6 to allow external network access is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Installation and deployment of Linux tool Nethogs to monitor network bandwidth by process
>>: How to run sudo command without entering password in Linux
Table of contents Initialization of echart app-ba...
When writing animations with JS, layout conversio...
In the front-end layout of the form, we often nee...
Introduction In a production environment, in orde...
Designing navigation for a website is like laying...
Table of contents 1. Introduction 2. Self-increme...
Table of contents 1. Digital Enumeration 2. Strin...
Variables defined in SASS, the value set later wi...
Automated project deployment is more commonly use...
The solution to the background tiling or border br...
Migration is unavoidable in many cases. Hardware ...
The database, like the operating system, is a sha...
Today I had some free time to write a website for...
What is Let’s first look at the concept of Docker...
Docker includes three basic concepts: Image: A Do...