记录一下团队学习的内容
web服务器日志
iis
默认在C:\inetpub\logs\LogFiles\W3SVC1(W3SVC2,W3SVC3)[文件名格式为u_ex年月日] 宝塔下在BtSoft\wwwlogs\W3SVC1(W3SVC2,W3SVC3)[文件名格式为u_ex年月日] user-agent前是访问的IP,清除日志的时候替换掉这个IP或者和这个IP有关的删除即可
apache
ubuntu默认在/var/log/apache2 /access.log 宝塔默认在./BtSoft/apache/logs/access.log 清除日志的话把404的日志删除或者 404的客户端访问IP给替换掉
nginx
ubuntu默认在/var/log/nginx /access.log 宝塔默认在BtSoft\wwwlogs\ip.log 清除日志的话把404的日志删除或者 404的客户端访问IP给替换掉
日志清理
1.ip替换
1 | sed \-i 's/192.168.1.36/192.168.2.2/g' access.log |
2.清除相关日志
1 | sed \-i \-e '/ 404 /d' access.log |