Loading

摘要: mysql 重置密码(版本5.7之前) 1、修改Mysql配置文件:vi /etc/my.cnf(注:windows下修改的是my.ini)。在[mysqld]后面任意一行添加“skip-grant-tables”用来跳过密码验证的过程。重启Mysql: 2、进入Mysql:[root@localh 阅读全文
posted @ 2020-05-25 17:14 Z_ONE 阅读(319) 评论(0) 推荐(0)
摘要: >下载Spring的开发包 https://repo.spring.io/libs-release-local/org/springframework/spring/ 目录结构: docs : API文档和开发规范 libs : 开发需要的jar包、源代码和文档 schema : 开发需要的xml文 阅读全文
posted @ 2020-05-13 15:31 Z_ONE 阅读(221) 评论(0) 推荐(0)
摘要: iperf 分client 和 server server: iperf3 -s -p 5000 -i 1 client: iperf3 -c 192.168.31.11 -p 5000 Server or Client: -p, --port # server port to listen on/ 阅读全文
posted @ 2019-04-23 00:07 Z_ONE 阅读(5048) 评论(0) 推荐(0)
摘要: dd if=/dev/zero of=file bs=1M count=20000 阅读全文
posted @ 2019-04-22 22:55 Z_ONE 阅读(208) 评论(0) 推荐(0)
摘要: 查看CPU信息(型号)[root@AAA ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c Intel(R) Xeon(R) CPU E5-2630 0 @ 2.30GHz # 查看物理CPU个数[root@AAA ~]# cat / 阅读全文
posted @ 2019-04-22 09:56 Z_ONE 阅读(1274) 评论(0) 推荐(0)