visualvm 使用


1. 在windows下,%TMP%变量指向的目录要在NTFS文件格式下,否则要设置参数。忘了是哪个了。
如果是在windows 下起应用,而且Java 应用是在NTFS 格式的盘附上,记得加参数:
-XX:+PerfBypassFileSystemCheck
   
2. 远程连接,启动jstatd
    ref: Starting 'jstatd' with a Security Policy File
    创建一个文件tools.policy,内容如下
   
grant codebase "file:${java.home}/../lib/tools.jar" {
   permission java.security.AllPermission;
};
    

    运行jstat:
   
jstatd -J-Djava.security.policy=tools.policy

    默认端口是1099
3. 再打开visualVM新建remote连接就连上了。
4. 有可能出现的错误
    4.1 jmx远程连不上,用JPS 命令查看,返回
Error communicating with remote host: Connection refused to host: 127.0.0.1; nested exception is:
        java.net.ConnectException: Connection refused: connect
   措施:
    用vim打开/etc/hosts

    vim /etc/hosts

    在第一行加入下如代码
    #这里是主机的IP
    111.111.111.111           localhost.localdomain localhost localhost
5. 安装插件
    菜单->tools->plugins
6. 插件不显示内容
   

ref: VisualVM远程监控
监控工具VisualVM
无法连接运行于远程 Linux 主机上的 JVM


你可能感兴趣的:(java,linux,windows,Security,vim)