Detailed explanation of how to access MySQL database remotely through Workbench

Detailed explanation of how to access MySQL database remotely through Workbench

Preface

Workbench is installed on one computer, and now you need to access the MySQL database on another Ubuntu server. However, access to MySQL is not allowed by default. Considering security issues, it is not suitable to use the root user to access MySQL.

At this time we need to open the MySQL server and create a new user to access MySQL.

1. Open MySQL

The mysql configuration file is in the /etc/mysql/my.cnf file. There is a line in it that says bind-address = 127.0.0.1 , which means that only local access is allowed. Just comment this line.

2. Create a new mysql user

(1) First, enter the MySQL database locally.

(2) Create a user: GRANT ALL ON *.* to user@'IP' IDENTIFIED BY 'password'; user indicates the name of the user to be created; IP indicates which client wants to access the MySQL database; password indicates the password; and grant all permissions.

(3) FLUSH PRIVILEGES; refresh the MySQL system permission related tables, otherwise access will be denied. Restarting the database can also achieve this effect

3. Restart the database

Use the command sudo service mysql restart to restart the database

4. Use workbench to connect to the database

The host name indicates the database IP address that needs to be connected


The effect of successful connection

Click to enter the page

Note: You cannot access mysql in the Docker container environment in the Ubuntu server

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of the workbench example in mysql
  • mysql workbench installation and configuration tutorial under centOS
  • MySQL and MySQL Workbench Installation Tutorial under Ubuntu
  • Solution to the error "libpng12-0 package not installed" when installing mysql workbench in Ubuntu 16.10
  • How to use MySQL Workbench (picture and text)
  • How to solve the MySQL Workbench gnome-keyring-daemon error
  • MYSQL ZIP installation-free version configuration steps and graphical management tool mysql-workbench
  • MySQL WorkBench Management Operations MySQL Tutorial
  • How to export MySQL database relationship diagram using workbench
  • Mysql Workbench query mysql database method

<<:  Example of implementing dynamic verification code on a page using JavaScript

>>:  Linux kernel device driver memory management notes

Recommend

Implementing form submission without refreshing the page based on HTML

Using ajax to implement form submission without re...

Implement a simple data response system

Table of contents 1. Dep 2. Understand obverser 3...

Mysql error: Too many connections solution

MySQL database too many connections This error ob...

The whole process of realizing website internationalization using Vite2 and Vue3

Table of contents Preface Install vue-i18n Config...

Implementing a simple calculator based on JavaScript

This article shares the specific code of JavaScri...

Several practical scenarios for implementing the replace function in MySQL

REPLACE Syntax REPLACE(String,from_str,to_str) Th...

Learn MySQL index pushdown in five minutes

Table of contents Preface What is index pushdown?...

Detailed explanation of the use of vue-resource interceptors

Preface Interceptor In some modern front-end fram...

Vue integrates Tencent TIM instant messaging

This article mainly introduces how to integrate T...

Example of how to mosaic an image using js

This article mainly introduces an example of how ...

How to copy MySQL table

Table of contents 1.mysqldump Execution process: ...

How to add vim implementation code examples in power shell

1. Go to Vim's official website to download t...

How to use less in WeChat applet (optimal method)

Preface I am used to writing less/sass, but now I...