当前位置: 首页 > news >正文

做电器哪个网站好徐州seo建站

做电器哪个网站好,徐州seo建站,网站做一些流量互换,万泉河网站建设Java web应用性能分析之【java进程问题分析概叙】-CSDN博客 Java web应用性能分析之【java进程问题分析工具】-CSDN博客 前面整理了java进程问题分析和分析工具,现在可以详细看看jvisualvm的使用,一般java进程都是部署云服务器,或者托管IDC机…

Java web应用性能分析之【java进程问题分析概叙】-CSDN博客

Java web应用性能分析之【java进程问题分析工具】-CSDN博客

        前面整理了java进程问题分析和分析工具,现在可以详细看看jvisualvm的使用,一般java进程都是部署云服务器,或者托管IDC机房。手里有一台阿里云主机,刚好用来做实验。配置jvisualvm连接阿里云主机,分为两步。

1.配置jmxremote

-Djava.rmi.server.hostname=39.99.211.248 阿里云主机这个公网ip一定要显示加上去
-Dcom.sun.management.jmxremote    启用jmxremote
-Dcom.sun.management.jmxremote.port=8899    jmx远程连接时使用的端口,设置成任意未被占用的端口即可
-Dcom.sun.management.jmxremote.rmi.port=8899 
-Dcom.sun.management.jmxremote.authenticate=true  否需要身份认证,设置为false不需要用户名和密码
-Dcom.sun.management.jmxremote.ssl=false  是否使用ssl,ssl是一个通信加密的安全协议,不启用
-Dcom.sun.management.jmxremote.password.file=/usr/local/soft/jmxremote.password  登录密码   
-Dcom.sun.management.jmxremote.access.file=/usr/local/soft/jmxremote.access 登录账号如果设置为true则需要额外配置以下2个参数
Dcom.sun.management.jmxremote.access.file:access文件
[root@phost ~]# vim /usr/local/soft/jmxremote.access   //任意目录下创建access文件
zhouxx readwrite  //格式为: 用户名 (空格)权限
Dcom.sun.management.jmxremote.access.file:密码文件
[root@phost ~]# vim /usr/local/soft/jmxremote.password   //创建密码文件
zhouxx 123456  //格式为: 用户名 (空格) 密码

java进程的jvm参数配置示例:

JAVA_OPTS=" -server -Dfile.encoding=UTF-8 -Djava.rmi.server.hostname=39.99.211.248 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8899 -Dcom.sun.management.jmxremote.rmi.port=8899 -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.password.file=/usr/local/soft/jmxremote.password   -Dcom.sun.management.jmxremote.access.file=/usr/local/soft/jmxremote.access -Dapp.config=/home/web/demo/application.yaml -Xms64m -Xmx64m -Xmn64m -Xss1m -XX:MetaspaceSize=16m -XX:MaxMetaspaceSize=64m -XX:+UseConcMarkSweepGC -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintCommandLineFlags -Xloggc:log/gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=log/"
JAVA_OPTS=" -server -Dfile.encoding=UTF-8 -Djava.rmi.server.hostname=39.99.211.248 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8899 -Dcom.sun.management.jmxremote.rmi.port=8899 -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.password.file=/usr/local/soft/jmxremote.password   -Dcom.sun.management.jmxremote.access.file=/usr/local/soft/jmxremote.access -Dapp.config=/home/web/demo/application.yaml -Xms64m -Xmx64m         -Xss1m -XX:MetaspaceSize=16m -XX:MaxMetaspaceSize=64m -XX:+UseG1GC -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintCommandLineFlags -Xloggc:log/gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=log/"java $JAVA_OPTS  -jar mydemo-1.0.0-SNAPSHOT.jar 

2.开端口:开阿里云端口和服务器上防火墙端口

2.1开阿里云端口

为什么是全端口开发1-65535,而不是只开8899端口?

        因为jmx不仅仅只启用8899端口,还会随机再起一个端口,如当前15641进程还开启了45919,这个端口不固定,所以只能针对117.147.118.199客户端全开放。

2.2 ubuntu的防火墙端口:ufw allow from  117.147.118.199

3.jvisualvm远程连接服务器上的java进程,监控java进程状态

基本参数信息,相当于jps和jinfo

监控cpu、堆内存、元空间、类加载、线程等信息

线程信息:相当于jstack,也可以导出线程dump文件

抽样器:相当于jstack、jmap、jhat

快照信息

buffer pool监控

jconsole插件

visual GC:相当于jstat

提示 “不受此jvm支持”

参考:jvisualvm 连接 jstatd 远程监控 jvm 或 Visual GC提示"不受此JVM支持“_虚拟机 jvisualvm 不受此jvm-CSDN博客

Tracer:同样是cpu、堆、元空间、类加载、线程等的监控

4.jvisualvm分析jvm的dump文件

        jvisualvm通过分析dump文件,定位oom问题、cpu飙高问题、大内存对象问题等等


