出现这个问题,一般的原因是无法连接到 docker hub,通过: systemctl stop docker echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io\"" | sudo te ...
分类:
数据库 时间:
2020-02-27 15:57:26
阅读次数:
376
1.配置http段配置upstreamjing{server192.168.0.25:80max_fails=3fail_timeout=20sweight=1;server192.168.0.28:80max_fails=3fail_timeout=20sweight=2;}#表示创建一个虚拟web组,name"jing"server段location/{proxy_pass
分类:
其他好文 时间:
2020-02-26 23:14:07
阅读次数:
90
reflux在flux的基础上,去掉了dispatcher. 在Reflux中,每一个Action本身就是一个Publisher(消息发布者),具有消息发布功能;而每一个Store除了作为数据存储之外,它还是一个Subscriber,或者叫做Listener(消息订阅者),可以通过监听Action, ...
分类:
其他好文 时间:
2020-02-26 16:42:57
阅读次数:
62
上一节(https://www.cnblogs.com/yuanwebpage/p/12362876.html)记录了多路IO复用的第一种方式select函数,以及其相应的缺点。本节记录多路IO复用的第二种方式epoll(在windows系统下叫IOCP)。 1. epoll相关函数 epoll函数 ...
分类:
其他好文 时间:
2020-02-26 12:51:17
阅读次数:
91
一、创建配置文件 如图所示,我们在resources文件夹中新建配置文件application.yml 结构图 二、一些基本配置 server: port: 8090 //配置端口 session-timeout: 30 tomcat.max-threads: 0 tomcat.uri-encodi ...
分类:
移动开发 时间:
2020-02-26 10:28:04
阅读次数:
115
上篇文章罗列了jenkins持续集成的步骤,其中踩到了不少坑,在本篇里记录下,希望能给大家一些解决问题的思路。 1.构建时,从github拉取代码失败: 报错部分代码如下: ERROR: Timeout after 10 minutes ERROR: Error cloning remote rep ...
分类:
其他好文 时间:
2020-02-26 10:23:46
阅读次数:
290
import axios from 'axios' const instance = axios.create({ baseURL: 'https://m.maizuo.com', timeout: 10000, // headers: { 'X-Client-Info': '{"a":"3000" ...
分类:
移动开发 时间:
2020-02-24 20:31:55
阅读次数:
91
#!/bin/bash n=0 max=11 while(($n<max)) do curl -sS --connect-timeout 1000 -m 60000 'http://wx.com/inex' //访问url n=($n+1) sleep 5 done 脚本写好后将添加到linux服务 ...
分类:
Web程序 时间:
2020-02-24 16:53:11
阅读次数:
177
1.properties文件指定Redis连接IP与密码 # Redis IP redis.host=127.0.0.1 redis.port=6379 #Redis PassWord redis.password=123 redis.timeOut=10000 # \u5BC6\u7801\u75 ...
分类:
编程语言 时间:
2020-02-24 16:52:53
阅读次数:
87
前提是主从异步复制环境要提前搭建好,然后再开启mysql增强半同步 环境:mysql5.7.26 主从异步复制早已部署好。 1.加载plugin插件 建议master和slave上全部执行(考虑到MHA的主从自动切换的环境) 在主库安装semisync_master.so和semisync_slav ...
分类:
数据库 时间:
2020-02-24 16:38:24
阅读次数:
89