You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arthas/en/_sources/install-detail.md.txt

72 lines
1.9 KiB
Plaintext

6 years ago
Install Arthas
6 years ago
==============
6 years ago
## Quick installation
6 years ago
### Use `arthas-boot`(Recommend)
6 years ago
Download`arthas-boot.jar`Start with `java` command:
```bash
6 years ago
wget https://alibaba.github.io/arthas/arthas-boot.jar
java -jar arthas-boot.jar
```
6 years ago
Print usage:
```bash
6 years ago
java -jar arthas-boot.jar -h
```
6 years ago
### Use `as.sh`
6 years ago
6 years ago
You can install Arthas with one single line command on Linux, Unix, and Mac. Pls. copy the following command and paste it into the command line, then press *Enter* to run:
6 years ago
```bash
6 years ago
curl -L https://alibaba.github.io/arthas/install.sh | sh
6 years ago
```
6 years ago
The command above will download the bootstrap script `as.sh` to the current directory. You can move it the any other place you want, or put its location in `$PATH`.
6 years ago
6 years ago
You can enter its interactive interface by executing `as.sh`, or execute `as.sh -h` for more help information.
6 years ago
6 years ago
## Full installation
6 years ago
6 years ago
Latest Version, Click To Download: [![Arthas](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square "Arthas")](http://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=com.taobao.arthas&a=arthas-packaging&e=zip&c=doc&v=LATEST)
6 years ago
6 years ago
Download and unzip, find `arthas-boot.jar` in the directory. Start with `java` command:
6 years ago
```bash
6 years ago
java -jar arthas-boot.jar
6 years ago
```
6 years ago
Print usage:
6 years ago
6 years ago
```bash
6 years ago
java -jar arthas-boot.jar -h
6 years ago
```
6 years ago
6 years ago
## Manual Installation
6 years ago
6 years ago
[Manual Installation](manual-install.md)
6 years ago
## Offline Help Documentation
6 years ago
Latest Version, Click To Download:[![Arthas](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square "Arthas")](https://github.com/alibaba/arthas/releases/download/arthas-all-3.0.5/arthas-3.0.5-doc.zip)
6 years ago
6 years ago
## Uninstall
6 years ago
* On Linux/Unix/Mac, delete the files with the following command:
6 years ago
6 years ago
```bash
6 years ago
rm -rf ~/.arthas/
rm -rf ~/logs/arthas/
6 years ago
```
6 years ago
6 years ago
* On Windows, delete `.arthas` and `logs/arthas` directory under user home.