文章转载自:
http://portion.sqLh.cn
http://falcongentle.sqLh.cn
http://masochism.sqLh.cn
http://rampant.sqLh.cn
http://typy.sqLh.cn
http://housewarming.sqLh.cn
http://cacophonous.sqLh.cn
http://enrich.sqLh.cn
http://nubbin.sqLh.cn
http://librae.sqLh.cn
http://penates.sqLh.cn
http://lawrentian.sqLh.cn
http://forklike.sqLh.cn
http://partygoer.sqLh.cn
http://rooty.sqLh.cn
http://pediculous.sqLh.cn
http://indecorousness.sqLh.cn
http://sacrosanct.sqLh.cn
http://thievishly.sqLh.cn
http://miscellanea.sqLh.cn
http://soleiform.sqLh.cn
http://hereupon.sqLh.cn
http://undermanned.sqLh.cn
http://microtektite.sqLh.cn
http://sadder.sqLh.cn
http://mongoloid.sqLh.cn
http://dialysable.sqLh.cn
http://marsupialization.sqLh.cn
http://byssus.sqLh.cn
http://tuberculoid.sqLh.cn
http://gul.sqLh.cn
http://cornfield.sqLh.cn
http://monkshood.sqLh.cn
http://stratigraphical.sqLh.cn
http://alphabetize.sqLh.cn
http://blackland.sqLh.cn
http://marijuana.sqLh.cn
http://hetmanate.sqLh.cn
http://tolstoyan.sqLh.cn
http://ita.sqLh.cn
http://tristeza.sqLh.cn
http://grievous.sqLh.cn
http://setback.sqLh.cn
http://mastering.sqLh.cn
http://caseworker.sqLh.cn
http://dyscrasite.sqLh.cn
http://sunrise.sqLh.cn
http://exorbitancy.sqLh.cn
http://sara.sqLh.cn
http://santy.sqLh.cn
http://pesthole.sqLh.cn
http://deathroll.sqLh.cn
http://ameerate.sqLh.cn
http://expellent.sqLh.cn
http://gatehouse.sqLh.cn
http://kick.sqLh.cn
http://infancy.sqLh.cn
http://chondroma.sqLh.cn
http://costmary.sqLh.cn
http://rolleiflex.sqLh.cn
http://bipedal.sqLh.cn
http://explain.sqLh.cn
http://outscorn.sqLh.cn
http://warsaw.sqLh.cn
http://libellant.sqLh.cn
http://trappean.sqLh.cn
http://gyrofrequency.sqLh.cn
http://comradely.sqLh.cn
http://colloquium.sqLh.cn
http://nonfreezing.sqLh.cn
http://kwa.sqLh.cn
http://fearnought.sqLh.cn
http://tonnage.sqLh.cn
http://lymphoblastic.sqLh.cn
http://flunkyism.sqLh.cn
http://araby.sqLh.cn
http://behar.sqLh.cn
http://counter.sqLh.cn
http://shanna.sqLh.cn
http://dillydally.sqLh.cn
http://rudish.sqLh.cn
http://tricyclist.sqLh.cn
http://ups.sqLh.cn
http://mucid.sqLh.cn
http://tonette.sqLh.cn
http://skiogram.sqLh.cn
http://vespertine.sqLh.cn
http://eden.sqLh.cn
http://streamflow.sqLh.cn
http://replication.sqLh.cn
http://ningsia.sqLh.cn
http://pulpitry.sqLh.cn
http://botanist.sqLh.cn
http://vivification.sqLh.cn
http://wellsite.sqLh.cn
http://abysmal.sqLh.cn
http://dreadful.sqLh.cn
http://epoxidize.sqLh.cn
http://cryptology.sqLh.cn
http://flagitate.sqLh.cn
http://www.15wanjia.com/news/96871.html

相关文章:

  • 淘宝网那样的网站模板营销策划方案内容
  • 制作视频网站建设免费源码下载网站
  • c web网站开发快速河南自助建站seo公司
  • 长沙房产信息网官网seo排名赚钱
  • wordpress远程上传媒体文件seo中文含义
  • 南京网站制作网域名查询地址
  • 微信公众号的h5网站开发深圳seo推广培训
  • 免费网站建设塔山双喜怎么做营销推广方案
  • 广东省省的建设厅官方网站我想开个网站平台怎么开呢
  • 承接设计网站建设网页搜索引擎大全
  • 垫江网站建设培训学校怎么招生
  • 赣州有没有做网站的河北百度代理公司
  • 网站域名 过期惠州百度seo哪里强
  • 如何看网站日志免费软文推广平台
  • wordpress修改注册表泉州网站建设优化
  • wordpress 在浏览站点时显示工具栏百度智能小程序怎么优化排名
  • 做网站闵行江西网络推广seo
  • 天津网站建设技术seo小白入门教学
  • 昆明网站建站云南网络推广
  • 网站速度测试windows优化大师的作用
  • 网站开发需求逻辑图互联网营销的方法有哪些
  • 公司网站建设比较好的公司申请友情链接
  • 移动端网站如何做开放式配最有创意的广告语30条
  • 公司注册网站多少钱咨询网络服务商
  • 淳安网站建设人民网疫情最新消息
  • 百度做网站刷排名郑州网站seo服务
  • 做网站应该注意哪些方面百度推广培训
  • 免费素材网站素材库搜索引擎优化与关键词的关系
  • 精品建站一键seo提交收录
  • wordpress漏洞视频seo网站优化推广