In the new `Terminal 2`, download `arthas-boot.jar` and start with the `java -jar` command: `wget https://arthas.aliyun.com/arthas-boot.jar`{{execute T2}} `arthas-boot` is the launcher for `Arthas`. It lists all the Java processes, and the user can select the target process to be diagnosed. `arthas-boot.jar` supports many parameters and can be viewed by `java -jar arthas-boot.jar -h`{{execute T2}}. ```bash $ java -jar arthas-boot.jar -h [INFO] arthas-boot version: 3.3.6 Usage: arthas-boot [-h] [--target-ip ] [--telnet-port ] [--http-port ] [--session-timeout ] [--arthas-home ] [--use-version ] [--repo-mirror ] [--versions] [--use-http] [--attach-only] [-c ] [-f ] [--height ] [--width ] [-v] [--tunnel-server ] [--agent-id ] [--stat-url ] [--select ] [pid] Bootstrap Arthas EXAMPLES: java -jar arthas-boot.jar java -jar arthas-boot.jar --target-ip 0.0.0.0 java -jar arthas-boot.jar --telnet-port 9999 --http-port -1 java -jar arthas-boot.jar --tunnel-server 'ws://192.168.10.11:7777/ws' java -jar arthas-boot.jar --tunnel-server 'ws://192.168.10.11:7777/ws' --agent-id bvDOe8XbTM2pQWjF4cfw java -jar arthas-boot.jar --stat-url 'http://192.168.10.11:8080/api/stat' java -jar arthas-boot.jar -c 'sysprop; thread' java -jar arthas-boot.jar -f batch.as java -jar arthas-boot.jar --use-version 3.3.6 java -jar arthas-boot.jar --versions java -jar arthas-boot.jar --select math-game java -jar arthas-boot.jar --session-timeout 3600 java -jar arthas-boot.jar --attach-only java -jar arthas-boot.jar --repo-mirror aliyun --use-http WIKI: https://arthas.aliyun.com/doc Options and Arguments: -h,--help Print usage --target-ip The target jvm listen ip, default 127.0.0.1 --telnet-port The target jvm listen telnet port, default 3658 --http-port The target jvm listen http port, default 8563 --session-timeout The session timeout seconds, default 1800 (30min) --arthas-home The arthas home --use-version Use special version arthas --repo-mirror Use special maven repository mirror, value is center/aliyun or http repo url. --versions List local and remote arthas versions --use-http Enforce use http to download, default use https --attach-only Attach target process only, do not connect -c,--command Command to execute, multiple commands separated by ; -f,--batch-file The batch file to execute --height arthas-client terminal height --width arthas-client terminal width -v,--verbose Verbose, print debug info. --tunnel-server The tunnel server url --agent-id The agent id register to tunnel server --stat-url The report stat url --select select target process by classname or JARfilename Target pid ```