NGINX
等web
服务程序生成的日子如何查看,这里有一款在线生成漂亮的报表学习的日志系统-go_access
。
wget https://tar.goaccess.io/goaccess-1.4.tar.gz tar -xzvf goaccess-1.4.tar.gz cd goaccess-1.4/ ./configure --enable-utf8 --enable-geoip=legacy make make install
执行goaccess
验证是否安装成功!
location /go.html { alias /application/nginx/html/go.html; }
保存后退出
touch /application/nginx/html/go.html
#-----------------------goaccess日志---------------- #!/bin/sh LANG="zh_CN.UTF-8" #页面转换为中文 /usr/local/bin/goaccess /application/nginx/logs/access.log -o /application/nginx/html/go.html -p /usr/local/etc/goaccess/goaccess.conf #-----------------------goaccess日志----------------
[root@leilei html]# crontab -l */1 * * * * /bin/bash /root/go.sh > /dev/null 2>&1 &
本文由 podipod软库网 作者:DevOps 发表,转载请注明来源!