I installed apache tomcat connector and configured all the settings successfully, httpd service also started, but while loading webpage , it is throwing 500 internal service error. In error log it is showing below error:
Permission denied: apr_global_mutex_lock(jk_log_lock) failed
Permission denied: apr_global_mutex_unlock(jk_log_lock) failed
Permission denied: apr_global_mutex_lock(jk_log_lock) failed
Permission denied: apr_global_mutex_unlock(jk_log_lock) failed
Installed apache connector version : 1.2.42
Installed httpd version : 2.4.28
Here is my httpd.conf file
LoadModule jk_module modules/mod_jk.so
JkWorkersFile /usr/local/apache/conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel emerg
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T %p %q %r %v %U"
I changed log level to info also, but still it isn't working.