Detailed tutorial on installing nacos in docker and configuring the database

Detailed tutorial on installing nacos in docker and configuring the database

Environment Preparation

Docker environment MySQL 5.7 (official image does not support mysql8)
nacos

Install MySQL in Docker

Create a custom network (for container communication)

docker network create common-network

View Network

docker network ls 

Effect

Create a mount folder

//mysql configuration file mkdir -p /data/mysql/conf
//mysql data file path mkdir –p /data/mysql/data
//Log file path mkdir -p /data/mysql/logs

Pull the image and start it

docker run -p 3306:3306 --name mysql -d \
--restart=always \
--network common-network \
-v /data/mysql/conf:/etc/mysql/conf.d \
-v /data/mysql/logs:/logs \
-v /data/mysql/data:/data \
-e MYSQL_ROOT_PASSWORD=admin \
mysql:5.7

Install nacos in docker

Pull the image

//Query the nacos image docker search nacos
//Pull the image docker pull nacos/nacos-server
//View the docker images

Start the nacos container

docker run --network common-network --env MODE=standalone --name nacos -d -p 8848:8848 nacos/nacos-server

View the started container

docker ps 

insert image description here

Nacos configures the connection database to view the IP addresses of each container in the custom network

//View the network docker network ls
//View the network container docker network inspect common-network 

insert image description here
insert image description here

Enter the nacos container to modify the configuration

// Enter the container docker exec -it nacos bash
// Modify container configuration cd conf
vi application.properties 

insert image description here

Create a database table (script address)

https://github.com/alibaba/nacos/blob/develop/distribution/conf/nacos-mysql.sql

Restarting the container

docker restart nacos

nacos management platform (new configuration, which can then be viewed in the database)

http://ip:8848/nacos/index.html
nacos/nacos (user name and password) 

insert image description here
insert image description here

This is the end of this article about installing nacos in docker and configuring the database. For more information about installing nacos in docker, 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:
  • Detailed explanation of the implementation process of Nacos docker stand-alone mode deployment
  • Docker+nacos+seata1.3.0 installation and usage configuration tutorial
  • Teach you how to deploy nacos in docker

<<:  HTML tutorial, HTML default style

>>:  Solution for importing more data from MySQL into Hive

Recommend

Computed properties and listeners details

Table of contents 1. Calculated properties 1.1 Ba...

JavaScript to achieve simple drag effect

This article shares the specific code of JavaScri...

An Incomplete Guide to JavaScript Toolchain

Table of contents Overview Static type checking C...

css Get all elements starting from the nth one

The specific code is as follows: <div id="...

How to start/stop Tomcat server in Java

1. Project Structure 2.CallTomcat.java package co...

XHTML Getting Started Tutorial: XHTML Tags

Introduction to XHTML tags <br />Perhaps you...

Detailed explanation of CSS float property

1. What is floating? Floating, as the name sugges...

How to use JS code compiler Monaco

Preface My needs are syntax highlighting, functio...

What does the n after int(n) in MySQL mean?

You may already know that the length 1 of int(1) ...

Detailed explanation of process management in Linux system

Table of contents 1. The concept of process and t...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

Sample code for implementing form validation with pure CSS

In our daily business, form validation is a very ...