web-dev-qa-db-ja.com

AWStatsをUbuntu 12.04で動作させる

私はApacheが初めてで、ubuntu 12.04サーバーにAWStatsをセットアップしようとしています。私は buntuドキュメントのガイド に従いました。

指示に従ってセットアップしました。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で編集した3つの変数は次のとおりです。

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自体を編集すると、機能し始めました。

7
koogee

セットアップ( '/etc/awstats/awstats.conf'ファイル、Webサーバー、または権限)が間違っている可能性があります。

Awstatscgi-scriptがconfigfileを読み取れないようです。 webserver-user(通常はwww-data)がこのファイルを読み取れることを確認してください。

1
Teun Vink