上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 33 下一页
2017年8月1日
摘要: 1. jmap (1)分析堆信息 jmap -heap java_pid (2) 导出 java进程 5460 的堆内容 到文件 heap.map ,然后使用 jhat 分析 jmap -dump:live,file=heap.map 5460 jhat heap.map (3)打印等待回收的对象信 阅读全文
posted @ 2017-08-01 23:28 ChaseForFuture 阅读(264) 评论(0) 推荐(0)
摘要: #!/bin/bash ### for循环,数字段形式 echo 'for 循环,数字段形式' for i in {1..3} do echo $i done ### for 循环,双括号形式 echo 'for 循环,双括号形式' for ((i=1;i 21 ));then echo 'a大于21' elif [ $a -eq 21 ];then echo '相等... 阅读全文
posted @ 2017-08-01 23:21 ChaseForFuture 阅读(218) 评论(0) 推荐(0)
2017年7月31日
摘要: Python is an interpreted, interactive, object-oriented programming language that combines remarkable power with very clear syntax. interprete 理解;解释; - 阅读全文
posted @ 2017-07-31 16:55 ChaseForFuture 阅读(197) 评论(0) 推荐(0)
摘要: python 文档库 docs.python.org/2/library/index.html python 第三方模块查找 pypi.python.org 阅读全文
posted @ 2017-07-31 00:07 ChaseForFuture 阅读(129) 评论(0) 推荐(0)
摘要: python2.x web入门程序 阅读全文
posted @ 2017-07-31 00:04 ChaseForFuture 阅读(144) 评论(0) 推荐(0)
2017年7月30日
摘要: 操作系统 centos7.2 系统自带python版本 2.7.5 说明:编译python3的过程是简单的但比较慢,建议使用 && 进行configure && make && make install, 然后去忙别的事,不要等待中浪费时间,一个多小时后就编译安装好了 python版本 3.6.1 阅读全文
posted @ 2017-07-30 21:22 ChaseForFuture 阅读(315) 评论(0) 推荐(0)
2017年7月29日
摘要: 一、回溯引用 1.将页面中合法的标题找出来,使用回溯引用匹配 (需要使用 -E 或 -P 来扩展grep语法支持) 2.查找连续出现的单词 二、前后查找 (grep 只能使用 -P 选项) 1. 向前查找 (1)查找协议名称 (2)只要行首协议名称 2.向后查找 查找以Li开头的名字 三、嵌入条件( 阅读全文
posted @ 2017-07-29 10:30 ChaseForFuture 阅读(334) 评论(0) 推荐(0)
2017年7月28日
摘要: 本文描述Nginx 的源码编译安装过程 ############## 一、安装OpenSSL ###################### 下载地址 https://www.openssl.org/source/wget https://www.openssl.org/source/openssl- 阅读全文
posted @ 2017-07-28 22:12 ChaseForFuture 阅读(950) 评论(0) 推荐(0)
摘要: 1.查看占用8080端口的进程号 2.查看使用java进程 (1)该进程使用java -jar方式启动,使用jps无法查找到进程信息 ( 2)pgrep -u $USER -f java ( 3 ) pidof java 阅读全文
posted @ 2017-07-28 18:29 ChaseForFuture 阅读(964) 评论(0) 推荐(0)
摘要: 在使用maven构建项目的war包时,有时并不需要src/webapp/WEB-INF/下的一些文件。 这时可以通过maven-war-plugin创建配置来排除这些文件。下面贴出我平时使用的pom.xml文件 配置信息在 project -> build -> plugins -> plugin 阅读全文
posted @ 2017-07-28 12:56 ChaseForFuture 阅读(1140) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 33 下一页