zoukankan      html  css  js  c++  java
  • arthas无网络环境下离线安装方法

    原文:https://www.jianshu.com/p/9abb11d5c5a1

    本文主要介绍当服务器无法连接互联网情况下,无法安装arthas的解决方法

    一、下载

    参考文末参考文章3中下载。也可以直接把下面文中的链接取出,直接用下载器下载。

    # github下载
    wget https://alibaba.github.io/arthas/arthas-boot.jar
    # 或者 Gitee 下载
    wget https://arthas.gitee.io/arthas-boot.jar
    # 打印帮助信息
    java -jar arthas-boot.jar -h
    

    二、安装

    # 运行方式1,先运行,在选择 Java 进程 PID
    java -jar arthas-boot.jar
    

    当联网安装时,可以正常安装。看下面的执行日志,可以看到,联网时会到maven.aliyun.com的私服库里去获取jar包。但是离线时,是无法直接获取的,执行时,会出现无法连接aliyun.com等error。

     

    Downloads herman$ java -jar arthas-boot.jar
    [INFO] arthas-boot version: 3.1.7
    [INFO] Found existing java process, please choose one and hit RETURN.
    * [1]: 59874 com.dtm.starter.StartApplication
      [2]: 26057
      [3]: 68065 com.bayss.infin.core.AppStarter
    1
    [INFO] Start download arthas from remote server: http://maven.aliyun.com/repository/public/com/taobao/arthas/arthas-packaging/3.1.7/arthas-packaging-3.1.7-bin.zip
    [INFO] File size: 10.33 MB, downloaded size: 1.08 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 2.15 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 3.23 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 4.38 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 5.40 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 6.54 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 7.52 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 8.66 MB, downloading ...
    [INFO] File size: 10.33 MB, downloaded size: 9.71 MB, downloading ...
    [INFO] Download arthas success.
    [INFO] arthas home: /Users/herman/.arthas/lib/3.1.7/arthas
    [INFO] Try to attach process 59874
    [WARN] Current VM java version: 1.7 do not match target VM java version: 1.8, attach may fail.
    [WARN] Target VM JAVA_HOME is /Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre, arthas-boot JAVA_HOME is /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre, try to set the same JAVA_HOME.
    [INFO] Attach process 59874 success.
    [INFO] arthas-client connect 127.0.0.1 3658
      ,---.  ,------. ,--------.,--.  ,--.  ,---.   ,---.
     /  O   |  .--. ''--.  .--'|  '--'  | /  O   '   .-'
    |  .-.  ||  '--'.'   |  |   |  .--.  ||  .-.  |`.  `-.
    |  | |  ||  |      |  |   |  |  |  ||  | |  |.-'    |
    `--' `--'`--' '--'   `--'   `--'  `--'`--' `--'`-----'
    
    
    wiki      https://alibaba.github.io/arthas
    tutorials https://alibaba.github.io/arthas/arthas-tutorials
    version   3.1.7
    pid       59874
    time      2020-01-02 10:48:28
    
    

    三、离线安装

    其实方法很简单,只是有时候不容易想的到。
    步骤1:先在可联网的电脑上,执行java -jar arthas-boot.jar,从执行记录中可以看到,下载下来的依赖包放在了

    [INFO] arthas home: /Users/herman/.arthas/lib/3.1.7/arthas
    

    步骤2:进入到/Users/herman/.arthas/lib/3.1.7/arthas路径下,把所有的内容打包即可,与arthas-boot.jar一起上传到离线的服务器。

    BUG:arthas herman$ ll
    total 23048
    -rw-r--r--  1 herman  staff      5993  1  2 10:48 arthas-spy.jar
    -rw-r--r--  1 herman  staff      8347  1  2 10:48 arthas-agent.jar
    -rw-r--r--  1 herman  staff    403091  1  2 10:48 arthas-client.jar
    -rw-r--r--  1 herman  staff    111090  1  2 10:48 arthas-boot.jar
    -rw-r--r--  1 herman  staff      3739  1  2 10:48 arthas-demo.jar
    -rw-r--r--  1 herman  staff       635  1  2 10:48 install-local.sh
    -rw-r--r--  1 herman  staff     28075  1  2 10:48 as.sh
    -rw-r--r--  1 herman  staff      3127  1  2 10:48 as.bat
    -rw-r--r--  1 herman  staff      7744  1  2 10:48 as-service.bat
    drwxr-xr-x  4 herman  staff       128  1  2 10:48 async-profiler
    -rw-r--r--  1 herman  staff  11207868  1  2 10:48 arthas-core.jar
    BUG:arthas herman$ pwd
    /Users/herman/.arthas/lib/3.1.7/arthas
    

    打包命令:tar -cvf 或者 zip,用文件浏览器都行

    步骤3:把打包的文件放在服务器上的用户根目录下,比如herman用户,放在/home/herman/.arthas下就可以。当然也可以指定执行路径。

    相关参考文章:

    1. 《arthas安装使用说明》 https://blog.csdn.net/zou100/article/details/84998559

    2. 《arthas的安装和使用小结》https://blog.csdn.net/wangwei249/article/details/86595540

    3. 《Arthas - Java 线上问题定位处理的终极利器》https://mp.weixin.qq.com/s/55gBspFp8yH0TCymdbZfkQ

     
      
  • 相关阅读:
    python开发初识函数:函数定义,返回值,参数
    py基础2--列表,元祖,字典,集合,文件
    python中的urlencode与urldecode
    使用pymysql进行mysql数据库操作
    docker 命令
    docker镜象
    docker的安装
    JS中的prototype(原文地址:http://www.cnblogs.com/yjf512/archive/2011/06/03/2071914.html)
    linux远程复制和压缩文件的命令
    rosbag 初尝试
  • 原文地址:https://www.cnblogs.com/shihaiming/p/12945700.html
Copyright © 2011-2022 走看看