Lbmethod_heartbeat: notification - no slot from mod_heartmonitor - after installing apache2.4.2

When the web server starts, error_log shows

[Wed May 16 03:48:53.027372 2012] [lbmethod_heartbeat:notice] [pid 1114:tid 3075385024] AH02282: No slotmem from mod_heartmonitor [Wed May 16 03:48:53.028312 2012] [mpm_event:notice] [pid 1114:tid 3075385024] AH00489: Apache/2.4.2 (Unix) configured -- resuming normal operations [Wed May 16 03:48:53.028351 2012] [core:notice] [pid 1114:tid 3075385024] AH00094: Command line: '/usr/local/apache2/bin/httpd' 

Apache configuration:

 # ./configure --prefix=/usr/local/apache2 --enable-mods-shared=all --enable-deflate --enable-proxy --enable-proxy-balancer --enable-proxy-http --with-included-apr 

I get Forbidden You do not have permission to access this error on the server

This is the error generated in error_log

 [Wed May 16 03:49:20.116317 2012] [authz_core:error] [pid 5015:tid 2946440000] [client 127.0.0.1:59386] AH01630: client denied by server configuration: /home/gowtham/webSites/ferry/ 

is an error due to lbmethod_heartbeat: notice ??

or there is an incorrect permission setting in the DocumentRoot directory, but the directive configuration is taken from the working web server, so I think there are no errors in the block. N I even tried to give

 chown -R [apache_user:apache:group] /home/gowtham/webSites/ferry 

and / home / gowtham got chmod -R 766

thanq

+4
source share
1 answer

These messages are not related. The message "AH02282: No slotmem from mod_heartmonitor" (which is not really an error) is usually found, but still has a functioning server.

You can usually suppress this message by commenting on the module of the heartbeat load balancer method from httpd.conf (unless, of course, you actually use it). It was suggested that this be disabled in the default configuration, but apparently this is not the case.

 #LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so 

There may be a problem with one of the authentication or authorization modules, which causes the server to reject requests. You can try to disable modules starting with "auth" in httpd.conf , as well as any restrictions that you have in your configuration.

+8
source

Source: https://habr.com/ru/post/1412706/


All Articles