我只是做了一个粗略的设置,手动设置 AwStats 似乎可以在我的 OpenLiteSpeed Web 服务器上运行。
sudo apt install awstats
安装您已经安装的 AwStats 。
- 设置 AwStats 配置。请将以下条目添加到/etc/awstats/awstats.conf:
- 包括“/etc/awstats/awstats.conf.local”
- 日志文件="/var/www/html/logs/access.log"
- SiteDomain="example.com"
- HostAliases="example.com 本地主机 127.0.0.1"
- AllowToUpdateStatsFromBrowser=1
请注意,请确保将 example.com 域名和访问日志路径替换为您自己的设置。
- 验证您的 AwStats 设置
构建从当前日志生成的初始统计信息,
/usr/lib/cgi-bin/awstats.pl -config=example.com -update
示例返回:
From data in log file "/var/www/html/logs/access.log"...
Phase 1 : First bypass old records, searching new record...
Direct access after last parsed record (after line 50)
Jumped lines in file: 50
Found 50 already parsed records.
Parsed lines in file: 146
Found 0 dropped records,
Found 0 comments,
Found 0 blank records,
Found 0 corrupted records,
Found 0 old records,
Found 146 new qualified records.
如果输出没有错误,我们可以开始设置 Awstats 显示
- 显示 Awstats
将 cgi-bin 和图标的符号链接添加到文档根目录
ln -sf /usr/lib/cgi-bin /var/www/html/cgi-bin
ln -sf /usr/share/awstats/icon/* /var/www/html/awstats-icon
在端口 7080 > VirtualHosts > Name > Context导航到Web Admin,然后创建 CGI 上下文
- URI=/cgi-bin/
- 路径=/var/www/html/cgi-bin
单击保存按钮并优雅地重新启动Web 服务器。
现在您可以通过访问 URL http://your-server-ip/cgi-bin/awstats.pl?config=example.com 来访问您的 AwStats