发布时间:2013-04-18 16:41:45
首先下载svn 软件#wget http://subversion.tigris.org/downloads/subversion-1.4.0.tar.gz#wget http://subversion.tigris.org/downloads/subversion-deps-1.4.0.tar.gz#tar -zxf subversion-deps-1.4.0.tar.gz#tar -zxf subversion-1.4.0.tar.gz#./configure --prefix=/opt/svn#make clean#make #make install.........【阅读全文】
发布时间:2012-12-21 10:41:01
要想在Linux系统下查看Apache的负 载情况,最简单有效的方法就是查看Apache Server Status,在没有开启Apache Server Status的情况下,或安装的是其他的Web Server,比如Nginx的时候,可以使用下面的命令查看。 #ps -ef|grep httpd|wc -l 10统计httpd进程数,这个请求会启动一个进程,使用于Apache服务器。 表示Apache能够处理10个并发请求,这个值Apache可根据负载情况自动调整。 #netstat -nat|grep -i "80"|wc -l 432 netstat -an会打印系统当前网络链......【阅读全文】
发布时间:2012-12-18 13:35:39
apache限制:apache 配置此操作还是比较方便,因为 httpd 的默认的主机是配置文件中第一个VirtualHost,所以把第一虚拟主机作为 403 forbidden 的响应更为合适(此前这个默认的是主web服务器)。# vim /etc/httpd/conf/httpd.conf例子1:NameVirtualHost *:80<VirtualHost *:80> ServerName * DocumentRoot /var/www/html/404/ <Directory /var/www/html/404/> &n......【阅读全文】