数据库主从出错: Slave_IO_Running: No 一方面原因是因为网络通信的问题也有可能是日志读取错误的问题。以下是日志出错问题的解决方案: Last_IO_Error: Got fatal error 1236 from master when reading data from bin ...
分类:
其他好文 时间:
2020-05-31 21:49:50
阅读次数:
90
--查询检测是否已设置 SQL>show parameter log_file_sync SQL>show parameter parallel_force_local SQL>select client_name,status from dba_autotask_client; SQL>selec ...
分类:
其他好文 时间:
2020-05-15 00:39:32
阅读次数:
79
1.将innodb_flush_log_at_trx_commit配置为0。插入速度会有很大提高。 0:log buffer将每秒一次地写入log file中,并且log file的flush(刷到磁盘)操作同时进行。该模式下在事务提交的时候,不会主动触发写入磁盘的操作。 优缺点:该模式速度最快,但 ...
分类:
数据库 时间:
2020-05-07 15:34:33
阅读次数:
124
一、Sublist导致OOM 代码 @Slf4j public class SubListDemo { public static void subListOOM() { List<List<Integer>> data = new ArrayList<>(); for (int i = 0; i ...
分类:
编程语言 时间:
2020-04-19 19:34:09
阅读次数:
72
mysql配置问题,导致上传azkaban上传包时出现 已经设置过max_allowed_packet了 innodb 引擎还需设置innodb_log_file_size,这个值默认50m 最终的my.cnf配置如下 参考资料 https://github.com/azkaban/azkaban/ ...
分类:
数据库 时间:
2020-04-15 17:51:51
阅读次数:
122
异常信息 异常解读 异常处理 nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (13: Permission denied)2020/04/12 09:46:2 ...
分类:
Web程序 时间:
2020-04-12 10:32:17
阅读次数:
73
启动进程 nohup java -jar babyshark-0.0.1-SNAPSHOT.jar > log.file 2>&1 & 上面的2 和 1 的意思如下: 0 标准输入(一般是键盘)1 标准输出(一般是显示屏,是用户终端控制台)2 标准错误(错误信息输出) 关闭进程 //关闭进程 ps ...
分类:
编程语言 时间:
2020-03-26 19:12:55
阅读次数:
763
Chapter 16 Replication Table of Contents 16.1 Configuring Replication 16.1.1 Binary Log File Position Based Replication Configuration Overview 16.1.2 ...
分类:
数据库 时间:
2020-03-22 13:51:05
阅读次数:
81
14.166在ty库中删除pritab表的id=11数据 14.165在ty库中更新pritab表的id=11数据,1032故障出现 解决方法: 根据报错信息知道binlog文件(Relay_Master_Log_File: mysql-binlog.000004)和position号 (Exec_ ...
分类:
数据库 时间:
2020-03-05 10:29:29
阅读次数:
88
服务端:rsyncd.conf配置 [root@server2 ~]# cat /etc/rsyncd.conf log file = /var/log/rsyncd.log pidfile = /var/run/rsyncd.pidlock file = /var/run/rsync.lockse ...
分类:
其他好文 时间:
2020-02-29 22:34:01
阅读次数:
86