- 浏览: 362045 次
- 性别:
- 来自: 沈阳
最新评论
-
87029274:
JDBCAppender 批量存入数据库,源代码写的就是个锤子 ...
把重要的业务日志异步批量写入数据库 LOG4J -
zzz_robinson:
受益匪浅...很经典
世界少了我,其实无所谓。但我少了我,还剩什么? -
jackytang520:
你们也有这个问题啊,不过我们当初也是, 老是打印的时候内存溢出 ...
生产环境jvm内存运行1小时,就接近xmx,系统奇慢。大量的jasperreport无法释放。 -
xurichusheng:
当我在jsp页面上输入“<”时,这东西只弹出html标签 ...
Veloeclipse是一个HTML/XML/JSP/Velocity编辑器 -
neptune:
phoenixup 写道给你举个例子,我做过一个应用~~10万 ...
用tomcat做的大中型系统有哪些
文章列表
# 将 RewriteEngine 模式打开
RewriteEngine On
# 修改以下语句中的 / 为你的网站目录地址,如果程序放在二级目录中,如/phpcms 请将 / 修改为 /phpcms
RewriteBase /
# Rewrite 系统规则,添加或者修改请根据其规则
RewriteRule ^(.*)show-([0-9]+)-([0-9]+)\.html$ $1/show.jsp?itemid=$2&page=$3
RewriteRule ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1/list.jsp?catid ...
- 2008-03-26 17:33
- 浏览 2165
- 评论(0)
高负载WEB动态页面与静态页面的分离Apache, CentOS, Lighttpd, mod_cache, mod_proxy, mod_rewrite, 性能2006-10-19 @ 23:36:52 · Filed under Apache, CentOS, Lighttpd试了一段时间的Lighttpd,表现的确不错,原先用APACHE只能跑到6K/S,改用Lighttpd后性能提升了将近一倍,只是跑PHP似乎很不稳定,数据库处理时间长一点就会到导致Lighttpd出现500的错误,也就是说要想使Lighttpd发挥更好的性能,除了优化程序还是
- 2008-03-26 16:41
- 浏览 1883
- 评论(0)
对服务器而言最重要的就是优化了.apache的优化文章,相信你也见过不少了.这里稍微摘出lighttpd的几个优化参数看一看.1 最大连接数默认是1024修改 server.max-fds,大流量网站推荐2048.因为lighttpd基于线程,而apache(MPM-prefork)基于子进程,所以apache需要设置startservers,maxclients等,这里不需要2 stat() 缓存stat() 这样的系统调用,开销也是相当明显的.缓存能够节约时间和环境切换次数(context switches)一句话,lighttpd.conf加上server.stat-cache-engin ...
- 2008-03-26 16:29
- 浏览 3153
- 评论(0)
引用网站
http://sery.blog.51cto.com/10037/54645
http://www.wappan.com/html/93/fac20ee3c5bc1659bc8e6ba2771c5b31.html
ipvs安装时与http://www.wappan.com/html/93/fac20ee3c5bc1659bc8e6ba2771c5b31.html为准
配置时与http://sery.blog.51cto.com/10037/54645为准
以下是配置好的代码
分派器代码
#!/bin/sh
VIP=192.168.5.114
RIP1=192.168.5.136 ...
- 2008-03-14 09:12
- 浏览 1855
- 评论(0)
1.查看服务器是否运行起来了,则用下面的命令;
pgrep 服务名
例如:查看samba服务是否开启
pgrep smbd
2.kill 服务
pkill smbd
3.查看服务使用端口号
netstat -tlnp | grep 服务
例如:查看samba服务使用端口
netstat -tlnp |grep smb
4.查看端口被什么服务使用
netstat -anp | grep 端口号
5.把防火墙规则清掉
iptables -F
或
/sbin/iptables -F
- 2008-03-07 14:56
- 浏览 1437
- 评论(0)
打开VNC服务
[root@linux root]# vncserver
You will require a password to access your desktops.
Password: ***** 为了不想任何人都可以任意遥控此计算机。因此当第 1次启动VNC server时,会要求设置网络遥控的密码。
Verify: *****
New ‘X’ desktop is linux:1 ----一定要记住这一行稍后会用到,终端编号;
Creating default startup script /root/.vnc/xstartup
Starting applicat ...
- 2008-03-07 14:31
- 浏览 3367
- 评论(0)
参照http://www.ccfblog.com/blog/Turion/archives/2008/10373.shtmlhttp://tech.ccidnet.com/art/9513/20080121/1349179_1.html http://www1.mplayerhq.hu/MPlayer/releases/MPlayer-1.0rc2.tar.bz2http://www1.mplayerhq.hu/MPlayer
... ll-20071007.tar.bz2http://www1.mplayerhq.hu/MPlayer
... ws-all-20071007.zipskin ...
- 2008-03-05 10:38
- 浏览 2153
- 评论(0)
参数如下两个网址:
http://www.club.zj.com/viewthread.php?tid=1127180
http://bbs.chinaunix.net/thread-1035512-1-1.html
与网址1为准:
现结合两个网址,写Oracle10g如果在RHEL5下安装:
RHEL5 上 安装 Oracle 10.2.0.1
这两天在Red Hat Enterprise Linux 5 (RHEL5)上安装了O ...
- 2008-02-28 17:04
- 浏览 15298
- 评论(0)
$HTTP["host"] == "localhost" {
$HTTP["url"] =~ ".jsp|.go|.do|action" {
proxy.balance = "hash"
proxy.server = ( "" => ( ( "host" => "127.0.0.1", "port" => 8080 ) ))
}
}
这里的action是指http://localhost/act ...
- 2008-02-27 17:00
- 浏览 3011
- 评论(0)
安装lighttpd时,要求先安装pcre。
安装完pcre,一定要用export PATH打通pcre的path路径.
- 2008-02-27 16:59
- 浏览 1269
- 评论(0)
你 需要退出 x - windows ,我 nv 显卡 安装 方法: nv 的显卡驱动安装非常简单。1:下载驱动文件:NVIDIA-Linux-x86-169.07-pkg1.run(我的是 i386 系统) ,放到 root 文件夹里。2:在终端里输入 init 3 ,进入非桌面环境。3:执行命令: sh NVIDIA-Linux-x86-169.07-pkg1.run 4:一路安装只要会一点英语大都能成功,在最后 选择 yes 。
5:shutdown -r now 重启,驱动安装完成。6:3D特效 ,gedit /etc/X11/xorg.conf ,在 有 Section "M ...
- 2008-02-27 14:33
- 浏览 3278
- 评论(0)
yum -y install pidgin
这里会出现一些问题,如下:
Error: Missing Dependency: libgtkspell.so.0 is needed by package pidgin
Error: Missing Dependency: libsilc-1.0.so.2 is needed by package libpurple
Error: Missing Dependency: cyrus-sasl-md5 is needed by package libpurple
Error: Missing Dependency: libsilcclient-1.0. ...
- 2008-02-27 09:03
- 浏览 3715
- 评论(0)
分区
Oracle分区功能是管理大型数据库的关键,采用了一项所谓的“分而治之”技术来管理数据库的大型表,尤其适用于内容不断增加的表。
就算您的数据库能够容纳比去年多两倍的数据量,但您的终端用户可不会容忍 ...
- 2008-02-18 16:13
- 浏览 2276
- 评论(0)
1.已被缓存的对象,被修改后,再get时是从那里获取对象?
修改方法(update)提交后,会更新缓存中对象的属性,然后生成sql语句交提交.如果再get将直接从二级cache中读取.
2.批量(bulk)的update或delete sql执行后的二级cache如果处理?
bulk的sql将把涉及要修改表对应的二级缓存对象作废
例如:bulk sql:update user set name='fff' where id='111',则user的二级缓存将全部作废,
如果下面再有get方法,将直接从数据库中读取,并存放到二级cache中.
3.查询缓存
查询缓存依赖于二级缓,但两者存 ...
- 2008-02-18 09:01
- 浏览 1463
- 评论(0)
http://tomcat.heanet.ie/native/
- 2008-02-13 09:24
- 浏览 2225
- 评论(0)