08 2013 档案

jstat使用
摘要:用以判断JVM是否存在内存问题呢?如何判断JVM垃圾回收是否正常?一般的top指令基本上满足不了这样的需求,因为它主要监控的是总体的系统资源,很难定位到java应用程序。Jstat是JDK自带的一个轻量级小工具。全称“Java Virtual Machine statistics monitoring tool”,它位于java的bin目录下,主要利用JVM内建的指令对Java应用程序的资源和性能进行实时的命令行的监控,包括了对Heap size和垃圾回收状况的监控。可见,Jstat是轻量级的、专门针对JVM的工具,非常适用。由于JVM内存设置较大,图中百分比变化不太明显一个极强的监视VM内存 阅读全文

posted @ 2013-08-28 12:22 strikebone 阅读(547) 评论(0) 推荐(0)

Linux安装mysql——源码安装
摘要:1.假设已经有mysql-5.5.10.tar.gz以及cmake-2.8.4.tar.gz两个源文件(1)先安装cmake(mysql5.5以后是通过cmake来编译的)[root@ rhel5 local]#tar -zxv -f cmake-2.8.4.tar.gz[root@ rhel5 local]#cd cmake-2.8.4[root@ rhel5 cmake-2.8.4]#./configure[root@ rhel5 cmake-2.8.4]#make[root@ rhel5 cmake-2.8.4]#make install(2)创建mysql的安装目录及数据库存放目录[r 阅读全文

posted @ 2013-08-17 15:50 strikebone 阅读(188) 评论(0) 推荐(0)

mediawiki的安装
摘要:1. 编译安装libxml2# wget http://xmlsoft.org/sources/libxml2-2.6.32.tar.gz# tar zxvf libxml2-2.6.32.tar.gz# cd libxml2-2.6.32# ./configure --prefix=/usr/local/libxml2/# make && make install2. 编译安装apache# wget ftp://ftp.ru/pub/sunfreeware/SOURCES/httpd-2.2.6.tar.gz# tar zxvf httpd-2.2.6.tar.gz# cd 阅读全文

posted @ 2013-08-17 14:51 strikebone 阅读(422) 评论(0) 推荐(0)

Linux下php安装
摘要:1.前提条件: mysql ,apache, libxml22./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-libxml2=/usr/local/libxml2 阅读全文

posted @ 2013-08-10 18:58 strikebone 阅读(182) 评论(0) 推荐(0)

apache的安装
摘要:1. 安装apr:wgethttp://archive.apache.org/dist/apr/apr-1.4.5.tar.gzwgethttp://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gzwgethttp://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz./configure--prefix=/usr/local/aprmake&&makeinstall/configure--prefix=/usr/local/apr-util-wi 阅读全文

posted @ 2013-08-10 16:52 strikebone 阅读(246) 评论(0) 推荐(0)

导航