docker: Error response from daemon: driver failed programming external connectivity on endpoint tomcat (fe4dae10632933a062bc310a574fa6673576bd9350aa3c ...
分类:
其他好文 时间:
2020-07-09 12:19:28
阅读次数:
52
一、路由本质 在flask中: from flask import Flask app = Flask(__name__) @app.route('/',methods=['GET','POST'],endpoint='index') def index(): return 'index' if _ ...
分类:
其他好文 时间:
2020-07-03 01:00:29
阅读次数:
83
1.健康检查1.1健康检查概述应用在运行过程中难免会出现错误,如程序异常,软件异常,硬件故障,网络故障等,kubernetes提供HealthCheck健康检查机制,当发现应用异常时会自动重启容器,将应用从service服务中剔除,保障应用的高可用性。k8s定义了三种探针Probe:readinessprobes准备就绪检查,通过readiness是否准备接受流量,准备完毕加入到endpoint,
分类:
Web程序 时间:
2020-06-12 12:25:14
阅读次数:
74
阿里云的oss服务器存储文件: 1.在yml配置文件中配置:阿里云oss存储配置信息 1 oss: 2 endpoint: oss-cn-xxxxxxxx.aliyuncs.com 3 accessKey: LTA.... 4 accessKeySecret: LD..... 5 bucketNam ...
分类:
Web程序 时间:
2020-05-13 09:16:12
阅读次数:
74
Request execution error. endpoint=DefaultEndpoint{ serviceUrl='http://localhost:8761/eureka/ com.sun.jersey.api.client.ClientHandlerException: java.ne ...
分类:
其他好文 时间:
2020-05-08 16:05:19
阅读次数:
475
此文章主要是为了记录在使用 Flask 的过程中遇到的问题。本章主要讨论 render_template 函数的问题。 使用 Flask 的同学都应该知道,项目中的 url 和视图函数是在字典里一一对应着的,再详细一点,就是 url 对应着 endpoint,视图函数也对应着 endpoint,并且 ...
分类:
其他好文 时间:
2020-05-07 23:05:22
阅读次数:
75
esxi 6.0 登入报错: 503 Service Unavailable (Failed to connect to endpoint: [N7Vmacore4Http16LocalServiceSpecE:0x1f0b62d8] _serverNamespace = / _isRedirect ...
分类:
其他好文 时间:
2020-05-06 10:22:42
阅读次数:
579
``` org.springframework.boot spring-boot-starter-actuator ``` ``` # 显示详情 management: endpoint: health: show-details: always endpoints: web: exposure: ... ...
分类:
其他好文 时间:
2020-05-01 20:34:51
阅读次数:
86
查询监控项 select * from endpoint e inner join endpoint_counter c on e.id = c.endpoint_id where c.counter = "metric_name" and endpoint = "host_name" 模拟登录获取 ...
分类:
其他好文 时间:
2020-04-16 11:43:44
阅读次数:
113
一、背景 在本打算写一篇关于Identityserver4 的文章时候,却发现自己对EndPoint -终结点路由还不是很了解,故暂时先放弃了IdentityServer4 的研究和编写;所以才产生了今天这篇关于EndPoint (终结点路由) 的文章。 还是跟往常一样,打开电脑使用强大的Googl ...
分类:
Web程序 时间:
2020-04-15 21:25:40
阅读次数:
92