`
LiuYiJie2007
  • 浏览: 13724 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
JAVA8   Monitors Java Virtual Machine (JVM) statistics. This command is experimental and unsupported. Synopsis jstat [ generalOption | outputOptions vmid [ interval[s|ms] [ count ] ] generalOption A single general command-line option -help or -options. See General Options. outputOptions ...

Jmeter https url测试

1 通过浏览器 导出证书 2 使用keytool生成 密钥库keytool -import -alias "alipay"  -file der-alipaycom.der -keystore test.store 回车后自定义一个密码如 123456 3 使用 keytool -list -v -keystore test.store 检查一下 [也可以忽略检查] 4 写入代码,或者配置到配置文件里。 在http sample增加    beanShell PreProcessor   import org.apache.jmeter.util.SSLMana ...
Concurrent Mark Sweep (CMS) Collector           it is designed for applications that prefer shorter garbage collection pauses and that can afford to share processor resources with the garbage collector while the application is running. Table 8-1, "Command-Line Options for i-cms" list c ...
UseParallelGC        Universe::_collectedHeap = new ParallelScavengeHeap();UseG1GC             G1CollectorPolicy* g1p = new G1CollectorPolicy();    g1p->initialize_all();    G1CollectedHeap* g1h = new G1CollectedHeap(g1p);    Universe::_collectedHeap = g1h;UseSerialGC    GenCollectorPolicy gc_po ...
Throughput Goal      -XX:GCTimeRatio=19 sets a goal of 1/20th or 5% of the total time for garbage collection.Maximum Pause Time Goal      -XX:MaxGCPauseMillis=<nnn>. This is interpreted as a hint to the garbage collector that pause times of <nnn> milliseconds or less are desired.GC Param ...
1 JDK8 使用 jcmd 代替以前版本中的jstack, jinfo, and jmap 工具使用   2JMC 诊断,JMC是由JMX,JFR和其它几个可下载功能插件共同组成,其中:    a.JMX起到监控和管理作用。能够连接运行中的jvm,能实时的收集和显示一些关键的属性       b. JFR性能分析    c. 在jdk8环境下,可以触发用户自定义的行为和规则    d.JMC的其它插件   如: - WLS, DTrace[类似JFR], JOverflow[分析 heap情况]      程序增加参数  -XX:+UnlockCommercialFeatu ...
1 Enable core file          java 运行的过程中,产生java heap,会占用大量的磁盘空间,因此,一般只有在发生java crash现象时或gdb调试java本地代码时,才开启ulimit -c unlimited,进行诊断错误。 2 Add -XX:+HeapDumpOnOutOfMemoryError to the JVM flags        java运行发生内存错误时,检查产生内存错误原因,需开启该参数。该参数,跟开启core file一样,在 java运行中产生的java heap ,会导致文件非常的大。通过与jhat工具结合使用,检测 ...

JAVA Cloud学习地址

    博客分类:
  • JAVA
Netflix Cloud:     https://github.com/Netflix         https://github.com/Netflix/Zuul     https://github.com/Netflix/ribbon     https://github.com/Netflix/eureka     https://github.com/Netflix/Hystrix  security    https://www.offensive-security.com/metasploit-unleashed    https://www.metas ...
  JVM格式规范       https://docs.oracle.com/javase/specs/index.html 诊断工具:   http://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/        https://docs.oracle.com/javase/7/docs/technotes/tools/share/jstat.html 调优参数   http://docs.oracle.com/javase/8/docs/technotes/guides/vm/gctuning/ ...
参考框架
1解压xsd.zip 2 执行 java -Djava.ext.dirs=lib  org.exolab.castor.builder.SourceGeneratorMain -types j2 -i "D:/downloads/xsd/source.xsd"   -package  com.test.schema -dest   "D:/Downloads/xsd/src"
1. 确认已安装好 apache. 参阅文章: http://liuyijie2007.iteye.com/blog/2145524 2   确认已成功安装libxml2和libxml2-devel. 若未安装,可到http://rpmfind.net/linux/rpm2html/search.php?query=libxml2 下载和安装 3.  下载 freetype 源码 并安装 在 /usr/local/freetype 目录下 4 . 下载php-5.6.2源码  执行 ./configure --prefix=/usr/local/php --with-freetype- ...
为了了解和学习linux,本人在虚拟机上安装centos6.5-min 最小版本 1. yum -y install gcc      编译c源码所需软件和包 2. yum -y install gcc-c++  编译c++源码所需软件和包 3.安装apache           a.在apache网站 下载 apr-1.5.1.tar.gz , apr-util-1.5.4.tar.gz, httpd-2.4.10.tar.gz  源码包           b.去pcre.org网站下载  pcre-8.36.tar.gz 源码包           c.tar zxvf  ...
1. /etc/sysconfig/network-scripts/ifcfg-ethO 修改 DEVICE=eth0 BOOTPROTO=none HWADDR=B8:AC:6F:30:B9:CC ONBOOT=yes NETMASK=255.255.255.0 IPADDR=192.168.68.10 GATEWAY=192.168.68.254 TYPE=Ethernet USERCTL=yes IPV6INIT=no PEERDNS=yes 2 /etc/init.d/network restart 3 使用虚拟机 桥接网络,能够使主机与虚拟机网络互通 若有冲突 device e ...
hadoop-0.20.2+hbase-0.90.3+zookeeper-3.3.1集成安装 结合看了官方文档和前辈的一些安装笔记,今天拿到5台机器来做实验 1.根据需要分别在5台机器上配置hosts    /etc/hosts #ip            机器名称/域名 192.168.79.102 hadoopcm4  had102  192.168.79.101 hadoopcm3  had101 192.168.79.100 hadoopcm2  had100 192.168.79.99  hadoopcm1  had99 192.168.79.98  hadoopcm0  ...
Global site tag (gtag.js) - Google Analytics