原贴:http://www.sofee.cn/blog/category/technical/lighttpd/
Archive for Lighttpd
2006-10-19 @ 23:36:52 · Filed under Lighttpd, Apache, CentOS
试 了一段时间的Lighttpd,表现的确不错,原先用APACHE只能跑到6K/S,改用Lighttpd后性能提升了将近一倍,只是跑PHP似乎很不稳 定,数据库处理时间长一点就会到导致Lighttpd出现500的错误,也就是说要想使Lighttpd发挥更好的性能,除了优化程序还是优化程序,尽可 能的加快PHP的执行速度,另外加上eAccelerator性能会有更大的提高。
说了这么多优点,再来说说公司最近所尝试的一些经验,PHP程序已被优化的不能再优化了,但是有时候操作一下数据库(比如执行mysqldump) 就会出现500错误,并发量非常大的时候很容易出现,在这点上Lighttpd的表现就没有Apache稳定了,所以想了一个折中的办法,让Apache 来处理PHP程序,其他的静态页面(包括图片、软件等等)全都交给Lighttpd来处理。而实现方法就是通过mod_proxy来实现,Apache做 前端处理或Lighttpd做前端处理都行,反正这2种都有个mod_proxy模块,基本上一样。
Read more…
<script type="text/javascript"> addthis_url = 'http%3A%2F%2Fwww.sofee.cn%2Fblog%2F2006%2F10%2F19%2F47%2F'; addthis_title = '%E9%AB%98%E8%B4%9F%E8%BD%BDWEB%E5%8A%A8%E6%80%81%E9%A1%B5%E9%9D%A2%E4%B8%8E%E9%9D%99%E6%80%81%E9%A1%B5%E9%9D%A2%E7%9A%84%E5%88%86%E7%A6%BB'; addthis_pub = 'sofeecn'; </script> <script src="http://s7.addthis.com/js/addthis_widget.php?v=12" type="text/javascript"></script>
No Tags
2006-08-26 @ 14:54:57 · Filed under Lighttpd, Apache, FreeBSD
查看FIN_WAIT_2连接数:
bsd#netstat -an | grep FIN_WAIT_2 | wc -l
2523
修改Lighttpd配置文件,加入下面这条语句:
server.max-keep-alive-requests = 0
bsd#netstat -an | grep FIN_WAIT_2 | wc -l
91
如果服务器开启了ipfw2防火墙的话,还需要执行:
sysctl -w net.inet.ip.fw.dyn_keepalive=0
p.s. 若为APACHE服务器,同理。
<script type="text/javascript"> addthis_url = 'http%3A%2F%2Fwww.sofee.cn%2Fblog%2F2006%2F08%2F26%2F33%2F'; addthis_title = 'Fix+too+many+FIN_WAIT_2+connections+under+freebsd'; addthis_pub = 'sofeecn'; </script> <script src="http://s7.addthis.com/js/addthis_widget.php?v=12" type="text/javascript"></script>