2022-07-15 22:37:32 +08:00
|
|
|
# Arthas Install
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
## 快速安装
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-11-29 16:33:17 +08:00
|
|
|
### 使用`arthas-boot`(推荐)
|
2018-11-28 19:01:21 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
下载`arthas-boot.jar`,然后用`java -jar`的方式启动:
|
2018-11-28 19:01:21 +08:00
|
|
|
|
|
|
|
```bash
|
2020-08-10 19:22:28 +08:00
|
|
|
curl -O https://arthas.aliyun.com/arthas-boot.jar
|
2018-12-14 23:54:38 +08:00
|
|
|
java -jar arthas-boot.jar
|
2018-11-28 19:01:21 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
打印帮助信息:
|
|
|
|
|
|
|
|
```bash
|
2018-12-14 23:54:38 +08:00
|
|
|
java -jar arthas-boot.jar -h
|
2018-11-28 19:01:21 +08:00
|
|
|
```
|
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
- 如果下载速度比较慢,可以使用 aliyun 的镜像:
|
2018-12-03 16:02:56 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
```bash
|
|
|
|
java -jar arthas-boot.jar --repo-mirror aliyun --use-http
|
|
|
|
```
|
2018-11-28 19:01:21 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
### 使用`as.sh`
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-09-10 15:19:57 +08:00
|
|
|
Arthas 支持在 Linux/Unix/Mac 等平台上一键安装,请复制以下内容,并粘贴到命令行中,敲 `回车` 执行即可:
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-09-10 15:19:57 +08:00
|
|
|
```bash
|
2020-08-10 19:22:28 +08:00
|
|
|
curl -L https://arthas.aliyun.com/install.sh | sh
|
2018-09-10 15:19:57 +08:00
|
|
|
```
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-09-17 17:18:30 +08:00
|
|
|
上述命令会下载启动脚本文件 `as.sh` 到当前目录,你可以放在任何地方或将其加入到 `$PATH` 中。
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
直接在 shell 下面执行`./as.sh`,就会进入交互界面。
|
2018-09-17 10:56:21 +08:00
|
|
|
|
|
|
|
也可以执行`./as.sh -h`来获取更多参数信息。
|
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
## 全量安装
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2020-08-07 18:24:28 +08:00
|
|
|
最新版本,点击下载:[![](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square "Arthas")](https://arthas.aliyun.com/download/latest_version?mirror=aliyun)
|
2018-09-17 10:56:21 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
解压后,在文件夹里有`arthas-boot.jar`,直接用`java -jar`的方式启动:
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
```bash
|
2018-12-14 23:54:38 +08:00
|
|
|
java -jar arthas-boot.jar
|
2018-09-17 10:56:21 +08:00
|
|
|
```
|
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
打印帮助信息:
|
2018-09-17 17:12:22 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
```bash
|
2018-12-14 23:54:38 +08:00
|
|
|
java -jar arthas-boot.jar -h
|
2018-11-29 16:16:20 +08:00
|
|
|
```
|
2018-09-17 17:12:22 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
## 手动安装
|
2018-09-17 17:12:22 +08:00
|
|
|
|
2018-11-29 16:16:20 +08:00
|
|
|
[手动安装](manual-install.md)
|
2018-09-13 01:43:46 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
## 通过 rpm/deb 来安装
|
2019-03-18 14:10:24 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
在 releases 页面下载 rpm/deb 包: https://github.com/alibaba/arthas/releases
|
2019-08-22 19:09:39 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
### 安装 deb
|
2019-08-22 19:09:39 +08:00
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo dpkg -i arthas*.deb
|
|
|
|
```
|
2022-07-15 22:37:32 +08:00
|
|
|
|
|
|
|
### 安装 rpm
|
2019-08-22 19:09:39 +08:00
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo rpm -i arthas*.rpm
|
|
|
|
```
|
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
### deb/rpm 安装的用法
|
2019-08-22 19:09:39 +08:00
|
|
|
|
|
|
|
在安装后,可以直接执行:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
as.sh
|
|
|
|
```
|
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
## 通过 Cloud Toolkit 插件使用 Arthas
|
2019-03-18 14:10:24 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
- [通过 Cloud Toolkit 插件使用 Arthas 一键诊断远程服务器](https://github.com/alibaba/arthas/issues/570)
|
2019-03-18 14:10:24 +08:00
|
|
|
|
2018-09-13 01:01:50 +08:00
|
|
|
## 离线帮助文档
|
2018-09-10 15:19:57 +08:00
|
|
|
|
2020-08-07 18:24:28 +08:00
|
|
|
最新版本离线文档下载:[![](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square "Arthas")](https://arthas.aliyun.com/download/doc/latest_version?mirror=aliyun)
|
2018-09-07 16:16:05 +08:00
|
|
|
|
|
|
|
## 卸载
|
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
- 在 Linux/Unix/Mac 平台
|
|
|
|
|
|
|
|
删除下面文件:
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
```bash
|
|
|
|
rm -rf ~/.arthas/
|
|
|
|
rm -rf ~/logs/arthas
|
|
|
|
```
|
2018-09-07 16:16:05 +08:00
|
|
|
|
2022-07-15 22:37:32 +08:00
|
|
|
- Windows 平台直接删除 user home 下面的`.arthas`和`logs/arthas`目录
|