In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-26 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/03 Report--
Nginx Access Log log statistics analysis common commands Nginx Access Log log statistics analysis common commands IP related statistics
Statistics of IP visits
Awk'{print $1} 'access.log | sort-n | uniq | wc-l
Check the number of IP visits in a certain period of time (4-5 o'clock)
Grep "07/Apr/2017:0 [4-5]" access.log | awk'{print $1}'| sort | uniq-c | sort-nr | wc-l
View IP visits at a point in time (11: 54:37)
Grep "15/Jul/2017:11:54:37" access.log | awk'{print $1}'| sort | uniq-c | sort-nr
Check out the top 100 most frequently visited IP
Awk'{print $1} 'access.log | sort-n | uniq-c | sort-rn | head-n 100
View IP that have been visited more than 100 times
Awk'{print $1} 'access.log | sort-n | uniq-c | awk' {if ($1 > 100) print $0}'| sort-rn
Query the detailed access of an IP, sorted by access frequency
Grep '104.217.108.66' access.log | awk' {print $7}'| sort | uniq-c | sort-rn | head-n 100 page visit statistics
View the most visited page (TOP100)
Awk'{print $7} 'access.log | sort | uniq-c | sort-rn | head-n 100
View the most frequently visited pages ([exclude php pages] (TOP100)
Grep-v ".php" access.log | awk'{print $7}'| sort | uniq-c | sort-rn | head-n 100
View pages that have been visited more than 100 times
Cat access.log | cut-d''- f 7 | sort | uniq-c | awk'{if ($1 > 100) print $0}'| less
View the most visited page with the last 1000 records
Tail-1000 access.log | awk'{print $7}'| sort | uniq-c | sort-nr | less request statistics per second
Count the number of requests per second and the time point of top100 (accurate to seconds)
Awk'{print $4} 'access.log | cut-c 14-21 | sort | uniq-c | sort-nr | head-n 100 request statistics per minute
Count the number of requests per minute and the time point of top100 (accurate to minutes)
Awk'{print $4} 'access.log | cut-c 14-18 | sort | uniq-c | sort-nr | head-n 100 hourly request statistics
Count the number of requests per hour and the time point of top100 (accurate to hours)
Awk'{print $4} 'access.log | cut-c 14-15 | sort | uniq-c | sort-nr | head-n 100 performance analysis
Add $request_time to the last field in nginx log
List the pages with a transmission time of more than 3 seconds, and display the first 20
Cat access.log | awk'($NF > 3) {print $7}'| sort-n | uniq-c | sort-nr | head-20
List the pages with a request time of more than 3 seconds for php pages, and count the number of times they appear, showing the first 100 entries
Cat access.log | awk'($NF > 1 & & $7cm /\ .php /) {print $7}'| sort-n | uniq-c | sort-nr | head-100spider crawl statistics
Statistics on the number of spiders crawling
Grep 'Baiduspider' access.log | wc-l
Count the number of spiders crawling 404
Grep 'Baiduspider' access.log | grep' 404' | wc-lTCP connection statistics
View current TCP connections
Netstat-tan | grep "ESTABLISHED" | grep ": 80" | wc-l
Use tcpdump to sniff the access to port 80 to see who is the highest.
Tcpdump-I eth0-tnn dst port 80-c 1000 | awk-F "."'{print $1 "." $2 "." $3 "." $4}'| sort | uniq-c | sort-nr
Http://www.cnblogs.com/coolworld/p/6726538.html
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.