Use MySQL to open/modify port 3306 and open access permissions in Ubuntu/Linux environment

Use MySQL to open/modify port 3306 and open access permissions in Ubuntu/Linux environment

Operating system: Ubuntu 17.04 64-bit

MySQL version: MySQL 5.7

1. Check whether port 3306 is open

netstat -an | grep 3306

If you see something like the following, the port is not open:

2. Modify access permissions

Enter the directory "etc/mysql/mysql.conf.d/", as shown below:

In this directory, there is a configuration file "mysqld.cnf", as shown below:

Open this configuration file:

sudo vim mysqld.cnf

There is a long comment after opening the file. Don't worry about it. Just look at the part in the picture below:

Note the red comment in the first line of the image above:

"By default we only accept connections from localhost", these sentences mean "by default we only allow local services to access MySQL", so we need to comment out the following configuration, just add a pound sign in front of it:

# bind-address = 127.0.0.1

As shown in the figure below, this configuration has also become a comment:


To expand our thinking, if we want to restrict access to MySQL to only a certain application server for security reasons, then we actually just need to adjust this configuration item.

3. Modify the port number

Still in this configuration file, see the configuration items in the middle part of this configuration file:

We need to add a port configuration:

port = 3306

After adding, the entire configuration file looks like this:

Remember to save the file after modifying it.

4. Open access rights to the root account

In the third step, we only removed the local access restrictions, but we still did not set the account permissions.

Restart the MySQL service and enter the MySQL console:

service mysql stop
service mysql start
mysql -h 127.0.0.1 -u root -p 


Switch to the system database "mysql":

use mysql; 


Take a look at all the tables in the database:

show tables; 


We need to modify the last table "user" in the figure above and see what fields this table has:

desc user; 


There are so many fields that I won’t list them all. We are only going to use the "Host" and "User" fields:

select host,user from user; 

In this table, we see that the root user can only access the MySQL service locally, so we need to change it to "%", which means that the root account can access the database service no matter where it is:

update user set host='%' where user='root'; 


Note that this modification is not recommended in a real production environment because the security risk is too great. I suggest changing the host item of the root user to a specified IP address, or keep localhost.

The last setting opens all permissions for the root account:

grant all privileges on *.* to 'root'@'%' identified by 'your root account password';

Make various permission settings take effect immediately:

flush privileges;​

5. Confirm the status of port 3306 again

netstat -an | grep 3306

If you see the following picture, it’s OK:

This is the end of this article about using MySQL to open/modify port 3306 and open access permissions in Ubuntu/Linux environment. For more information about opening MySQL 3306 and opening access permissions under Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySQL multi-instance deployment and installation guide under Linux
  • MySQL 8.0.25 installation and configuration tutorial under Linux
  • How to start multiple MySQL databases on a Linux host
  • Steps and pitfalls of upgrading linux mysql5.5 to mysql5.7
  • Solve the problem of no my.cnf file in /etc when installing mysql on Linux
  • Steps to install MySQL using Docker under Linux
  • Detailed explanation of how to manually deploy a remote MySQL database in Linux
  • Detailed explanation of the idea of ​​using mysqldump+expect+crontab to implement mysql periodic cold backup in linux
  • Aliyun Linux compile and install php7.3 tengine2.3.2 mysql8.0 redis5 process detailed explanation
  • How to implement scheduled backup of MySQL in Linux
  • How to reset the root password in Linux mysql-5.6
  • MySQL scheduled backup solution (using Linux crontab)
  • Detailed tutorial on installing MySQL database in Linux environment
  • How to automatically backup mysql remotely under Linux
  • Linux MySQL root password forgotten solution
  • Detailed tutorial on installing mysql-8.0.20 under Linux
  • How to use MyCat to implement MySQL master-slave read-write separation in Linux

<<:  Solve the problem of MySQL server actively disconnecting when there is no operation timeout

>>:  A brief talk about JavaScript variable promotion

Recommend

Randomly generate an eight-digit discount code and save it to the MySQL database

Currently, many businesses are conducting promoti...

Detailed analysis of several situations in which MySQL indexes fail

1. Leading fuzzy query cannot use index (like ...

The use of setState in React and the use of synchronous and asynchronous

In react, if you modify the state directly using ...

How to modify the root password of mysql under Linux

Preface The service has been deployed on MySQL fo...

Summary of the use of Vue computed properties and listeners

1. Computed properties and listeners 1.1 Computed...

Solve the problem of inconsistency between mysql time and system time in docker

Recently, when I installed MySQL in Docker, I fou...

HTML form application includes the use of check boxes and radio buttons

Including the use of check boxes and radio buttons...

Javascript scope and closure details

Table of contents 1. Scope 2. Scope Chain 3. Lexi...

Solve the error of installing VMware Tools on Ubuntu 18.04

1. According to the online tutorial, the installa...

JavaScript implements front-end countdown effect

This article shares the specific code of JavaScri...

Solution to using html2canvas to process Dom elements with Baidu map into images

Problem 1: Baidu Map uses tiled images (the map i...

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...

MySQL database must know sql statements (enhanced version)

This is an enhanced version. The questions and SQ...