How to allow external network access to mysql and modify mysql account password

How to allow external network access to mysql and modify mysql account password

The root account of mysql, I usually use localhost or 127.0.0.1 when connecting. The mysql on the company's test server is also localhost, so I can't access it when I want to, and the test is suspended.

The solution is as follows:

1. Modify the table, log in to the MySQL database, switch to the MySQL database, and use the SQL statement to view "select host, user from user;"

mysql -u root -pvmwaremysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;
mysql>flush privileges;

Note: The last sentence is very important to make the changes take effect. If it is not written, remote connection will still not be possible.

2. Authorize the user, you want to connect to the mysql server from any host using the root password

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'admin123' WITH GRANT OPTION;
flush privileges;

If you want to allow user root to connect to the mysql server from the host with ip 192.168.1.104

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.104' IDENTIFIED BY 'admin123' WITH GRANT OPTION;
flush privileges;

Change MySql Password

In MySQL 5.7 the password field has been removed from the mysql.user table and the new field is called "authentication_string".

Select the database:

use mysql;

Update the root password:

update user set authentication_string=password('new password') where user='root' and Host='localhost';

Refresh permissions:

flush privileges;

I hope the above content can help everyone. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • How to modify the root account password in MySQL
  • MySQL account password modification method (summary)

<<:  A very detailed summary of communication between Vue components

>>:  Implementation of nginx worker process loop

Recommend

MySQL cursor functions and usage

Table of contents definition The role of the curs...

Interpretation of the module for load balancing using nginx

Table of contents Two modules for using nginx for...

CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

1. Uninstalling MySQL 5.7 1.1查看yum是否安裝過mysql cd y...

Installation of CUDA10.0 and problems in Ubuntu

The correspondence between tensorflow version and...

Centos builds chrony time synchronization server process diagram

My environment: 3 centos7.5 1804 master 192.168.1...

How to use VIM editor in Linux

As a powerful editor with rich options, Vim is lo...

About the problem of vertical centering of img and span in div

As shown below: XML/HTML CodeCopy content to clip...

React diff algorithm source code analysis

Table of contents Single Node Diff reconcileSingl...

The difference between redundant and duplicate indexes in MySQL

MySQL allows you to create multiple indexes on a ...

Common failures and reasons for mysql connection failure

=================================================...

Do you know how to use Vue to take screenshots of web pages?

Table of contents 1. Install html2Canvas 2. Intro...