nginx日志中访问最多的100个ip及访问次数
awk '{print $1}' /opt/software/nginx/logs/access.log| sort | uniq -c | sort -n -k 1 -r | head -n 100

相关文章:

  • 2022-12-23
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
猜你喜欢
  • 2021-12-14
  • 2022-02-22
  • 2022-12-23
  • 2021-05-06
  • 2021-10-05
  • 2021-09-18
相关资源
相似解决方案