Skip to content

Apache issues

Errors AH00035, AH00529

In log /var/log/ce-error.log

(13)Permission denied: [client 127.0.0.1:51760] AH00035: access to / denied (filesystem path '/home/user/Dropbox/www') because search permissions are missing on a component of the path

Checking

# ls -l
total 36
drwxr-xr-x 3 dima dima 4096 May  6 10:13 Downloads
drwx------ 6 dima dima 4096 May 11 22:51 Dropbox
drwxr-xr-x 2 dima dima 4096 May  2 18:13 Music

Solution

chmod 755 -R /home/dima/Dropbox/www/

Error: AH01630: client denied by server configuration: ...

Error is inside config. Fix it:

    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    # Order deny,allow
    # Allow from all
    Require all granted

Error: apache2 could not reliably determine the server’s fully qualified domain name using

Solution:

echo ServerName localhost | sudo tee -a /etc/apache2/conf.d/vhosts.conf

Asks to enter the SSL certificate key password when starting the service:

openssl rsa -in cloud.com.key -out cloud.com.key2

Apache 2.4 can't start on Windows

The service stops immediately after starting. The event log may contain lines like these:

make_sock: could not bind to address 0.0.0.0:80
AH00072: make_sock: could not bind to address 0.0.0.0:80

The gist: port 80 is busy. Solution: Find whoever is using port 80 and free it up. Possible reasons: 1. Skype. Disable the use of ports 80, 443 in the connection settings.