Windows、Linux 安装arthas

Windows安装arthas

下载地址:https://arthas.aliyun.com/doc/download.html

Linux 安装arthas

如果是用的是 Linux,安装arthas ,如下:
https://arthas.aliyun.com/doc/install-detail.html

安装命令如下:

curl -O https://arthas.aliyun.com/arthas-boot.jar
java -jar arthas-boot.jar

如果 curl 用不了,也可以用 wget

wget https://arthas.aliyun.com/arthas-boot.jar
java -jar arthas-boot.jar

启动arthas

为了演示方便,直接用Windows版。

在本地新建文件夹arthas,下载后直接解压到该文件夹。

shift+右键,选择 "在此处打开PowerShell窗口"。。当然,也可以使用cmd打开。

输入启动 arthas 的命令:

java -jar arthas-boot.jar

选择 java 进程,输入对应的序号,比如 1,然后按Enter,结果如下:

接下来就可以使用 arthas 的各种命令了。

在这里插入图片描述

arthas 的各种命令

详情见官方文档: https://arthas.aliyun.com/doc/quick-start.html

posted on 2023-06-03 22:43  乐之者v  阅读(730)  评论(0编辑  收藏  举报

导航