1 2 3 4 5 ··· 37 下一页
摘要: #此命令也适用于所有的Linux发行版 cat /etc/issue cat /etc/system-release cat /etc/os-release cat /proc/version uname -a uname -r #只适合Redhat系 cat /etc/redhat-release 阅读全文
posted @ 2021-08-10 09:32 谷粒-笔记 阅读(190) 评论(0) 推荐(0)
摘要: 1、太多的连接 Too many connections 2、this is incompatible with sql_mode=only_full_group_by 3、group_concat长度限制 4、错误日志配置 5、max_binlog_cache_size 1、太多的连接 Too m 阅读全文
posted @ 2019-12-06 09:38 谷粒-笔记 阅读(214) 评论(0) 推荐(0)
摘要: 【JMeter】图形化方式使用 阅读全文
posted @ 2025-11-11 15:10 谷粒-笔记 阅读(3) 评论(0) 推荐(0)
摘要: 命令行参数 例子 jmeter -n -t D:/dev/env/apache-jmeter-5.6.3/MyPlan/测试.jmx -l D:/dev/env/apache-jmeter-5.6.3/MyPlan/results.jtl 阅读全文
posted @ 2025-11-11 15:10 谷粒-笔记 阅读(3) 评论(0) 推荐(0)
摘要: spring: cloud: config: # 默认值 true。覆盖权限标志 allow-override: true # 默认值 false。当override-none和allow-override同时为true,远程配置的优先级降低,不能覆盖其他配置 override-none: true 阅读全文
posted @ 2025-11-06 14:29 谷粒-笔记 阅读(3) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/zhipeng-wang/p/14070431.html 测试端口 nc -nvz 127.0.0.1 8000 监听 nc -l 80 连接client nc 127.0.0.1 8000 想要连接到某处: nc [-options] hostnam 阅读全文
posted @ 2025-09-15 21:43 谷粒-笔记 阅读(11) 评论(0) 推荐(0)
摘要: 创建软链目录 /ycx 指向源目录 /data/ycx。 /目录下要没有ycx目录,然后在/目录下执行命令:ln -s 源目录 软链目录 ln -s /data/ycx /ycx ll 显示 ycx -> /data/ycx 阅读全文
posted @ 2025-08-07 14:32 谷粒-笔记 阅读(7) 评论(0) 推荐(0)
摘要: 源码安装时 /etc/ld.so.conf 记录了编译时使用的动态库的路径,也就是加载so库的路径。默认情况下,编译器只会使用 /lib 和 /usr/lib 这两个目录下的库文件,而通常通过源码包进行安装时,如果不指定 –prefix 会将库安装在 /usr/local 目录下,而又没有在文件 / 阅读全文
posted @ 2025-08-04 17:03 谷粒-笔记 阅读(34) 评论(0) 推荐(0)
摘要: Thread pools 线程池 Thread pools 线程池 文档地址:https://www.elastic.co/guide/en/elasticsearch/reference/7.17/modules-threadpool.html Thread pool types 线程池类型: f 阅读全文
posted @ 2025-06-23 13:45 谷粒-笔记 阅读(36) 评论(0) 推荐(0)
摘要: 1、解压缩 解压MySql压缩包到 D:\dev\env\mysql-8.4.2-winx64 2、初始化数据目录 进入 cd D:\dev\env\mysql-8.4.2-winx64\bin mysqld --initialize --console 命令执行完毕后会在解压目录下生成一个data 阅读全文
posted @ 2025-05-26 17:26 谷粒-笔记 阅读(70) 评论(0) 推荐(0)
摘要: Java生成流接口 @RequestMapping("/exportPdf") public void exportPdf(@RequestParam("ids[]") List<String> ids, HttpServletRequest request, HttpServletResponse 阅读全文
posted @ 2025-05-20 14:53 谷粒-笔记 阅读(13) 评论(0) 推荐(0)
摘要: 1、环境变量 2、编译 3、配置vscode开发环境 4、环境变量 1、环境变量 GOROOT 指定SDK安装目录根 Path bin目录 GOPATH 工作目录 2、编译 # 编译 go build main.go # 指定输出文件名 go build -o m.exe main.go 3、配置v 阅读全文
posted @ 2025-04-16 20:25 谷粒-笔记 阅读(44) 评论(0) 推荐(0)
1 2 3 4 5 ··· 37 下一页