From bb8042f1121a304a7fec08c167b618be9cc9d01d Mon Sep 17 00:00:00 2001 From: beiwei30 Date: Mon, 29 Oct 2018 22:24:06 +0800 Subject: [PATCH] enhance translation --- site/src/site/sphinx/en/manual-install.md | 42 ++++++++++++----------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/site/src/site/sphinx/en/manual-install.md b/site/src/site/sphinx/en/manual-install.md index d5d50e617..8048aa886 100644 --- a/site/src/site/sphinx/en/manual-install.md +++ b/site/src/site/sphinx/en/manual-install.md @@ -1,31 +1,33 @@ -Manual Installation +Manually Install Arthas =================== -### Download +1. Download the latest version -**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) + **Latest version**: [![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 download speed is slow, try to use [Ali cloud mirror repository](https://maven.aliyun.com/), for example, to download version `3.x.x` (you can replace `3.x.x` in the example URL if you want to download other version), the download URL is: https://maven.aliyun.com/repository/public/com/taobao/arthas/arthas-packaging/3.x.x/arthas-packaging-3.x.x-bin.zip -If the download is slow, 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) +2. Unzip zip file -`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 + ``` -```bash -unzip arthas-packaging-bin.zip -``` +3. Install Arthas -### Install + It is recommended to completely remove all old versions of Arthas before installation. -```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. -``` + ```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 +4. Start Arthas -```bash -./as.sh # make sure the old Arthas has been shutdown (using command shutdown); -``` + Make sure `shutdown` the old Arthas server before start. + + ```bash + ./as.sh + ```