使用携程apollo go版本app.properties的ip端口配置问题

2024-05-25 05:18

本文主要是介绍使用携程apollo go版本app.properties的ip端口配置问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

携程apollo, https://github.com/ctripcorp/apollo

背景

公司需要统一管理各个配置文件,而且apollo支持热发布以及不同环境不同集群配置等特征,所以选择使用apollo。

 

https://github.com/ctripcorp/apollo/wiki/Go%E3%80%81Python%E3%80%81NodeJS%E3%80%81PHP%E7%AD%89%E5%AE%A2%E6%88%B7%E7%AB%AF%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97

apollo的go客户端版本有3个。

 

3个版本的都进行了尝试。

zouyx/agollo的app.properties里面是namespacesName,是string类型

philchia/agollo的app.properties里面是namespaceNames,  是string类型的数组

shima-park/agollo的app.properties里面是namespaceNames,  是string类型的数组

app.properties如下

{"appId":"demo1","cluster":"default","namespaceNames":"apollo_demo","ip":"x.x.x.x:8070"
}

具体内容都是公司自己在apollo里面配置的,cluster默认就是default。

注意,我这里的ip的端口是8070,因为我让其他同事给我的地址就是http:/x.x.x.x:8070

导致我总是测试不通过的问题就在于这个ip的端口这里,这个端口应该是8080

感觉写的乱糟糟的,所以如果你在测试go版本的时候请记得把ip后面的端口修改为8080.

根据打印的日志可见请求这个ip会返回给我一个html,把这个html拿出来以后其实是类似apollo的登录的页面。

   而追踪代码发现,代码里面会把这个html转为json,进而转换为相应的结构体,由于这个html无法转为json,因此在

zouyx/agollo的app_config.go ##

syncServerIpListSuccessCallBack()这个方法总是报错,无法解析的json

 

在  philchia/agollo client.go中的##preload()

 

在shima-park/agollo 里面的agollo.go,报错如下:

 LoadConfigFromNonCache Error invalid character '<' looking for beginning of value

 

以上3个错误都是由于配置文件app.properties里面的ip配置的端口不对导致的。由于端口不对,返回的是html,不是json格式的数据,就会导致解析出错。

发现问题是测试了携程apollo里面给的【演示环境】https://github.com/ctripcorp/apollo

地址是:106.12.25.204:8070,可以根据给定的账号密码登录去建立测试的项目

但是配置文件里面写的是8080端口。

一定要注意端口

 

 

 

 

以下是测试的时候打印的Html

