Mongodb的ReplicaSet实验 标签(空格分隔): MongoDB 本文验证了:要保证mongodb RS集群在宕机情况下的可用性,至少需要三台机器。 目的 本实验的ReplicaSet集群为 1*Primary, 1*Secondary, n*Arbiter。 目的是为了验证: 三机环境 ...
分类:
数据库 时间:
2021-06-13 10:01:36
阅读次数:
0
问题背景 什么是TCP timestamps(TCP 时间戳)? The remote host implements TCP Timestamps, as defined by RFC1323 (https://www.ietf.org/rfc/rfc1323.txt). A side effec ...
分类:
移动开发 时间:
2021-06-13 09:49:28
阅读次数:
0
pymysql连接报错: _init__() takes 1 positional argument but 5 positional arguments (and 1 keyword-only argument) were given 解决方法: 连接方法加属性名称,例 pymysql.conne ...
分类:
其他好文 时间:
2021-06-13 09:42:22
阅读次数:
0
DOS常用命令 打开cmd Win键+R 输入cmd 打开控制台 在任意的文件夹下面,按住Shift键 + 鼠标右键点击,在此处打开命令行窗口 常用的dos命令 #盘符切换: 盘名: #查看当前目录下的所有文件: dir #切换目录: cd change directory cd.. 返回上一目录 ...
分类:
其他好文 时间:
2021-06-13 09:40:40
阅读次数:
0
1、自动配置好tomcat: 引入spring-boot-starter-web依赖会创建一个8080端口的内嵌Tomcat(可以通过application.yaml配置文件的server.port配置自定义端口[e.g: server.port=8888]) 2、自动配置好SpringMVC、We ...
分类:
其他好文 时间:
2021-06-13 09:38:04
阅读次数:
0
常用Dos命令 #盘符切换 c: d: #查看当前目录下所有文件 dir #切换目录 cd cd \d #创建目录 md #删除目录 rd #创建文件 cd> #删除文件 del #测试网络 ping www.baidu.com #查看IP地址 ipconfig ...
分类:
其他好文 时间:
2021-06-11 18:07:55
阅读次数:
0
总结下碰到的BUG,之前遇到忘记记录下来,导致又进行了重复无用的搜索定位解决BUG操作。 问题:Non-resolvable parent POM for com.alili:base-model:[unknown-version]: Failure to find com.alili:parent ...
分类:
编程语言 时间:
2021-06-10 17:48:24
阅读次数:
0
#!/bin/bash# 设置mysql的登录用户名和密码(根据实际情况填写)mysql_user="root"mysql_password="skyland"mysql_host="10.230.130.10"mysql_port="3306"mysql_charset="utf8mb4" # 备 ...
分类:
数据库 时间:
2021-06-10 17:38:08
阅读次数:
0
/** * 跨域支持 * * @param registry 跨域配置实体 */ @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowCredentials(t ...
分类:
其他好文 时间:
2021-06-09 15:29:21
阅读次数:
0
springCloud 1、创建一个简单的springcloud项目 先看基本项目结构 springcloud:父项目,总项目,对jar包版本等管控 springcloud-api:api主要是提供实体类的一个api模块 spring-cloud-provide-***-host:这个是一个服务提供 ...
分类:
编程语言 时间:
2021-06-08 23:36:55
阅读次数:
0