access_logを指定して,どのIPアドレスからどれだけアクセスされたかざっくり見る
sudo cut -d" " -f1 /var/log/httpd/access_log | sort | uniq -c | sort -r
過去分も含める場合
cd /var/log
sudo find httpd -name access_log* -exec cut -d" " -f1 {} \; | sort | uniq -c | sort -r
データが多すぎると無理かも
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
access_logを指定して,どのIPアドレスからどれだけアクセスされたかざっくり見る
sudo cut -d" " -f1 /var/log/httpd/access_log | sort | uniq -c | sort -r
過去分も含める場合
cd /var/log
sudo find httpd -name access_log* -exec cut -d" " -f1 {} \; | sort | uniq -c | sort -r
データが多すぎると無理かも
Register as a new user and use Qiita more conveniently
Go to list of users who liked