- 浏览: 211324 次
- 性别:
- 来自: 深圳
最新评论
-
gelongmei:
威武我大酒神
shell脚本不换行刷新数据
文章列表
openssl s_client -connect member.xxx.com:443
java AES 命令行 报错处理
- 博客分类:
- java
java.security.NoSuchAlgorithmException: Cannot find any provider supporting AES
2
at javax.crypto.Cipher.getInstance(Cipher.java:453)
直接在命令行执行java类,如果其中包含AES等的算法api的使用,会抛出上面的异常。
原因:jre目录下相关算法的jar文件没有被引用进来,可以java命令行如下处理解决:
1
java -Djava.ext.dirs="$JAVA_HOME/jre/lib:$JAVA_HOME/jre/lib/ext&quo ...
Fix Indentation and Tabs in VIM
Thanks to the folks in #vim on freenode, here's a quick tutorial on how to fix the indentation and tabs in an xml file from within VIM…
First find out what your current settings are by typing:
:filetype
Should return something like “filetype detection:ON plugin:OFF ...
nohup /home/jdk1.6.0_14/bin/java -Dfile.encoding=GBK -Xms200m -Xmx400m -classpath "/home/icehome/search2010_demo/WEB-INF/classes" -Djava.ext.dirs=/home/icehome/search2010_demo/WEB-INF/lib com.yesky.wstsearch.common.FileUtil.File2DocumentUtils &
java -Djava.ext.dirs=/usr/local/c ...
During initial mark CMS should collect all root references to start marking of old space. This includes:
References from thread stacks,
References from young space.
References from stacks are usually collected very quickly (less than 1ms), but time to collect references from young space depends on ...
java虽然是自动回收内存,但是应用程序,尤其服务器程序最好根据业务情况指明内存分配限制。否则可能导致应用程序宕掉。
举例说明含义:
-Xms128m
表示JVM Heap(堆内存)最小尺寸128MB,初始分配
-Xmx512m
表示JVM Heap(堆内存)最大允许的尺寸256MB,按需分配。
说明:如果-Xmx不指定或者指定偏小,应用可能会导致java.lang.OutOfMemory错误,此错误来自JVM不是Throwable的,无法用try...catch捕捉。
PermSize和MaxPermSize指明虚拟机为java永久生成对象(Permanate generation)如, ...
下载地址:
http://www.jetbrains.com/ruby/download/index.html
破解序列号:
name: rubymine
LICENSE:
70414-12042010
00002VG0BeoZbwmNAMNCx5E882rBEM
Ysn1P!e"s830EDlHcWg8gmqYVkvZMo
Injf4yqlO1yy"82NiwNzyYInoT7AiX
转自: http://blog.csdn.net/mutouyihao/article/details/6906646
linux /tmp 目录文件清理规则
- 博客分类:
- linux
http://blog.itpub.net/133735/viewspace-773854/
分类: Linux
hadoop 系统datanode 跟tasktracker 的pid 文件被清除了。
于是顺手就看了下、/tmp 目录的清理规则。
linux 的开发规范里没有明确指出/tmp 目录的清理规则,但是指定了,系统必须要有/tmp 目录。
各个发行版本都不一致,大体通行的做法是主机重启就会清空/tmp目录
在linux 的/etc/cron.daily/tmpwatch 里定义了/tmp目录的清理规则,不同的发行版本不一致,但大体都有定制这个定时任务。
01 [r ...
SYNOPSIS
jmap [ option ] pid
jmap [ option ] executable core
jmap [ option ] [server-id@]remote-hostname-or-IP
3、参数说明
1)options:
executable Java executable from which the core dump was produced.
(可能是产生core dump的java可执行程序)
core 将被打印信息的core dump文件
remote-hostname-or-IP 远程debug服务的主机名或ip
serve ...
tcpdump -i eth1 -t -s 0 host 172.16.27.169 -w ./169.cap
tcp port 8888
2012-10-11 10:50:35| 分类: rhel_apache |举报|字号 订阅
tcpdump -XvvennSs 0 -i eth0 tcp[20:2]=0x4745 or tcp[20:2]=0x4854
0x4745 为"GET"前两个字母"GE"
0x4854 为"HTTP"前两个字母"HT"
说明: 通常情况下:一个正常的TCP连 ...
博客分类: web服务器技术
nginx upstream keepalive connections
Nginx从 1.1.4 开始,实现了对后端机器的长连接支持,这是一个激动人心的改进,这意味着 Nginx 与后端机器的通信效率更高,后端机器的负担更低。
例如,对一个没有长连接支持的后端机器,会出现大量TIME_WAIT 状态的连接,使用以下命令验证之:
netstat -n | grep TIME_WAIT
经过查阅官方文档,其目前已经实现了http, fastcgi, memcache 协议的长连接支持。而之前的版本中仅支持 memcache 协议。
1. 启用到 me ...
Linux - ss命令详解
- 博客分类:
- 网络
Linux - ss命令详解
2012-09-13 11:02:18| 分类: Linux |举报|字号 订阅
ss -l 显示本地打开的所有端口
ss -pl 显示每个进程具体打开的socket
ss -t -a 显示所有tcp socket
ss -u -a 显示所有的UDP Socekt
ss -o state established '( dport = :smtp or sport = :smtp )' 显示所有已建立的SMTP连接
ss -o state established '( dport = :http or sport = :http )' 显示所有已建立的H ...
ruby2.0 installer 下载
http://dl.bintray.com/oneclick/rubyinstaller/rubyinstaller-2.0.0-p353.exe?direct
报错
ERROR: Error installing rails:
The 'atomic' native gem requires installed build tools.
Please update your PATH to include build tools or download the DevKit
from 'http://rubyinstaller.o ...