Ich bin neu im Debianforum und freue mich hier Mitglied zu sein.
Ich kann mein apache Webserver nicht starten. Da ich bei Configtest ein Syntax OK erhalte und das Error Logfile nichts fehlerhaftes ausgibt womit ich etwas anfangen kann bitte ich euch um Hilfe. Ich habe schon bei google gesucht weshalb Apache nicht startet leider fand ich keine Lösung welche mein Problem behoben hat. Ich habe noch nicht so viele Erfahrungen mit Apache.
Hier die Fehlermeldung:
Code: Alles auswählen
/etc/apache2/sites-available# service apache2 start
[....] Starting web server: apache2Action 'start' failed.
The Apache error log may have more information.
failed!
Da sind die configfiles:
default
Code: Alles auswählen
<VirtualHost *:81>
ServerAdmin owncloud@localhost
DocumentRoot /var/www/owncloud
ServerName owncloud
Redirect permanent / https://192.168.40.41
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/owncloud>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Code: Alles auswählen
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName owncloud
DocumentRoot /var/www/owncloud
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
hier
Code: Alles auswählen
# If both key and certificate aivatere stored in the same file, only the
# SSLCertificateFile directive is needed.
SSLCertificateFile /etc/ssl/private/owncloud/apache.pem
SSLCertificateKeyFile /etc/ssl/private/owncloud/CA.key
000-default
Code: Alles auswählen
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName owncloud
DocumentRoot /var/www/owncloud
Redirect permanent / https://192.168.40.41
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Code: Alles auswählen
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
NameVirtualhost *:443
Listen 443
</IfModule>
Apache version
Code: Alles auswählen
Server version: Apache/2.2.22 (Debian)
Ich hoffe ihr könnt mir helfen oder irgendwie ein Tipp geben damit ich apache zum laufen bringe.
Gruss OSX