-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from Hearen/manual-install
manual-install en
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Manual Installation | ||
=================== | ||
|
||
### Download | ||
|
||
Latest `bin.zip `: [![Arthas](https://img.shields.io/maven-central/v/com.taobao.arthas/arthas-packaging.svg?style=flat-square "Arthas")](http://search.maven.org/classic/#search%7Cga%7C1%7Cg%3A%22com.taobao.arthas%22%20AND%20a%3A%22arthas-packaging%22) | ||
|
||
|
||
If the downloading is rather clumsy, try to download from the [repository in AliYun](https://maven.aliyun.com/); the downloading URL template is (remember to fill up the version `3.x.x` template to your needs) | ||
|
||
`https://maven.aliyun.com/repository/public/com/taobao/arthas/arthas-packaging/3.x.x/arthas-packaging-3.x.x-bin.zip` | ||
### Unzip | ||
|
||
```bash | ||
unzip arthas-packaging-bin.zip | ||
``` | ||
|
||
### Install | ||
|
||
```bash | ||
sudo su admin | ||
rm -rf /home/admin/.arthas/lib/* # remove all the leftover of the old outdated Arthas | ||
cd arthas | ||
./install-local.sh # switch the user based on the owner of the target Java process. | ||
``` | ||
|
||
### Start | ||
|
||
```bash | ||
./as.sh # make sure the old Arthas has been shut down (using command shutdown); | ||
``` |