正文
一.下载Apollo
mysql安装包:https://pan.baidu.com/s/1swrV9ffJnmz4S0mfkuBbIw
提取码:1111
二.运行apollo
# 解压到对应的文件夹 unzip apollo.zip -d /opt/apollo # 修改demo.sh cat demo.sh
apollo_config_db_url=jdbc:mysql://ip:3306/apolloconfigdb?characterEncoding=utf8 apollo_config_db_username=root apollo_config_db_password=xxx # apollo portal db info apollo_portal_db_url=jdbc:mysql://ip:3306/apolloportaldb?characterEncoding=utf8 apollo_portal_db_username=root apollo_portal_db_password=xxx config_server_url=http://0.0.0.0:8080 admin_server_url=http://0.0.0.0:8090 eureka_service_url=http://ip:port/eureka/ portal_url=http://0.0.0.0:8070
# 授予 demo.sh 权限 chmod 777 /opt/apollo/demo.sh # 启动 ./demo start # 查看启动日志 cd /opt/apollo/service tail -1000f apollo-service_optapolloservice.log # 查看进程 出现 8080 8090 8070说明成功 netstat -ntlp # 访问页面 http://ip:8070 账号为 apollo 密码为 admin