MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. P ...
分类:
数据库 时间:
2020-10-20 16:33:15
阅读次数:
35
1.下载logstash https://www.elastic.co/cn/downloads/logstash 2.配置 input { stdin { } jdbc { type => "tb_role" jdbc_connection_string => "jdbc:mysql://192. ...
分类:
数据库 时间:
2020-10-19 22:59:20
阅读次数:
35
表字段的增、删、改、查 增:alter table 表名 add 字段名 数据类型 【位置】; 删:alter table 表名 drop 字段名; 改:alter table 表名 modify 字段 数据类型 【位置】 重命名:alter table 表名 change oldname newn ...
分类:
数据库 时间:
2020-10-19 22:25:48
阅读次数:
31
去年年底安装将我的Thinkpad T450的双系统中的opensuse换成了Manjaro,折腾安装了下CUDA,是为记录。 基本安装 NVIDIA显卡安装 Manjaro系统安装显卡比较简单,它有一个命令 sudo mhwd -a [pci or usb connection] [free or ...
分类:
编程语言 时间:
2020-10-18 16:50:37
阅读次数:
33
题意简述:求对于树上每个点 \(x\) ,包含它的链的并集的大小之和,也可描述成,求对于树上每个点 \(x\) ,它能够到达的点的个数之和。 不难发现,对于点 \(x\) 而言,通过树上的路径,它能够到达的点一定构成一棵树。并且这棵树上一定含有包含 \(x\) 点的 \(s_i,t_i\) 。那么也 ...
分类:
编程语言 时间:
2020-10-18 10:07:36
阅读次数:
28
一、Internet连接共享 Internet连接共享,英文名Internet Connection Sharing,简称ICS。这个由因特网提供的共享需要一台计算机作为主机,该计算机与 Internet 连接后可以连接到网络中的其他计算机。Internet连接共享可以使网络中的其他计算机连接到主机 ...
分类:
Web程序 时间:
2020-10-16 10:38:31
阅读次数:
83
Redis问题 MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are dis ...
分类:
数据库 时间:
2020-10-13 17:08:07
阅读次数:
33
参考:https://www.runoob.com/w3cnote/jdbc-use-guide.html DbUtil 即jdbc工具类,用于提供Connection对象 public class DbUtil { public static final String URL = "jdbc:my ...
分类:
数据库 时间:
2020-10-12 20:03:33
阅读次数:
36
Mysql为数据库管理系统(DBMS) 使用cmd登录: 先输入Mysql -h ip地址 -P 端口号 -u root -p,然后输入密码。 DDL:数据库定义语言。 DML:数据库操纵语言。 DQL:数据库查询语言。 DCL:数据库控制语言。 ##DDL: 查看已有数据库 show databa ...
分类:
数据库 时间:
2020-10-10 17:44:10
阅读次数:
23
[root@jinkang-e2elog rabbitmq]# cat topic-send.py #!/usr/bin/env python # -*- coding: UTF-8 -*- import pika import sys connection = pika.BlockingConne ...
分类:
其他好文 时间:
2020-10-09 21:38:16
阅读次数:
40