查看Apache 状态是否启动 没有启动则启动 并记录日志 #!/bin/sh curdate=`date +"%Y-%m-%d %H:%M:%S"` echo "#====================================================================" >> /home/shell/apache...
默认Apache日志默认不分割的,对于网站管理员来讲,很多人都会遇到网站的日志文件填满了,而手动删除又很麻烦,所以有聪明的程序员为我们想到了日志轮询的程序。 1、Apache日志 Apache的日志能够详细记录网站的每一个请求,供管理员参考,特别是在网站出现问题的时候,Apache日志文件能提供很多有用的信息,通过分析日志文件,找出网站问题所在。 Apache默认的日志格式可能并不能满足每一个人,...
重启Apache提示DocumentRoot does not exist,类似如下: Stopping httpd: [ OK ] Starting httpd: Warning: DocumentRoot [/var/www/html/test] does not exist 奇怪的是路径明明已经存在。查了下发现一般是由于启用了SELINUX导致的,解决方法为禁用SELINUX: 1.编辑se...
隐藏 Apache 版本信息 /etc/apache2/apache2.conf 或 /etc/httpd/conf/httpd.conf ServerTokens ProductOnly ServerSignature Off 重启 apache 现在 http 头里面只看到: Server: Apache 隐藏 PHP 版本...
在目录下新建一个.htaccess文件 RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://test.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://test.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.test.com/.*$ [N...
Apache防DDOS模块mod_evasive的安装配置和使用 星期四, 09/23/2010 - 18:11 — wdlinux Apache防DDOS模块mod_evasive的安装配置和使用 前些天,朋友的网站访问很慢,查服务器的连接数也不多,资源占用也少.怀疑有攻击,便想装上mod_evasive试试,试后一切正常,很爽 安装配置如下 cd /usr/local/src wg...
Install mod_rpaf on CentOS 5, CentOS 6 This is a quick guide on how to install mod_rpaf on CentOS 5 and CentOS 6. (This guide can also be used to install mod_rpaf on RHEL and Fedora Core) 1. Re...
Nginx 在该站的nginx conf 配置 Server 中: allow 221.226.186.102; deny all; 例如 : server { listen 80; server_name www....
ps -ef |grep httpd|wc -l 或 ps -aux |grep httpd |wc -l 2.查看当前Apache并发连接数和TCP连接状态 netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 其中的SYN_RECV表示正在等待处理的请求数; ESTABLISHED...
开启加载Rewrite a2enmod rewrite 执行后,会提示OK和重启Apache命令(/etc/init.d/apache2 restart)。