HTML Apache Server Startet nicht, trotz korrekter Syntax

the-lord-ger

Newbie
Registriert
Sep. 2008
Beiträge
3
Servus und Frohes neues.

Ich wollte mich mal mit dem Apache selber beschäftigen, anstatt XAMPP zu benutzen.

Bisher bin ich ganz gut klar gekommen. Aber ich habe jetzt eine Übungsaufgabe bekommen mit einer gegebenen Syntax der httpd.conf des Apache. Der Syntax-test läuft ohne Fehler durch, aber der Server will nicht starten.

Hier die Konfig:

DefaultType text/html
DirectoryIndex index.html
DocumentRoot "D:/Programme/Apache/Apache2.2/htdocs"
ErrorLog "logs/error.log
LogLevel info
CustomLog "logs/access.log" common
Listen 80
Listen 100
Listen 443
ServerAdmin admin@test.de
ServerName hp-srv01
ServerRoot "D:/Programme/Apache/Apache2.2"

LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
loadModule setenvif_module modules/mod_setenvif.so
LoadModule ssl_module modules/mod_ssl.so

<Directory />
AllowOverride None
Deny From all
Options FollowSymLinks
Order deny,allow
</Directory>

<Directory "D:/Programme/Apache/Apache2.2/htdocs">
Allow From all
AllowOverride None
Options Indexes FollowSymLinks
Order allow,deny
</Directory>

<FilesMatch "^\.ht>
Deny From all
Order allow,deny
Satisfy all
</FilesMatch>

<IfModule dir_module>
DirectoryIndex index.html
</IfModule>

<IfModule log_config_module>
LogFormat "%h %l %u %t\"%r\" %>s %b\"%{Referer}i\"\"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t\"%r\" %>s %b" common
</IfModule>

<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

include conf/extra/httpd-ssl.conf



AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AddType application/x-httpd-php .php
TypesConfig conf/mime.types
LoadModule cgi_module modules/mod_cgi.so
LoadModule include_module modules/mod_include.so
LoadModule php5_module "D:/php/php5apache2_2.dll"
#Loadmodule jk_module modules/mod_jk-1.2.31.httpd-2.2.3.so
#JkWorkersFile conf/workers.properties

NameVirtualHost *:80
NameVirtualHost *:443
#Ausgeklammert da noch kein Virtual Host Port 100 vorhanden!
#NameVirtualHost *:100

#Standardumleitung für Port 443

<VirtualHost localhost:443>
Redirect permanent "/" "D:/Programme/Apache/Apache2.2/htdocs"
ServerName "hp-srv01"
</VirtualHost>

#Schule Port 80
<VirtualHost *:80>
ServerName www.schule.de
ServerAlias schule.de
ScriptAlias "/cgi-bin" "D:/web/www_schule_de/Port80/cgi-bin"
ErrorLog "D:/web/www_schule_de/Port80/logs/error.log"
DocumentRoot "D:/web/www_schule_de/Port80/htdocs"

<Directory "D:/web/www_schule_de/Port80/htdocs">
Options None
Order deny,allow
Allow From all
</Directory>

<Directory "D:/web/www_schule_de/Port80/cgi-bin">
Options None
Order deny,allow
Allow From all
</Directory>
</VirtualHost>


Es handelt sich um eine reine Testumgebung. Irgendwelche Bezüge zu anderen Seiten sind zufällig :D

Wär cool wenn jemand ne Idee hat woran es liegt.
 
Welches Verhalten zeigt Apache beim Starten?

Wird Apache in der Eingabeaufforderung mit "netstat -ab" angezeigt?

Mit welcher URL greifst du denn zu?

Sind alle Logfiles leer?
 
Jetzt mal doof gefragt, aber woran merkst du, dass der Server nicht läuft, wenn du keinen Fehler ausgegeben bekommst?
 
@Picola

Thx. Ich habe bei SSL etwas übersehen...
Was genau muss ich noch nachprüfen, aber jetzt starten der Apache :)

Danke auch für die anderen Antworten.
 
Zurück
Oben