
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
1. 查看是否安装 telnet和 依赖的xinetdrpm -qa | grep telnet2.没有则安装yum install xinetdyum install telnetyum install telnet-server注意安装时要确保安装成功,如出现error: unpacking of archive failed on file /usr/bin/telnet;54254708:
Hystrix circuit short-circuited and is OPEN 异常引起这个问题的原因是在一个滚动窗口内,失败了二十个(默认),就会发生短路,短路时间默认为5秒,5秒之内拒绝所有的请求,之后开始运行。解决办法如下:1.设置熔断器失败的个数,默认为20个,这里我给了1000个,只有超过1000个才会发生短路。hystrix详细具体的配置信息可以谷歌一下,hystrix的配置。
解决Gateway设置context-path无效
1、在命令行查看mysql的版本号select version();2、拉取mysql镜像docker pull mysql//不指定版本默认拉latest版本docker pull mysql:8.0.16//拉取指定版本镜像3、创建数据目录和配置文件mkdir -p /usr/mysql/conf /usr/mysql/datachmod -R 755 /usr/mysql/4、创建配置文件v
spring:application:name: eureka-serverserver:port: 8761 #启动端口eureka:instance:hostname: eureka-serverinstance-id: ${spring.cloud.client.ipAddress}:${server.port}prefer-ip-address: trueclient:.
Jenkins构建时报:Could not resolve dependencies for projectCannot access nexus (http://110.110.110.42:8082/repository/maven-public/) in offline mode and the artifact org.springframework.boot:spring-...
最近使用Vue-element时,遇到了el-input输入卡顿问题,影响用户体验,如下el-input是这样写的,没有加额外的事件<el-input v-model="code" placeholder="code" type="textarea" :rows="1"/>解决方法使用.lazy修饰符使用.lazy的修饰符可以取消v-model的双向绑定,避免输入改变增加队列造成卡顿注
import Vue from 'vue'import App from './App'import router from './router'import ElementUI from 'element-ui';import 'element-ui/lib/theme-chalk/index.css';Vue.use(ElementUI);Vue.config.productionTip =
git:一个快速的分布式版本控制系统(工具),支持该工具的网站有Github等。shell:是linux、unix系统的外壳(区别于核),用于输入并执行命令(命令解析器)。bash:是shell的一种,最常用的shell之一。git Bash:方便在windows下使用git命令的模拟终端(windows自带的cmd功能太弱),而linux、unix可以直接使用git。git sh...