- 博客(24)
- 资源 (1)
- 收藏
- 关注
转载 【转载】为什么有binlog还要redo log
版权声明:本文为优快云博主「澎仔」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.youkuaiyun.com/ab1024249403/article/details/110099571目录什么是WALMySQL中更新一条语句的流程两阶段提交中,MySQL异常重启(crash),是如何保证数据完整性的?为什么不仅使用binlog来支持崩溃恢复,并且还能支持归档为什么不仅使用redo log,不要binlog可以吗?r
2021-09-21 15:59:29
1438
原创 window terminal 配置
// This file was initially generated by Windows Terminal 1.0.1401.0// It should still be usable in newer versions, but newer versions might have additional// settings, help text, or changes that you will not see unless you clear this file// and let us .
2021-01-03 11:11:42
346
1
转载 deepin/ubuntu 系统 安装rtl8821ce 无线驱动
git clonehttps://github.com/tomaspinho/rtl8821cecd rtl8821cemakesudo make installsudo modprobe -a 8821ce
2020-08-16 12:21:45
2464
原创 Ubuntu 20.04 没有DSL连接
问题:升级ubuntu 20.04后,宽带连接失败。解决:通过终端连接network manager进行设置:root@oliver:/home/oliver/桌面# nmcli con edit type pppoe con-name "oliver"===| nmcli 交互式连接编辑器 |===正在添加新的 "pppoe" 连接输入 "help" 或 "?" 查看可用的...
2020-05-03 19:29:38
4235
1
原创 Shell学习笔记
《shell编程从入门到精通》张昊编著 学习笔记目录Linux程序的3种运行方法I/O重定向标准输入标准输出标准错误管道重定向Linux Shellshell语言是 动态类型语言,弱类型语言shell的3种变量用户变量位置变量环境变量替换运算符模式匹配运算符单引号和双引号的区别函数shell执行命令的顺序函数定义条...
2020-02-02 20:20:11
770
原创 WSL1升级WSL2和docker安装笔记
1. WSL(Windows Subsystem for Linux)2. 系统环境(非必须,但目前只有预览版有WSL2)版本:win10家庭中文版 操作系统版本:预览版19041.13. WSL功能启用,如下,设置后重启。4. 应用商店Windows Store搜索WSL,选择心喜的系统5. 安装完后,WIN + R ,输入bash,默认会自动进入第...
2019-12-31 01:15:20
4933
1
原创 Idea Database窗口连接MySQL8.0报错
报错信息:java.lang.RuntimeException: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You mus...
2019-08-11 19:13:58
1510
原创 centos格式化U盘
1. root用户登陆2. fdisk -l /dev/sd* 查看U盘,如 sdc13. 格式化 FAT格式: mkfs -t vfat -I /dev/sdc1 NTFS格式: a. 安装NTFS支持 (ntfs-3g_ntfsprogs) ...
2018-12-22 21:52:36
5700
原创 centOS7安装DB2 Express-C
参考:https://www.ibm.com/support/knowledgecenter/zh/SSEPGG_11.1.0/com.ibm.db2.luw.welcome.doc/doc/welcome.htmlhttp://blog.51cto.com/feature09/2046506 当前安装的DB2版本是: v11.1_linuxx64_expc.tar.gzro...
2018-08-28 22:59:07
3623
原创 RESTful风格 GET、POST、PUT、DELETE前端请求示例
GET请求后端: @ResponseBody @GetMapping("/user/{id}") public User selectUserById(@PathVariable("id") Integer id){ return userService.getUserById(id); }前端:localhost:8083/user/1POST请求后端:@ResponseB...
2018-06-25 22:45:51
30812
1
原创 spring @sheduled小例
可以用来做一些定时小任务。例子如下:项目结构:beans.xml<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org
2018-01-08 22:31:17
2043
原创 DB2问题:No start database manager command was issued
DB2在启动或连接数据库时提示如下错误:No start database manager command was issued
2017-12-09 14:24:04
8943
转载 转载—Java中try catch finally语句中含有return语句的执行情况(总结版)
Java中try catch finally语句中含有return语句的执行情况
2017-09-10 09:08:03
313
原创 JackSon将json串转成List<Object>,异常com.fasterxml.jackson.databind.JsonMappingException
com.fasterxml.jackson.databind.JsonMappingException: No suitable constructor found for type [simple type, class com.oliver.bean.User]: can not instantiate from JSON object (need to add/enable type information?)
2017-07-13 22:13:59
5279
原创 windows下使用sqlplus / as sysdba报错,01031 insufficient privileges
系统:windows8.1软件:Oracle 11 问题:sqlplus / as sysdba 提示权限不足,error 01031 insufficient privileges;
2017-07-03 20:55:59
732
原创 ftp.getReplyCode()返回值是503
调用下面这个工具类,当执行到ftp.getReplyCode();返回值是503,登录失败原因:用户名或密码错误提示:如果用户名和密码读取自文件,要去掉用户名和密码左右两边的空格public static boolean uploadFile(String host, int port, String username, String password, String basePath
2017-05-24 21:33:56
14231
3
原创 eclipse+tomcat访问404
在eclipse oxygen中配置完tomcat7,访问localhost:8080出现404原因:eclipse会默认创建一个属于当前空间的tomcat,而不是用我们安装的。具体原因不太懂,在此向你们请教。我的解决是:
2017-04-22 11:04:49
280
原创 notepad++安装emmet和python script
问题:用了notepad++自带的emmet和python script,快捷键失效,不能自动补全代码。解决:自己从emmet和python script的官网下载相应的插件。首先,点击下面链接下载插件emmet下载python script下载下载下来后,解压:将emmet的全部内容复制到notepad安装目录下的plugins中;将pytho
2017-04-19 18:37:09
5433
4
shell学习笔记.docx
2020-02-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人