How to use docker to deploy dubbo project

How to use docker to deploy dubbo project

1. First, use springboot to build a simple dubbo test program and introduce related dependencies

Writing a public interface API

insert image description here

insert image description here

Write a provider to implement UserSvice and expose the service

insert image description here

Write the provider configuration file

insert image description here

Writing a Consumer
Get user information by calling the provider's service and return

insert image description here

Consumer configuration file

insert image description here

Testing procedures completed

insert image description here

Start locally to see if the program can call the service to start Zookeeper normally

insert image description here

Start the provider first and then the consumer

insert image description here

Through the dubbo console, we can see that our service has been successfully registered.

insert image description here

By accessing the local, we can see that our service can be called normally and return information

insert image description here

2.Package the project and upload it to the server

Modify the configuration file and change the address of the registration center to the address of the server

insert image description here

insert image description here

Use Maven to package and write Dockerfile files

insert image description here

Upload the provider and consumer jar packages and the corresponding Dockerfile files to the server

insert image description here

insert image description here

3. Build the image

Pull the zookeeper image

docker pull zookeeper

Build the service provider image

insert image description here

insert image description here

Build a consumer image

insert image description here

View All Mirrors

insert image description here

Add Alibaba Cloud security group

insert image description here

Start the zookeeper image, provider, and consumer in sequence
Here we start by sharing the network with the host, –net = host
Because our test service is very simple, we can start it directly using --net = host mode without configuring the network. Containers can communicate with each other or we can start it using port mapping:

docker run -d -p 2181:2181 --name zk01 zookeeper

insert image description here

View all started containers

insert image description here

test:

Open the browser and enter the server's IP address to access the service through our server's address:

insert image description here

Successfully return information, then our service deployment is complete

This is the end of this article about the steps to deploy the dubbo project using docker. For more relevant content about deploying dubbo with 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 tutorial for beginners integrating dubbo with springboot
  • Detailed explanation of how to build services using dubbo+zookeeper+spring boot
  • Dubbo service configuration method based on annotations (example explanation)
  • Detailed explanation of the service reference process of Dubbo, a distributed service framework developed in Java
  • Java development distributed service framework Dubbo calling process
  • Detailed explanation of the example of Dubbo load balancing and cluster fault tolerance developed in Java
  • Detailed explanation of the service exposure process of Dubbo, a distributed service framework developed in Java

<<:  Use Vue3 for data binding and display list data

>>:  Things to note when writing self-closing XHTML tags

Recommend

WeChat Mini Program to Implement Electronic Signature

This article shares the specific code for impleme...

Example code for implementing ellipse trajectory rotation using CSS3

Recently, the following effects need to be achiev...

Linux swap partition (detailed explanation)

Table of contents linux 1. What is SWAP 2. What d...

Detailed explanation of virtual DOM and diff algorithm in react

The role of virtual DOM First of all, we need to ...

A brief introduction to Linux environment variable files

In the Linux system, environment variables can be...

Detailed tutorial on installing ElasticSearch 6.4.1 on CentOS7

1. Download the ElasticSearch 6.4.1 installation ...

How to automatically execute SQL statements when MySQL in Docker starts

When creating a MySQL container with Docker, some...

JavaScript to achieve simple drag effect

This article shares the specific code of JavaScri...

Detailed explanation of how to use the Vue date time picker component

This article example shares the specific code of ...

How to completely uninstall Docker Toolbox

Docker Toolbox is a solution for installing Docke...

MySQL establishes efficient index example analysis

This article uses examples to describe how to cre...