让 AWStats 在 Ubuntu 12.04 中运行

让 AWStats 在 Ubuntu 12.04 中运行

我是 Apache 新手,正在尝试在我的 ubuntu 12.04 服务器上设置 AWStats。我已关注Ubuntu 文档中的指南

我按照说明进行了设置,awstats 能够成功从 apache 日志生成初始统计信息。我将指向 awstats 的链接放在默认虚拟主机文件中。但是,当我尝试运行 时http://server-ip-address:8080/awstats/awstats.pl,我得到:

Error: SiteDomain parameter not defined in your config/domain file. You must edit it for using this version of AWStats. 

Setup ('/etc/awstats/awstats.conf' file, web server or permissions) may be wrong.
Check config file, permissions and AWStats documentation (in 'docs' directory).

这是我的/etc/apache2/sites-available/default文件:

<VirtualHost *:8080>
    ServerAdmin webmaster@localhost

    DocumentRoot /home/saad/www
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /home/saad/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride AuthConfig
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    Alias /awstatsclasses "/usr/share/awstats/lib/"
    Alias /awstats-icon "/usr/share/awstats/icon/"
    Alias /awstatscss "/usr/share/doc/awstats/examples/css"
    ScriptAlias /awstats/ /usr/lib/cgi-bin/
    Options ExecCGI -MultiViews +SymLinksIfOwnerMatch

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

我编辑的仅有的三个变量/etc/awstats/awstats.conf是:

LogFile="/var/log/apache2/access.log" 
SiteDomain="server-name.noip.org"
HostAliases="localhost 127.0.0.1 server-name.no-ip.org"

Apache 服务器运行良好,我可以访问服务器上存储的其他页面。欢迎提供任何指导。

更新:

事实证明你必须编辑该awstats.conf文件此外编辑awstats.server-name.no-ip.org文件以使其工作。wiki 说明仅编辑自创的 conf 文件。一旦我编辑了它awstats.conf本身,它就开始工作了。

答案1

设置('/etc/awstats/awstats.conf' 文件、Web 服务器或权限)可能有误。

看起来 awstats cgi 脚本无法读取配置文件。请确保 web 服务器用户(通常是 www-data)可以读取此文件。

相关内容