Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Tuesday, June 18, 2019

apachectl startssl: execing httpd

While starting Apache services were getting below error :


$ ./adapcctl.sh start

You are running adapcctl.sh version 120.7.12010000.2

Starting OPMN managed Oracle HTTP Server (OHS) instance ...
opmnctl: opmn is already running.
opmnctl: starting opmn managed processes...
================================================================================
opmn id=hostname:10525
    0 of 1 processes started.

ias-instance id=SID_hostname.hostname.domanin name.com
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--------------------------------------------------------------------------------
ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/

Error
--> Process (index=2,uid=18683685,pid=2255)
    failed to start a managed process after the maximum retry limit
    Log:
    /SID/mtlog/SID_hostname/logs/ora/10.1.3/opmn/HTTP_Server~1.log


adapcctl.sh: exiting with status 0


When checked log file : /SID/mtlog/SID_hostname/logs/ora/10.1.3/opmn/HTTP_Server~1.log

-------
19/06/17 13:42:39 Start process
--------
/SID/inst/apps/SID_hostname/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd
Syntax error on line 17 of /SID/inst/apps/SID_hostname/ora/10.1.3/Apache/Apache/conf/mod_osso.conf:
Unable to open /SID/inst/apps/SID_hostname/ora/10.1.3/Apache/Apache/conf/osso/SID_hostname_osso.conf.

Solution:

Disable sso, commented the below parameter in hhpd.conf file.

$ grep -i sso httpd.conf

# Include the configuration files needed for mod_osso
#include "/SID/inst/apps/SID_hostname/ora/10.1.3/Apache/Apache/conf/mod_osso.conf"

$

Next solution:

1. Backup the $CONTEXT_FILE
2. Edit the parameter  "s_mod_osso_conf_comment" in the $CONTEXT_FILE using editContext utility,  or manually using a text editor
3. Set the value for the above parameter to "#"
4. Save the changes and run Autoconfig
5. Start the Apache service to re-test the issue

start http component:

adopmnctl.sh startproc process-type=HTTP_Server

No comments:

Post a Comment