linux centos7搭建apollo

Posted baobaoxiaokeai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux centos7搭建apollo相关的知识,希望对你有一定的参考价值。

登录linux服务器

JDK:1.8.0_161(提前准备好,不介绍安装了哦)

Maven:3.5.2(提前准备好,不介绍安装了哦)

mysql:5.7.18(5.7以上,不介绍安装了哦)

apollo:v1.4.0

 创建目录

mkdir -p /data/apollo
cd /data/apollo

下载apollo

wget https://codeload.github.com/ctripcorp/apollo/zip/v1.4.0
unzip v1.4.0

修改数据库配置

vi /data/apollo/apollo-1.4.0/scripts/build.sh
# apollo config db info
apollo_config_db_url=jdbc:mysql://120.78.127.53:3306/ApolloConfigDB?characterEncoding=utf8
apollo_config_db_username=ApolloConfigDB
apollo_config_db_password=ApolloConfigDB

# apollo portal db info
apollo_portal_db_url=jdbc:mysql://120.78.127.53:3306/ApolloPortalDB?characterEncoding=utf8
apollo_portal_db_username=ApolloPortalDB
apollo_portal_db_password=ApolloPortalDB

# meta server url, different environments should have different meta server addresses
dev_meta=http://localhost:8080
fat_meta=http://localhost:8080
uat_meta=http://localhost:8080
pro_meta=http://localhost:8080

启动apollo-configservice 端口8080

cd /data/apollo/apollo-1.4.0/apollo-configservice/target
unzip -o apollo-configservice-1.4.0-github.zip
sh /data/apollo/apollo-1.4.0/apollo-configservice/target/scripts/startup.sh

启动apollo-adminservice 端口8090

cd /data/apollo/apollo-1.4.0/apollo-adminservice/target
unzip -o apollo-adminservice-1.4.0-github.zip
sh /data/apollo/apollo-1.4.0/apollo-adminservice/target/scripts/startup.sh

启动apollo-adminservice 端口8070

cd /data/apollo/apollo-1.4.0/apollo-portal/target
unzip -o apollo-portal-1.4.0-github.zip
sh /data/apollo/apollo-1.4.0/apollo-portal/target/scripts/startup.sh

 

正确启动完成后 ip:8070 访问OK

已测试3次OK的了

 

apollo:https://gitee.com/lepdou/apollo

 

以上是关于linux centos7搭建apollo的主要内容,如果未能解决你的问题,请参考以下文章

Apollo Codegen 没有找到生成代码的操作或片段

linux,centos7上搭建LVS负载均衡

如何为 apollo 客户端生成片段类型?

centos下apollo1.7.1的搭建

为啥 Apollo 无法在 Xcode 中构建 - 只能有一个名为 ...的片段?

从 Apollo 缓存中读取特定类型的所有片段