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的主要内容,如果未能解决你的问题,请参考以下文章