How to connect Navicat to the docker database on the server

How to connect Navicat to the docker database on the server

Start the mysql container in docekr

Use command:

docker run -p 3306:3306 --name mysql01 -e MYSQL_ROOT_PASSWORD=xxx -d mysql:5.7

-p 3306:3306 means mapping port 3306 in docker to port 3306 on the host. –name mysql01 means the container is named mysql01
-e MYSQL_ROOT_PASSWORD=xxx Set the password of mysql, which will be used later
-d mysql:5.7 Use mysql image

Results after successful operation

insert image description here

Open the server port 3306 for access

Configure inbound rules in the security group to allow remote access to port 3306.

insert image description here

Navcat Visits

Click File, Create New Connection
insert image description here

The connection name is the server IP address. The password is the password used to enable the Docker container configuration above. Click OK to connect.

This is the end of this article about Navicat connecting to the docker database on the server side. For more information about Navicat connecting to the docker database, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Perfect solution to the problem that Navicat cannot connect after installing mysql in docker
  • After installing Navicat in MySQL, 2059 appears, Authentication plugin and local link virtual machine docker, remote link server

<<:  Basic HTML directory problem (difference between relative path and absolute path)

>>:  CSS scroll-snap scroll event stop and element position detection implementation

Recommend

SQL implementation of LeetCode (196. Delete duplicate mailboxes)

[LeetCode] 196.Delete Duplicate Emails Write a SQ...

MySQL foreign key (FOREIGN KEY) usage case detailed explanation

Introduction: The disadvantages of storing all da...

How to make a website front end elegant and attractive to users

The temperament of a web front-end website is a fe...

React implements a highly adaptive virtual list

Table of contents Before transformation: After tr...

How to handle token expiration in WeChat Mini Programs

Table of contents Conclusion first question Solut...

How to monitor oracle database using zabbix agent2

Overview In zabbix version 5.0 and above, a new f...

Introduction to scheduled tasks in Linux system

Table of contents 1. Customize plan tasks 2. Sync...

Diagram of the process of implementing direction proxy through nginx

This article mainly introduces the process of imp...

How to recover accidentally deleted messages files in Linux

If there are files that are being used by a proce...

Vue Basic Tutorial: Conditional Rendering and List Rendering

Table of contents Preface 1.1 Function 1.2 How to...

Detailed installation and use of virtuoso database under Linux system

I've been researching some things about linke...

mysql server is running with the --skip-grant-tables option

The MySQL server is running with the --skip-grant...