Ubuntu 15.04 opens mysql remote port 3306

Ubuntu 15.04 opens mysql remote port 3306

Ubuntu 15.04 opens MySQL remote port 3306. All the following operations are performed in the terminal.

First check if the port is open netstat -an | grep 3306

This is a screenshot of opening port 3306. Previously it was displayed as . . . 127.0.0.1:3306 . . .

Open the mysql configuration file vi /etc/mysql/mysql.conf.d/mysqld.cnf
Unregister bind-address = 127.0.0.1

The bottom line of the screenshot is logout

Restart Ubuntu

Check again whether the port is open netstat -an | grep 3306

At this point port 3306 is open and you can authorize access to mysql using sudo
Command: sudo mysql -u root -p

Enter the local password the first time and the mysql password the second time

Authorize the root user to all connections: grant all privileges on *.* to 'root'@'%' identified by 'xxxxxx';

The last one is the mysql password

Let the permissions take effect immediately: flush privileges;

Now all operations are completed and you can connect to this MySQL database server from any host.

Solution to MySQL remote connection failure: https://www.jb51.net/article/103770.htm

Centos7.1 firewall open port: https://www.jb51.net/article/103777.htm

CentOS 7 open ports: https://www.jb51.net/article/103773.htm

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 enable remote connection to MySQL database
  • Detailed explanation of remote connection to MySQL authorization method
  • Solution to MySQL remote connection loss problem (Lost connection to MySQL server)
  • mysql remote connection database method collection
  • How to configure mysql to allow remote connections
  • The Ultimate Method for MySQL Remote Access Settings
  • Summary of how to set remote access permissions for MySQL database
  • How to solve the problem of slow remote connection to MySQL (mysql_connect opens the connection slowly)
  • How to set up remote access to mysql database
  • Solution to Navicat's inability to remotely connect to MySQL

<<:  Linux concurrent execution is simple, just do it this way

>>:  The implementation process of Linux process network traffic statistics

Recommend

Ten important questions for learning the basics of Javascript

Table of contents 1. What is Javascript? 2. What ...

How to install php7 + nginx environment under centos6.6

This article describes how to install php7 + ngin...

Use of MySQL truncate table statement

The Truncate table statement is used to delete/tr...

Explaining immutable values ​​in React

Table of contents What are immutable values? Why ...

CentOS7 upgrade kernel kernel5.0 version

Upgrade process: Original system: CentOS7.3 [root...

Vue practice of preventing multiple clicks

Generally, click events will be divided into diff...

How to solve the problem of FileZilla_Server:425 Can't open data connection

When installing FileZilla Server on the server, t...

Examples of clearfix and clear

This article mainly explains how to use clearfix a...

Definition and usage of MySQL cursor

Creating a Cursor First, create a data table in M...

A brief discussion on the definition and precautions of H tags

Judging from the results, there is no fixed patte...

MySQL database table and database partitioning strategy

First, let's talk about why we need to divide...

How to realize vertical arrangement of text using CSS3

In a recent project, I wanted to align text verti...

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...