摘要:
centos 5.8 资源路径: http://vault.centos.org/5.8/os/x86_64/CentOS/ rpm -Uvh http://vault.centos.org/5.8/os/x86_64/CentOS/gmp-4.1.4-10.el5.x86_64.rpmrpm -U 阅读全文
摘要:
堆(Heap)和非堆(Non-heap)内存 按照官方的说法:“Java 虚拟机具有一个堆,堆是运行时数据区域,所有类实例和数组的内存均从此处分配。堆是在 Java 虚拟机启动时创建的。”“在JVM中堆之外的内存称为非堆内存(Non-heap memory)”。可以看出JVM主要管理两种类型的内存: 阅读全文
摘要:
执行btrace命令报错:Unable to open socket file: target process not responding or HotSpot VM not loaded -bash-4.1# /apps/svr/jdk7/bin/jstack/jps -l32382 sun.t 阅读全文
摘要:
近日在使用ssh命令ssh user@remote ~/myscript.sh登陆到远程机器remote上执行脚本时,遇到一个奇怪的问题: ~/myscript.sh: line n: app: command not found app是一个新安装的程序,安装路径明明已通过/etc/profile 阅读全文
摘要:
在写这篇博客之前,我google了一堆相关文章,大都是说修改/etc/sudoers,然后NOPASSWD:指定的cmd,但是真心不管用,没有远程虚拟终端这个方法就是浮云,ubuntu10.04 server 亲测!! ssh执行远程操作 命令格式 [html] view plain copy ss 阅读全文
摘要:
kill `ps -ef|grep 进程名 | grep -v grep|awk '{print $2}'` 例如: kill `ps -ef | grep /etc/pam.d/su |grep -v grep |awk '{print $2}'` 阅读全文
摘要:
http://www.jianshu.com/p/26f19095d396 背景 生产环境中可能出现各种问题,但是这些问题又不是程序error导致的,可能是逻辑性错误,这时候需要获取程序运行时的数据信息,如方法参数、返回值来定位问题,通过传统的增加日志记录的方式非常繁琐,而且需要重启server,代 阅读全文
摘要:
原文:http://zhousheng193.iteye.com/blog/1319772 Java代码 <#if letVo.manageScore!=""> ${html('${(letVo.manageScore)!}')} </#if> 当letVo有值,manageScore为“”时(不是 阅读全文
摘要:
http://blog.csdn.net/ani521smile/article/details/52164366 详细教程链接 阅读全文
摘要:
设置用户名和邮箱 git config --global user.name "<username>" git config --global user.email "<email>" 查看是否设置成功:git config –lis 设置用户名和邮箱 git config --global use 阅读全文