问题原因是没有设置时区,这个在Mysql8中会有 解决方式: 在这个位置加上UTC时区就可以了。 IDEA添加方式 设置Advanced的allowPublicKeyRetrieval为true 同时安装上驱动的jar包 ...
分类:
数据库 时间:
2020-04-29 20:11:52
阅读次数:
124
http://xulizhao.com/blog/more-load-test-note/ 全链路压测的大概思路 https://lishoubo.github.io/2018/07/15/%E5%85%A8%E9%93%BE%E8%B7%AF%E5%8E%8B%E6%B5%8B%E7%9A%84% ...
分类:
其他好文 时间:
2020-04-29 18:55:16
阅读次数:
99
Linux 复习 命令 --help ls --help *模糊匹配 1.ls ls [参数] [路径] ls ls -a 显示所有文件 ls -l = ll 暂时当前对文件的权限 ls -al 权限+所有文件 ls -al /etc 2.pwd 当前路径 last -n x #最近x次登录的用户 ...
分类:
系统相关 时间:
2020-04-29 11:10:56
阅读次数:
81
命令touch详解 命令touch,所在路径及执行权限为: 可以看到,命令的路径为:/usr/bin/touch ,所以它的执行权限为所有用户 命令基本功能是创建空文件 (可以同时创建多个空文件,文件名以空格分隔,所以,文件名一般不能有空格,否则是创建了多个文件,如果一定要写空格,则用双引号将文件名 ...
分类:
系统相关 时间:
2020-04-29 10:41:28
阅读次数:
101
~~~~~~~ 1、cat 正序查看文件 1)cat >>文件名 创建一个文件 2)cat 文件名 查看文件 2、tac 倒序查看文件 1)tac 文件名 3、nl 添加行号查看 1)nl 文件名 4、more 按页的显示文件内容 more 文件名 1)空格键 代表向下翻一页 2)Enter 下翻一 ...
分类:
系统相关 时间:
2020-04-28 14:45:03
阅读次数:
5960
This time your job is to fill a sequence of N positive integers into a spiral matrix in non-increasing order. A spiral matrix is filled in from the fi ...
分类:
其他好文 时间:
2020-04-28 00:48:51
阅读次数:
67
Find max packet size I used the code above to find the max size of a UDP packet size by default configuration. The result on my computer is: More test ...
分类:
编程语言 时间:
2020-04-27 19:34:54
阅读次数:
117
sar ,iostat,vmstat都可以用来查看磁盘io 查看本月27号的磁盘io sar -d -p -f /var/log/sa/sa27 |more #查看本月第27天日志 备:%util 项的值也是衡量磁盘 I/O 的一个重要指标,如果 %util 接近 100% ,表示磁盘产生的 I/O ...
分类:
其他好文 时间:
2020-04-27 13:48:03
阅读次数:
77
simple responsibility principle 单一职责原则。 there should never be more than one reason for a class to change. 一个类中应该只处理一个职责,而不应该同时处理多个职责。否则当出现类需要修改时,可能会导致 ...
分类:
其他好文 时间:
2020-04-26 14:09:21
阅读次数:
77
本文参考 本篇文章参考自《Effective Java》第三版第七条"Eliminate obsolete object references" Memory leaks in garbage-collected languages (more properly known as unintenti ...
分类:
编程语言 时间:
2020-04-25 16:55:59
阅读次数:
73