- 简介
- 目录大纲
- 最新文档
Arthas 使用笔记
快速开始 下载并启动 ``` 下载jar包 curl -O https://arthas.aliyun.com/arthas-boot.jar 启动jar包 java -jar arthas-boot.jar ``` 如上图,启动arthas成功,后续命令默认都在arthas的命令行中敲下。 命令列表:https://arthas.aliyun.com/doc/commands.html 在线教……
寒烟濡雨 - 2025年3月24日 20:06
TCP 抓包
快速开始 一个混合抓取请求外部的请求样例 抓取请求 TCP协议 172.28.1.1地址 830端口的包,并保存到pcap 文件 tcpdump -i any tcp and host 172.28.1.1 and port 830 -w netconf-830-tcp.pcap 分析软件 wireshark 用其打开pcap就可以进行分析了 常用语法 0. 确保有安装tcpdump bash……
寒烟濡雨 - 2025年1月21日 10:47
JVM
先用top命令查看pid 查看gc信息 jstat -gc pid 查看内存信息 jstat -gccapacity pid 查看最近的堆栈信息 jstack -l pid 注意观察 java.lang.Thread.State的值 取前10线程 msf docker exec -it netconf jstack -l 1 | grep "nid=" | awk '{print $1}' | s……
寒烟濡雨 - 2025年1月10日 11:19
Git相关操作
https://www.cnblogs.com/yuqing6/p/6739607.html 忽略文件提交 未add未commit 在pom.xml同目录下创建.gitignore文件,在里面进行配置,如 logs/* .mvn/* .idea/* target/* 已add未commit 比如删除.idea/workspace.xml文件 git rm --cached .idea/wo……
寒烟濡雨 - 2024年12月25日 10:39
springboot 动态修改端口
添加依赖 xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> ……
寒烟濡雨 - 2024年12月10日 10:07