Detailed explanation of Apollo Configuration Center version 2.0 (source code reading)

Purpose

Deploy a single-node Apollo configuration center and include configurations for dev and pro environments.

Services that need to be deployed

Portal Service, Admin Service, Config Service (including Meta service and Eureka)

Architecture diagram

Insert image description here

Deployment diagram

Insert image description here

Deployment process:

Database script:

portaldb: https://github.com/apolloconfig/apollo/blob/master/scripts/sql/apolloportaldb.sql

configdb:https://github.com/apolloconfig/apollo/blob/master/scripts/sql/apolloconfigdb.sql

One-click startup command after successful deployment:

sh apollo-portal-2.0.1/scripts/startup.sh
sh apollodev/apollo-configservice-2.0.1/scripts/startup.sh
sh apollodev/apollo-adminservice-2.0.1/scripts/startup.sh
sh apollopro/apollo-configservice-2.0.1/scripts/startup.sh
sh apollopro/apollo-adminserv

Guess you like

Origin blog.csdn.net/Edward_hjh/article/details/130237064