Ich bin neu in Apache und versuche, AWStats auf meinem Ubuntu 12.04-Server einzurichten. Ich habe die Anleitung bei Ubuntu Docs befolgt .
Ich habe es gemäß den Anweisungen eingerichtet und awstats kann erfolgreich erste Statistiken aus dem Apache-Protokoll generieren. Ich habe die Links zu awstats in die virtuelle Standardhostdatei eingefügt. Wenn ich jedoch versuche zu rennen http://server-ip-address:8080/awstats/awstats.pl
, bekomme ich:
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).
Hier ist meine /etc/apache2/sites-available/default
Datei:
<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>
Die einzigen drei Variablen, die ich bearbeitet habe, /etc/awstats/awstats.conf
sind:
LogFile="/var/log/apache2/access.log"
SiteDomain="server-name.noip.org"
HostAliases="localhost 127.0.0.1 server-name.no-ip.org"
Der Apache-Server funktioniert einwandfrei und ich kann auf andere auf dem Server gespeicherte Seiten zugreifen. Jede Anleitung wäre willkommen.
AKTUALISIEREN:
Es stellt sich heraus, dass Sie die awstats.conf
Datei zusätzlich zur awstats.server-name.no-ip.org
Datei bearbeiten müssen , damit sie funktioniert. Die Wiki-Anweisungen lauteten, nur die selbst erstellte Conf-Datei zu bearbeiten. Sobald ich das awstats.conf
selbst bearbeitet hatte, fing es an zu funktionieren.