一、安装influxdb 1.安装和进入influxdb docker pull influxdb:1.7.9 sudo docker run -d -p 8083:8083 -p8086:8086 --expose 8090 --expose 8099 --name influxDbService ...
分类:
数据库 时间:
2021-05-03 11:55:57
阅读次数:
0
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to ...
分类:
其他好文 时间:
2021-04-30 12:41:09
阅读次数:
0
MyBatis是一个半ORM框架,它内部封装了JDBC,开发的时候只需要关注SQL语句本身就可以了,我们不需要花太多精力去处理原生的JDBC那一套流程,比如 加载驱动、创建connection连接、创建statement、创建SqlSesssionFactory、创建SQLSession等一系列比较 ...
分类:
其他好文 时间:
2021-04-30 12:12:11
阅读次数:
0
pymysql连接数据库报错: 解决方法: 将db = pymysql.connect(“localhost”,“root”,“root”,“testdb” )修改为 db = pymysql.connect(host=“localhost”, user=“root”, password=“root ...
分类:
数据库 时间:
2021-04-28 12:07:51
阅读次数:
0
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.2</version> </dependency> <depe ...
分类:
其他好文 时间:
2021-04-27 15:21:44
阅读次数:
0
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:
其他好文 时间:
2021-04-27 14:42:00
阅读次数:
0
select a.id,a.userid,c.openid from ko_answer_score a left join (select userid from ko_answer_log where answer_time > '2018-02-24 00:00:00' and answer_ ...
分类:
其他好文 时间:
2021-04-27 14:38:46
阅读次数:
0
1、安装 Homebrew, $/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh 命令输入后出现报错:curl: (7) Failed to connect ...
分类:
数据库 时间:
2021-04-26 13:47:29
阅读次数:
0
proxy_set_header client_body_buffer_size proxy_connect_timeout 代理和real 的超时 proxy_send_timeout proxy_read_timeout proxy_buffer_size proxy_buffers ...
分类:
其他好文 时间:
2021-04-26 13:41:48
阅读次数:
0
利用docker-compose+nginx,实现负载均衡部署,根据官网的例子,还是有一定的坑,摸索一番之后终于找到解决方案。 1.创建docker-compose.yaml文件 version: '3.7' # starts 4 docker containers running minio se ...
分类:
其他好文 时间:
2021-04-26 13:34:12
阅读次数:
0