How to write a shell script to count appche site IP visits in Linux

WBOY
Release: 2023-05-12 23:28:10
forward
1778 people have browsed it

It is often necessary to count apache site visits based on IP address, the most basic script.

Arrange in descending order according to IP visits:

Copy the code The code is as follows:

# !/bin/bash
#script_name: access_count
acc_log=/usr/local/apache2/logs/access_log
/bin/awk '{print $1}' $acc_log | sort | uniq -c | sort -nr

Execution effect:

Copy code The code is as follows:

[root@zabbix ~]# sh access_count
94989 192.168.100.34
38863 192.168.200.92
23658 192.168.1.71
16720 192.168.100.80
13688 192.168.200.34
1618 192.168.100.104
1251 192.168.1.202
1195 192.168.100.30
1058 192.168.1.203
934 192.168.1.208
792 127.0.0.1
773 192.168.5.126
189 192.168.68

i of the top three IP address:

Copy code The code is as follows:

#!/bin/bash

#script_name:access_count
acc_log=/usr/local/apache2/logs/access_log
/bin/ awk '{print $1}' $acc_log | sort | uniq -c | sort -nr | head -n 3

Execution effect:

Copy code The code is as follows:

[root@zabbix ~]# sh access_count

94989 192.168.100.34
38863 192.168.200.92
23658 192.168.1.71

apache site access error statistics:

Copy code The code is as follows:

#!/bin/bash

#script_name:error_count
err_log=/usr/local/apache2/logs/error_log
cat $err_log | grep -e "^\[" | awk '{print $6}' | sort | uniq -c |sort -nr

Execution effect:

Copy code The code is as follows:

[root@zabbix ~]# sh error_count

701 [core:notice]
30 [mpm_event:notice]
12 [core:warn]
1 [:error]

The above is the detailed content of How to write a shell script to count appche site IP visits in Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template