<!DOCTYPE html> 
<html lang="en" ng-app="login">
<head><meta charset="UTF-8"><title>Apollo配置中心</title><link rel="icon" href="./img/config.png"><link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css"><link rel="stylesheet" href="vendor/font-awesome.min.css"><style type="text/css">@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,100,700,500);body {padding-top: 90px;background: #F7F7F7;color: #666666;font-family: 'Roboto', sans-serif;font-weight: 100;}body {width: 100%;background: -webkit-linear-gradient(left, #22d686, #24d3d3, #22d686, #24d3d3);background: linear-gradient(to right, #22d686, #24d3d3, #22d686, #24d3d3);background-size: 600% 100%;}.panel {border-radius: 5px;}label {font-weight: 300;}.panel-login {border: none;-webkit-box-shadow: 0px 0px 49px 14px rgba(188, 190, 194, 0.39);-moz-box-shadow: 0px 0px 49px 14px rgba(188, 190, 194, 0.39);box-shadow: 0px 0px 49px 14px rgba(188, 190, 194, 0.39);}.panel-login .checkbox input[type=checkbox] {margin-left: 0px;}.panel-login .checkbox label {padding-left: 25px;font-weight: 300;display: inline-block;position: relative;}.panel-login .checkbox {padding-left: 20px;}.panel-login .checkbox label::before {content: "";display: inline-block;position: absolute;width: 17px;height: 17px;left: 0;margin-left: 0px;border: 1px solid #cccccc;border-radius: 3px;background-color: #fff;-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;transition: border 0.15s ease-in-out, color 0.15s ease-in-out;}.panel-login .checkbox label::after {display: inline-block;position: absolute;width: 16px;height: 16px;left: 0;top: 0;margin-left: 0px;padding-left: 3px;padding-top: 1px;font-size: 11px;color: #555555;}.panel-login .checkbox input[type="checkbox"] {opacity: 0;}.panel-login .checkbox input[type="checkbox"]:focus + label::before {outline: thin dotted;outline: 5px auto -webkit-focus-ring-color;outline-offset: -2px;}.panel-login .checkbox input[type="checkbox"]:checked + label::after {font-family: 'FontAwesome';content: "\f00c";}.panel-login > .panel-heading .tabs {padding: 0;}.panel-login h2 {font-size: 20px;font-weight: 300;margin: 30px;}.panel-login > .panel-heading {color: #848c9d;background-color: #e8e9ec;border-color: #fff;text-align: center;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom: 0px;padding: 0px 15px;}.panel-login .form-group {padding: 0 30px;}.panel-login > .panel-heading .login {padding: 20px 30px;border-bottom-leftt-radius: 5px;}.panel-login > .panel-heading .register {padding: 20px 30px;background: #2d3b55;border-bottom-right-radius: 5px;}.panel-login > .panel-heading a {text-decoration: none;color: #666;font-weight: 300;font-size: 16px;-webkit-transition: all 0.1s linear;-moz-transition: all 0.1s linear;transition: all 0.1s linear;}.panel-login > .panel-heading a#register-form-link {color: #fff;width: 100%;text-align: right;}.panel-login > .panel-heading a#login-form-link {width: 100%;text-align: left;}.panel-login input[type="text"], .panel-login input[type="email"], .panel-login input[type="password"] {height: 45px;border: 0;font-size: 16px;-webkit-transition: all 0.1s linear;-moz-transition: all 0.1s linear;transition: all 0.1s linear;-webkit-box-shadow: none;box-shadow: none;border-bottom: 1px solid #e7e7e7;border-radius: 0px;padding: 6px 0px;}.panel-login input:hover,.panel-login input:focus {outline: none;-webkit-box-shadow: none;-moz-box-shadow: none;box-shadow: none;border-color: #ccc;}.btn-login {background-color: #E8E9EC;outline: none;color: #2D3B55;font-size: 14px;height: auto;font-weight: normal;padding: 14px 0;text-transform: uppercase;border: none;border-radius: 0px;box-shadow: none;}.btn-login:hover,.btn-login:focus {color: #fff;background-color: #2D3B55;}.forgot-password {text-decoration: underline;color: #888;}.forgot-password:hover,.forgot-password:focus {text-decoration: underline;color: #666;}.btn-register {background-color: #E8E9EC;outline: none;color: #2D3B55;font-size: 14px;height: auto;font-weight: normal;padding: 14px 0;text-transform: uppercase;border: none;border-radius: 0px;box-shadow: none;}.btn-register:hover,.btn-register:focus {color: #fff;background-color: #2D3B55;}</style>
</head>
<body><div class="container" ng-controller="LoginController"><div class="row"><div class="col-md-6 col-md-offset-3"><div class="panel panel-login"><div class="panel-body"><div class="row"><div class="col-lg-12"><form id="login-form" action="/signin" method="post" role="form" style="display: block;"><p class="text-center"><img src="img/logo-detail.png" style="width: 500px;"></p><div class="form-group"><input type="text" name="username" tabindex="1" class="form-control"placeholder="Username" value=""></div><div class="form-group"><input type="password" name="password" tabindex="2"class="form-control" placeholder="Password"></div><div class="form-group" style="color: red"><small ng-bind="info"></small></div><div class="col-xs-12 form-group pull-right"><input type="submit" name="login-submit" id="login-submit" tabindex="4"class="form-control btn btn-login" value="登录"></div></form></div></div></div></div></div></div>
</div>
<!-- jquery.js -->
<script src="vendor/jquery.min.js" type="text/javascript"></script>
<!-- bootstrap.js -->
<script src="vendor/bootstrap/js/bootstrap.min.js" type="text/javascript"></script><!--angular-->
<script src="vendor/angular/angular.min.js"></script>
<script src="vendor/angular/angular-resource.min.js"></script>
<script src="vendor/angular/angular-toastr-1.4.1.tpls.min.js"></script>
<script src="vendor/angular/loading-bar.min.js"></script><script type="application/javascript" src="scripts/app.js"></script>
<script type="application/javascript" src="scripts/AppUtils.js"></script>
<script type="application/javascript" src="scripts/directive/directive.js"></script>
<script type="application/javascript" src="scripts/controller/LoginController.js"></script><script type="application/javascript">$(function () {$('#login-form-link').click(function (e) {$("#login-form").delay(100).fadeIn(100);$("#register-form").fadeOut(100);$('#register-form-link').removeClass('active');$(this).addClass('active');e.preventDefault();});$('#register-form-link').click(function (e) {$("#register-form").delay(100).fadeIn(100);$("#login-form").fadeOut(100);$('#login-form-link').removeClass('active');$(this).addClass('active');e.preventDefault();});});</script>
</body>
</html>

 

这篇关于使用携程apollo go版本app.properties的ip端口配置问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1000585

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

详谈redis跟数据库的数据同步问题

《详谈redis跟数据库的数据同步问题》文章讨论了在Redis和数据库数据一致性问题上的解决方案,主要比较了先更新Redis缓存再更新数据库和先更新数据库再更新Redis缓存两种方案,文章指出,删除R... 目录一、Redis 数据库数据一致性的解决方案1.1、更新Redis缓存、删除Redis缓存的区别二

oracle数据库索引失效的问题及解决

《oracle数据库索引失效的问题及解决》本文总结了在Oracle数据库中索引失效的一些常见场景,包括使用isnull、isnotnull、!=、、、函数处理、like前置%查询以及范围索引和等值索引... 目录oracle数据库索引失效问题场景环境索引失效情况及验证结论一结论二结论三结论四结论五总结ora

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

element-ui下拉输入框+resetFields无法回显的问题解决

《element-ui下拉输入框+resetFields无法回显的问题解决》本文主要介绍了在使用ElementUI的下拉输入框时,点击重置按钮后输入框无法回显数据的问题,具有一定的参考价值,感兴趣的... 目录描述原因问题重现解决方案方法一方法二总结描述第一次进入页面,不做任何操作,点击重置按钮,再进行下

springboot整合 xxl-job及使用步骤

《springboot整合xxl-job及使用步骤》XXL-JOB是一个分布式任务调度平台,用于解决分布式系统中的任务调度和管理问题,文章详细介绍了XXL-JOB的架构,包括调度中心、执行器和Web... 目录一、xxl-job是什么二、使用步骤1. 下载并运行管理端代码2. 访问管理页面,确认是否启动成功

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —