ApolloConfig:作为分布式架构的配置管理中心。
… 点击前往github
这里主要介绍安装
你可以看
这个下面的就不用看了~
了解如何使用(我还没写)
就上面三个步骤就完成安装了
ApolloPortalDB -> SQL
> mysql -h10.10.10.10 -uroot -pPASSWORD -DApolloPortalDB < /data/server/sql/apolloportaldb.sql
ApolloConfigDB -> SQL
> mysql -h10.10.10.10 -uroot -pPASSWORD -DApolloConfigDB < /data/server/sql/apolloconfigdb.sql
写博客的时候是v1.9.2,如果需要最新版点击
链接~
config -> 点我下载
admin -> 点我下载
protal -> 点我下载
> unzip apollo-configservice-1.9.2-github.zip -d apollo-configservice
> vi apollo-configservice/config/application-github.properties
# 数据库
spring.datasource.url = jdbc:mysql://我的:3306/ApolloConfigDB?characterEncoding=utf8&&serverTimezone=Asia/Shanghai&useSSL=false
spring.datasource.username = root
spring.datasource.password = root
> sh ./apollo-configservice/scripts/startup.sh
> unzip apollo-adminservice-1.9.2-github.zip -d apollo-adminservice
> vi apollo-adminservice/config/application-github.properties
# 数据库
spring.datasource.url = jdbc:mysql://我的:3306/ApolloConfigDB?characterEncoding=utf8&&serverTimezone=Asia/Shanghai&useSSL=false
spring.datasource.username = root
spring.datasource.password = root
> sh ./apollo-adminservice/scripts/startup.sh
> unzip apollo-portal-1.9.2-github.zip -d apollo-portal
> vi apollo-portal/config/application-github.properties
# 数据库
spring.datasource.url = jdbc:mysql://我的:3306/ApolloPortalDB?characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false
spring.datasource.username = root
spring.datasource.password = root
> vi apollo-portal/config/apollo-env.properties
local.meta=http://localhost:8080
dev.meta=http://localhost:8080
fat.meta=http://localhost:8080
uat.meta=http://localhost:8080
lpt.meta=http://localhost:8080
pro.meta=http://localhost:8080
> sh ./apollo-portal/scripts/startup.sh