Jehova1
Routinier
Servus,
ich hab gerade ein neues Ubuntu installiert (13.10) und einen neuen Apache.
Nun will ich, dass mein Apache standardmäßig das verzeichnis /home/me/www als localhost anzeigt.
Dafür gibt es im Netz auch so einige Anleitungen aber leider funktionieren die bisher nicht:
Angeblich soll ich die datei /etc/apache2/sites-available/000-default.conf bearbeiten.
Die sah auf meinem alten System so aus:
Aber scheinbar hat sich da einiges geändert.
In der aktuellen Standard-Datei stehen fast nur Kommentare drin:
Wenn ich in dieser neuen Datei das "/var/www" zu "/home/me/www" abändere und Apache neu starte kommt ein Fail. In der error.log steht dann:
Kann mir jemand sagen, was das problem ist?
Gruß, Jehova
ich hab gerade ein neues Ubuntu installiert (13.10) und einen neuen Apache.
Nun will ich, dass mein Apache standardmäßig das verzeichnis /home/me/www als localhost anzeigt.
Dafür gibt es im Netz auch so einige Anleitungen aber leider funktionieren die bisher nicht:
Angeblich soll ich die datei /etc/apache2/sites-available/000-default.conf bearbeiten.
Die sah auf meinem alten System so aus:
Code:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /home/me/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/me/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
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>
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
</VirtualHost>
Aber scheinbar hat sich da einiges geändert.
In der aktuellen Standard-Datei stehen fast nur Kommentare drin:
Code:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Wenn ich in dieser neuen Datei das "/var/www" zu "/home/me/www" abändere und Apache neu starte kommt ein Fail. In der error.log steht dann:
Code:
[Wed Jan 29 18:38:58.627941 2014] [mpm_event:notice] [pid 11880:tid 3074210368] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 18:38:58.628138 2014] [core:notice] [pid 11880:tid 3074210368] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:02:41.966906 2014] [mpm_event:notice] [pid 11880:tid 3074210368] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:02:43.079890 2014] [mpm_event:notice] [pid 12392:tid 3074402880] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:02:43.080074 2014] [core:notice] [pid 12392:tid 3074402880] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:02:56.131366 2014] [authz_core:error] [pid 12393:tid 3020925760] [client 127.0.0.1:46457] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:04:28.564559 2014] [mpm_event:notice] [pid 12392:tid 3074402880] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:04:29.676275 2014] [mpm_event:notice] [pid 12507:tid 3073903168] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:04:29.676460 2014] [core:notice] [pid 12507:tid 3073903168] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:09:23.276826 2014] [mpm_event:notice] [pid 12507:tid 3073903168] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:09:24.385483 2014] [mpm_event:notice] [pid 12675:tid 3074501184] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:09:24.385668 2014] [core:notice] [pid 12675:tid 3074501184] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:09:37.035311 2014] [authz_core:error] [pid 12678:tid 3054496576] [client 127.0.0.1:46602] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:02.431564 2014] [authz_core:error] [pid 12678:tid 3062889280] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:03.419212 2014] [authz_core:error] [pid 12678:tid 3046103872] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:03.621400 2014] [authz_core:error] [pid 12678:tid 3037711168] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:03.808975 2014] [authz_core:error] [pid 12678:tid 3029318464] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:04.008399 2014] [authz_core:error] [pid 12678:tid 3020925760] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:04.221409 2014] [authz_core:error] [pid 12678:tid 3012533056] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:04.401108 2014] [authz_core:error] [pid 12678:tid 3004140352] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:04.604312 2014] [authz_core:error] [pid 12678:tid 2995747648] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:04.823311 2014] [authz_core:error] [pid 12678:tid 2987354944] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:05.009720 2014] [authz_core:error] [pid 12678:tid 2978962240] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:05.185769 2014] [authz_core:error] [pid 12678:tid 2936998720] [client 127.0.0.1:46622] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:11:38.605469 2014] [mpm_event:notice] [pid 12675:tid 3074501184] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:11:39.720157 2014] [mpm_event:notice] [pid 12839:tid 3074308672] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:11:39.720334 2014] [core:notice] [pid 12839:tid 3074308672] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:15:05.183906 2014] [mpm_event:notice] [pid 12839:tid 3074308672] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:15:06.299539 2014] [mpm_event:notice] [pid 12992:tid 3073940032] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:15:06.299850 2014] [core:notice] [pid 12992:tid 3073940032] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:15:10.005426 2014] [authz_core:error] [pid 12993:tid 2944342848] [client 127.0.0.1:46678] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:15:11.027755 2014] [authz_core:error] [pid 12993:tid 2935950144] [client 127.0.0.1:46678] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:15:11.202913 2014] [authz_core:error] [pid 12993:tid 2927557440] [client 127.0.0.1:46678] AH01630: client denied by server configuration: /home/me/www/
[Wed Jan 29 19:19:46.284500 2014] [mpm_event:notice] [pid 12992:tid 3073940032] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:19:47.391563 2014] [mpm_event:notice] [pid 13145:tid 3074226752] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:19:47.391733 2014] [core:notice] [pid 13145:tid 3074226752] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:25:15.324287 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.363940 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.363980 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364003 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364026 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364048 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364094 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364118 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364141 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364162 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364199 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:15.364231 2014] [core:error] [pid 13149:tid 2861464384] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538343 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538420 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538446 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538470 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538493 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538519 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538561 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538586 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538609 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538633 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538657 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:17.538682 2014] [core:error] [pid 13149:tid 3020925760] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.375887 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376014 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376064 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376109 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376155 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376199 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376267 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376312 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376356 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376401 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376445 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.376488 2014] [core:error] [pid 13149:tid 2995747648] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.599930 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600036 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600086 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600159 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600206 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600253 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600329 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600381 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600431 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600477 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600524 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.600570 2014] [core:error] [pid 13149:tid 2970569536] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.840937 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841061 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841113 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841162 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841209 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841287 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841369 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841423 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841475 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841522 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841570 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:18.841617 2014] [core:error] [pid 13149:tid 2945391424] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051102 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.html denied (filesystem path '/var/www/html/resume/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051216 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.cgi denied (filesystem path '/var/www/html/resume/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051267 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.pl denied (filesystem path '/var/www/html/resume/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051316 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.php denied (filesystem path '/var/www/html/resume/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051365 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.xhtml denied (filesystem path '/var/www/html/resume/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051413 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/resume/index.htm denied (filesystem path '/var/www/html/resume/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051531 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.html denied (filesystem path '/var/www/html/hannes/index.html') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051630 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.cgi denied (filesystem path '/var/www/html/hannes/index.cgi') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051682 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.pl denied (filesystem path '/var/www/html/hannes/index.pl') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051730 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.php denied (filesystem path '/var/www/html/hannes/index.php') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051778 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.xhtml denied (filesystem path '/var/www/html/hannes/index.xhtml') because search permissions are missing on a component of the path
[Wed Jan 29 19:25:19.051825 2014] [core:error] [pid 13149:tid 3062889280] (13)Permission denied: [client 127.0.0.1:46816] AH00035: access to /html/hannes/index.htm denied (filesystem path '/var/www/html/hannes/index.htm') because search permissions are missing on a component of the path
[Wed Jan 29 19:31:21.994023 2014] [mpm_event:notice] [pid 13145:tid 3074226752] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:31:23.101867 2014] [mpm_event:notice] [pid 13512:tid 3074730560] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:31:23.102045 2014] [core:notice] [pid 13512:tid 3074730560] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:31:52.403573 2014] [mpm_event:notice] [pid 13512:tid 3074730560] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:31:53.509845 2014] [mpm_event:notice] [pid 13654:tid 3074038336] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:31:53.510024 2014] [core:notice] [pid 13654:tid 3074038336] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 19:45:00.115978 2014] [mpm_event:notice] [pid 13654:tid 3074038336] AH00491: caught SIGTERM, shutting down
[Wed Jan 29 19:46:08.606519 2014] [mpm_event:notice] [pid 1023:tid 3074071104] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Wed Jan 29 19:46:08.616256 2014] [core:notice] [pid 1023:tid 3074071104] AH00094: Command line: '/usr/sbin/apache2'
[Wed Jan 29 20:01:30.754693 2014] [mpm_event:notice] [pid 1023:tid 3074071104] AH00491: caught SIGTERM, shutting down
[Thu Jan 30 12:24:49.312775 2014] [mpm_event:notice] [pid 993:tid 3073940032] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Thu Jan 30 12:24:49.345280 2014] [core:notice] [pid 993:tid 3073940032] AH00094: Command line: '/usr/sbin/apache2'
[Thu Jan 30 12:32:54.618378 2014] [mpm_event:notice] [pid 993:tid 3073940032] AH00491: caught SIGTERM, shutting down
[Thu Jan 30 12:50:50.564665 2014] [mpm_event:notice] [pid 996:tid 3074587200] AH00489: Apache/2.4.6 (Ubuntu) configured -- resuming normal operations
[Thu Jan 30 12:50:50.597180 2014] [core:notice] [pid 996:tid 3074587200] AH00094: Command line: '/usr/sbin/apache2'
Kann mir jemand sagen, was das problem ist?
Gruß, Jehova