HTTPS Server Emulation started

Hi,
When i start Sun WTK Toolkit 2.5, Tool kit wind will appear and it starts printing "HTTPS Server Emulation started" message infinite time.
can any one faced this problem?

Doesn't work how? Was it ever called?

Similar Messages

  • Re Post: Http server cannot start after running the following JSP

    Hi,
    I have 9iAS 1.0.2.2 and it has been working fine.
    My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
    I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
    I also check the oci.dll files, and I have the oci.dll file in the following directories:
    c:\oracle\ora81\BIN 87KB
    c:\oracle\806\BIN 38KB
    c:\oracle\iSuites\BIN 87KB
    I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
    806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
    The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
    Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
    OR
    the OCI.DLL file is corrupted in one of the above directory.
    Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
    I really appreciate if someone could give me some pointers about this.
    I also suspect that when the HTTP server was brought down for some reasons and it was not a clean shutdown.
    So how can I shutdown the http server cleanly before restarting that?
    Thanks;
    Kelly.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>

    I had this problem and the pkgchk mentioned above helped to get the admin server going (thanks!) but I could not run the admin console. I saw:
    Exception in thread "main" java.lang.UnsupportedClassVersionError: org/GNOME/Accessibility/JavaBridge (Unsupported major.minor version 49.0)
    It turned out that something (I suspect the patch) had replaced my java1.5.0_06 binary with a java1.4.2_03 binary - but left the java1.5 directory structure alone! i.e. looking in /usr/jdk would have indicated that java1.5 was installed, but when I ran jdk1.5.0_06/bin/java -version , it reported java version "1.4.2_03". I was unimpressed.
    I ended up removing all the SUNWj5* packages and reinstalling them and then I could start the admin console.
    Now to find out what other damage this patch might have caused.....

  • Http server cannot start after running the following JSP

    Hi,
    I have 9iAS 1.0.2.2 and it has been working fine.
    My http server was running fine until I ran the following Jsp. Now I cannot start the Http server at all.
    I check the Oracle home and the path and make sure they match (i.e. if my Oracle Home is iSuites, I have the PATH variable: c:\oracle\isuites\bin as the 1st one. And I reboot the system after I changed the Oracle Home, check the PATH variable etc.)
    I also check the oci.dll files, and I have the oci.dll file in the following directories:
    c:\oracle\ora81\BIN 87KB
    c:\oracle\806\BIN 38KB
    c:\oracle\iSuites\BIN 87KB
    I check the Registry (regedit) and found that I have ORACLE_HOME_KEY for ora81 home, iSuites home, but not
    806 home. And there are oracle.key files in c:\oracle\ora81\bin, c:\oracle\806\bin, c:\oracle\isuites\bin .
    The contents of oracle.key in c:\oracle\ora81\bin and c:\oracle\isuites\bin are correct (i.e. "Software\ORACLE\HOME0" "Software\ORACLE\HOME2" respectively.) However, the content in c:\oracle\806\bin is "Software\ORACLE" .
    Will this be a problem because there is no corresponding ORACLE_HOME_KEY for 806 in regedit?
    OR
    the OCI.DLL file is corrupted in one of the above directory.
    Below is the JSP code that I ran. Before that, my HTTP server is started correctly.
    I really appreciate if someone could give me some pointers about this.
    Thanks;
    Kelly.
    <%@ page language="sqlj"
    import="sqlj.runtime.ref.DefaultContext,oracle.sqlj.runtime.Oracl
    e" %>
    <HTML>
    <HEAD> <TITLE> The SQLJQuery JSP </TITLE> </HEAD>
    <BODY BGCOLOR="white">
    <% String empno = request.getParameter("empno");
    if (empno != null) { %>
    <H3> Employee # <%=empno %> Details: </H3>
    <%= runQuery(empno) %>
    <HR><BR>
    <% } %>
    <B>Enter an employee number:</B>
    <FORM METHOD="get">
    <INPUT TYPE="text" NAME="empno" SIZE=10>
    <INPUT TYPE="submit" VALUE="Ask Oracle");
    </FORM>
    </BODY>
    </HTML>
    <%!
    private String runQuery(String empno) throws
    java.sql.SQLException {
    DefaultContext dctx = null;
    String ename = null; double sal = 0.0; String hireDate = null;
    StringBuffer sb = new StringBuffer();
    try {
    dctx = Oracle.getConnection("jdbc:oracle:oci8:@", "scott",
    "tiger");
    #sql [dctx] {
    select ename, sal, TO_CHAR(hiredate,'DD-MON-YYYY')
    INTO :ename, :sal, :hireDate
    FROM scott.emp WHERE UPPER(empno) = UPPER(:empno)
    sb.append("<BLOCKQUOTE><BIG><B><PRE>\n");
    sb.append("Name : " + ename + "\n");
    sb.append("Salary : " + sal + "\n");
    sb.append("Date hired : " + hireDate);
    sb.append("</PRE></B></BIG></BLOCKQUOTE>");
    } catch (java.sql.SQLException e) {
    sb.append("<P> SQL error: <PRE> " + e + " </PRE> </P>\n");
    } finally {
    if (dctx!= null) dctx.close();
    return sb.toString();
    %>

    Hi Jim,
    I have the same environment with almost similar problem, no IIS services being started, but HTTP_Server still failed to start. Below log:
    +10/09/28 23:35:04 Start process+
    +[Tue Sep 28 23:35:06 2010] [warn] pid file c:/oracle/frhome_1/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous+
    Apache run?
    ap_spawn_child: Bad file descriptor
    Couldn't fork child for piped log process
    Regards,
    Chai
    Edited by: user13350226 on Sep 28, 2010 9:14 AM

  • HTTP server is started but I can not go to Ultra Search Administration Tool

    Hi,
    I can go to "http://localhost:7778" but not for "http://localhost:7778/ultrasearch/index.html" because of no right, error: "You don't have permission to access /ultrasearch/index.html on this server.", even though I have configured the Ultra Search server component & Middle Tier Component on web server host and HTTP server is started.
    Please help me.
    Many thanks,
    LTH

    The correct URL to admin tool should be http://<host>:<port>/ultrasearch/admin/index.jsp
    You miss "admin" in your url. Try that.
    Cindy

  • HELP--- HTTP Server wont start,

    I disabled the Webgate protecting port 8080 thats being used by OAM now my HTTP server wont start. Thoughts on getting it started. Here's the Enterprise manager HTTP_Server log entry.
    08/04/10 21:18:53 Start process
    [Thu Apr 10 21:18:57 2008] [debug] mod_oc4j.c(1667): Initializing OC4J connection cache size to 40
    [Thu Apr 10 21:18:57 2008] [debug] mod_onsint.c(1202): mod_onsint: after parsing OpmnHostPort directive, got a hostport with host:127.0.0.1, port:7200 and is_ssl:0.
    [Thu Apr 10 21:18:57 2008] [debug] www\src\modplsql\sosd\swwwap.c(1279): mod_plsql: plsql_create_server_config called
    fopen: No such file or directory
    Apache.exe: could not open document config file c:/program
    Thanks!

    I believe you have disabled the web gate in the OAM.But when a web gate is installed, it writes to the HTTP server httpd.conf file to as a part of installation and to redirect the requests on that server to the OAM. So Now if you revert back to the original conf file are the edition before the installation of web gate and try to start the same, you should be fine.

  • Single Sign-on and HTTP Server not started

    I have installed oracle9iAS on SuSE Linux Enterprise Server 8 (SLES 8) which is certified by Oracle to run oracle9iAS. Everything was working propely after installation but when I restarted the server, the listener, the iasdb instance, and the EM started properly but when I went to http://servername:1810 and clicked on start all i got them all started but the HTTP Server and the Single Sign-on. When I tried to start the HTTP Server individually i got the following error:
    oracle.sysman.emSDK.util.jdk.EMException: The opmn request has failed. From opmn: HTTP/1.1 204 No Content Content-Length: 0 Content-Type: text/html Response: 0 of 1 processes started. Check opmn log files such as ipm.log and ons.log for detailed.
    I checked the log and its showing the following:
    03/10/25 16:44:23 Connection 0,192.168.10.11,6200 message missing 'Content-Lengt
    h'
    GET /dms0/Spy?recurse=all&format=xml&operation=get&value=false&units=true&descri
    ption=true&name=%2F HTTP/1.1
    Host: linux2.future:6200
    Connection: Keep-Alive, TE
    TE: trailers, deflate, gzip, compress
    User-Agent: RPT-HTTPClient/0.3-3
    Cache-Control: no-cache
    Pragma: no-cache
    Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
    I tried to start it from command line with the command
    $dcmctl start -ct ohs
    and it returned ADMN-906025
    Anyone can help me solving this problem??

    This error Can be caused by a syntax error in your httpd.conf file, check it / correct it try reloading OHS.
    Ensure that emctl is not running when you run any dcmctl commands! If you have already run any dcmctl commands with emctl running that can cause your problem - if so to fix it solution is really to re-install.

  • HTTP Server not starting in SOA Suite for linux

    Hi all,
    Installation and configuration of the new SOA Suite on SUSE 9 is not without faults. During the configuration the HTTP Server process is not starting. According the log file (opmn/logs/HTTP_Server~1.log) the HTTP Server is trying to start in SSL-mode, but I guess the SSL was not properly configured during the installation by the installer. I am not able to configure SSL myself, so my workaround was to disable SSL in the opmn.xml configuration file.
    Is anyone experiencing these problems? How can I configure SSL? Is SSL supposed to be enabled on the soa-server?
    Thanks in advance,
    Harm
    PS. The type of installation = advanced install, full
    Message was edited by: Harm

    Hi,
    First shutdown iAS, then edit the opmn.xml and restart.
    Original opmn.xml fragment:
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    Edited opmn.xml fragment:
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-disabled"/>
    Kind regards,
    H

  • HTTP Server fails to starts during E-Business installation

    Hello All,
    I am having issues installing e-business suite 12.1.1 on Oracle Linux 6.2.
    I have applied all the correct packages (and a couple that were not listed in the installation instructions), applied required patches, upgraded the startCD version to the latest, run the md5sum checks on the Stage directory, and a bunch of manual stuff which it doesn't tell you to do in the installation notes, but you have to do to make it work, e.g. linking unzip 5.x from the startCD to /usr/bin/unzip. I thought that I had it cracked until it failed at the last HTTP Server checks.
    I have attempted to restart services manually but it appears as though the HTTP server cannot start due to a missing library libdb-4.3.so:
    HTTP_Server~1.log
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    */u01/applR12/apps/tech_st/10.1.3/Apache/Apache/bin/httpd: error while loading shared libraries: libdb-4.3.so: cannot open shared object file: No such file or directory*
    There was another post where a similar issue was resolved in a OEL 5 x86.x64 install by applying a i383 gdbm package, and linking the existing library as the document id which you posted suggested.
    This package cannot be applied, as I have attempted.
    I then started to look for the library which is reported in the logs as being missing, i.e. libdb-4.3.so. This does not appear to exist for OEL 6.
    I then looked further afield and found a Centos 6.2 rpm which contained this library. I extracted this and linked it to the libdb.so.2 (patch 6078836).
    I am getting the following from the adstrtal.log (I ran the cat command as root not adstrtal.sh which I ran as the application user):
    *# cat /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adstrtal.log | grep Failed*
    Web Application Services OACORE OC4J Instance <SID>_<HOST> adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance <SID>_<HOST> adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance <SID>_<HOST> adoafmctl.sh Failed
    This is different to what I was seeing previously where all a 4 Web Application Services had failed
    *# cat /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adstrtal.log | grep -v "status 0" | grep status*
    adoacorectl.sh: exiting with status 150
    adformsctl.sh: exiting with status 150
    adoafmctl.sh: exiting with status 150
    ServiceControl is exiting with status 3
    Looking at the respective log files I am seeing the following:
    adoacorectl.txt
    *06/27/12-07:35:10 :: adoacorectl.sh version 120.13*
    *06/27/12-07:35:10 :: adoacorectl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:10 :: adoacorectl.sh: Starting OPMN managed OACORE OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:10 :: adoacorectl.sh: exiting with status 150*
    *================================================================================*
    adformsctl.txt
    *06/27/12-07:35:11 :: adformsctl.sh version 120.16*
    *06/27/12-07:35:11 :: adformsctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:11 :: adformsctl.sh: Starting OPMN managed FORMS OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:11 :: adformsctl.sh: exiting with status 150*
    *================================================================================*
    adoafmctl.txt
    *06/27/12-07:35:11 :: adoafmctl.sh version 120.8*
    *06/27/12-07:35:11 :: adoafmctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-07:35:11 :: adoafmctl.sh: Starting OPMN managed OAFM OC4J instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-07:35:11 :: adoafmctl.sh: exiting with status 150*
    *================================================================================*
    Running adapcctl.sh by itself I am seeing the same issue reported in the log files:
    *$ ./inst/apps/<SID>_<HOST>/admin/scripts/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=<HOST>:6200
    no processes or applications matched this request
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u01/applR12/inst/apps/<SID>_<HOST>/logs/appl/admin/log/adapcctl.txt for more information
    Looking at the log file I can see the following:
    *06/27/12-08:15:27 :: adapcctl.sh version 120.7.12010000.2*
    *06/27/12-08:15:27 :: adapcctl.sh: starting OPMN if it is not running*
    opmnctl: opmn is already running.
    *06/27/12-08:15:27 :: adapcctl.sh: starting OPMN managed OHS instance*
    opmnctl: starting opmn managed processes...
    *================================================================================*
    opmn id=<HOST>:6200
    no processes or applications matched this request
    *06/27/12-08:15:27 :: adapcctl.sh: exiting with status 0*
    *================================================================================*
    I have attempted to restart opmn using adopmnctl.sh, which was unsuccessful. Looking at the HTTP_Server~1.log I can see the following the error:
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    */u01/applR12/apps/tech_st/10.1.3/Apache/Apache/bin/httpd: error while loading shared libraries: libdb-4.3.so: cannot open shared object file: No such file or directory*
    Has been replaced by the recurring message:
    */u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd*
    Syntax error on line 264 of /u01/applR12/inst/apps/<SID>_<HOST>/ora/10.1.3/Apache/Apache/conf/httpd.conf:
    Cannot load /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so into server: /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so: undefined symbol: dbm_firstkey
    Looking at line 264 of httpd.conf I can see the following:
    LoadModule ossl_module libexec/mod_ossl.so
    Which looks fine when compared to the rest of the file.
    I am not able to look at the /u01/applR12/apps/tech_st/10.1.3/Apache/Apache/libexec/mod_ossl.so.
    I do not know where else to go with this now. Any guidance which you could provide would be very much appreciated.
    Regards,

    Hello Hussein,
    Thank you for getting back to me! As per the installation instructions it states the following:
    # cd /usr/lib
    # ln -s libdb-4.7.so libdb-4.3.so
    However there is no libdb-4.7.so library there to link to.
    I have installed the db4 i686 & x86_64 packages which contain this library, then performed the above. I then ran the adstrtal.sh command which completed without incident.
    As such the Required Packages in the installation instructions should be updated to include the following:
    db4.i686
    db4-devel.i686
    db4.x86_64
    db4-devel.x86_64
    Regards,

  • Error starting HTTP Server in Oracle9iAS 9.0.2 Infrastructure

    Hi,
    I have installed Oracle9iAS Infrastructure 9.0.2 on Windows 2000 Professional. Most of the components are working and I am also able to browse OEM at 1810 port.
    The problem is with the HTTP server, it starts and after a while shutsdown automatically. I have tried both the methods to start HTTP Server:-
    via windows start menu HTTP Server Startup link
    via command: C:\Ora9iAS\dcm\bin\dcmctl start -ct ohs
    In both the cases it fails, When using the command dcmctl start -ct ohs. The error code is ADMN-906025.
    Can anyone tell me what could the problem be?
    Bharat

    With the command dcmctl geterror 906025 you will see the contents of the error (without a number dcmctl geterror gives the last error). You seem to have a problem with opmn. Check the log files in the $ORACLE_HOME/opmn/logs directory. The log file HTTP Server.1 (as it is called on linux) will probably contain more information as why the HTTP server fails to start.
    Regards,
    Andre

  • Http server start/stop process

    Hi
    I always see below start/stop messages in the D:\app\Oracle\opmn\logs\HTTP_Server~1
    We are not stopping/starting anything. Does it mean that the http server stop/start itself ? Will this affect users ?
    12/06/07 23:18:12 Start process
    12/06/26 10:03:03 Stop process
    12/06/26 10:04:05 Start process
    [Tue Jun 26 10:04:05 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/06/29 11:52:06 Stop process
    12/06/29 11:53:08 Start process
    [Fri Jun 29 11:53:09 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/07/03 08:54:18 Stop process
    12/07/03 08:55:20 Start process
    [Tue Jul 03 08:55:21 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    Oracle-Application-Server-10g/9.0.4.0.0 Oracle-HTTP-Server running...
    12/07/11 23:25:45 Start process
    12/07/14 12:38:15 Stop process
    12/07/14 12:39:17 Start process
    [Sat Jul 14 12:39:17 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/07/18 18:06:11 Stop process
    12/07/18 18:07:13 Start process
    [Wed Jul 18 18:07:13 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/07/25 10:58:29 Stop process
    12/07/25 10:59:31 Start process
    [Wed Jul 25 10:59:32 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/07/25 11:03:02 Stop process
    12/07/25 11:04:04 Start process
    [Wed Jul 25 11:04:05 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    12/07/25 11:06:55 Stop process
    12/07/25 11:07:57 Start process
    [Wed Jul 25 11:07:57 2012] [warn] pid file d:/app/oracle/apache/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    Similar stop/start messages in D:\app\Oracle\opmn\logs\ipm.log
    12/07/25 10:58:27 [4] [libopmnohs] Process Unreachable: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:9136)
    12/07/25 10:58:29 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:9136)
    12/07/25 10:59:29 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:9136)
    12/07/25 10:59:29 [4] [libopmnohs] Forcefully Terminating Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:9136)
    12/07/25 10:59:31 [4] Starting Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:0)
    12/07/25 10:59:32 [4] Process Alive: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672)
    12/07/25 11:01:21 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672) [The connection SSL receive timed out]
    12/07/25 11:02:11 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672) [The connection SSL receive timed out]
    12/07/25 11:03:01 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672) [The connection SSL receive timed out]
    12/07/25 11:03:01 [4] [libopmnohs] Process Unreachable: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672)
    12/07/25 11:03:02 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672)
    12/07/25 11:04:02 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672)
    12/07/25 11:04:02 [4] [libopmnohs] Forcefully Terminating Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:6672)
    12/07/25 11:04:04 [4] Starting Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:0)
    12/07/25 11:04:04 [4] Process Alive: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956)
    12/07/25 11:05:14 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956) [The connection SSL receive timed out]
    12/07/25 11:06:04 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956) [The connection SSL receive timed out]
    12/07/25 11:06:54 [4] [libopmnohs] Process Ping Failed: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956) [The connection SSL receive timed out]
    12/07/25 11:06:54 [4] [libopmnohs] Process Unreachable: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956)
    12/07/25 11:06:54 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956)
    12/07/25 11:07:54 [4] Stopping Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956)
    12/07/25 11:07:54 [4] [libopmnohs] Forcefully Terminating Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:8956)
    12/07/25 11:07:56 [4] Starting Process: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:0)
    12/07/25 11:07:57 [4] Process Alive: HTTP_Server~HTTP_Server~HTTP_Server~1 (1656225949:4644)

    Hi ,
    It seems there is a clash of resources.There are rogue httpd processes left whenever OHS starts/restarts.File httpd.pid contains root httpd process and with the help of scoreboard file its communicated to child httpd processes.
    1.check OPMN LOGS.
    2.shutdown all process (OPMN infact)
    3.pkill or kill -9 httpd
    4.go to $ORACLE_HOME/opmn/logs/states and delete all files.
    5.check no other HTTP server ports are being used by other processes.(restarting the server is better idea !).
    6.CHECK ons.conf IF ANY ENTRIES ARE MISSING / MODIFIED - V IMP
    6.Start OPMN and HTTP Server.
    Edited by: anandk on Jul 25, 2012 10:17 AM
    Edited by: anandk on Jul 25, 2012 10:19 AM
    Edited by: anandk on Jul 25, 2012 10:20 AM

  • Installation Problem about ORACLE HTTP SERVER 10g

    I tried to install oracle http server on windows xp sp2. Everthing was all right until
    it made some recommend tasks while installing. It could'nt start the http server at there. I completed the installation. After then when i connect to the internet and try to start http server it starts. But when i do not connect to the internet it gives an error like apache.exe couldn't start on executing ApacheModuleonsinst.dll. I want to learn what causes to this problem.

    pparkko wrote:
    With this type of behaviour, you always need to find out the real error.
    Try opening a command prompt (cmd) and running the command from the command line.
    Then you can see what is going wrong.I have a question, I just upgraded our test 11i database (9i) to 10g (10.2), as a part of that upgraded forms, reports, graphics to patchset 18. Now planning to install 10giAS on appsTier on which forms, Apache and discoverer running. If I install 10giAS in differnet home, how can I get that in to appsTier?, does it mean adapcctl script no longer be used to start webservices?. I haven’t done this before, if my question is stupid, please ignore :).

  • HTTP Server under stand-alone-apache new thread

    Sorry I closed the other thread too soon thinking I had a solution by creating an alias for libdb.so.2. ButI was mistaken.
    So once again:
    I made an installation of Oracle HTTP-Server from the Companion-CD Release 10.2 for Linux 64bit in a Suse Enterprise 10 SP1 environment.
    Installation was successfu. HTTP-Server now starts without error messages.
    But if I try to include the plsql.conf in the http_conf_local of the stand_alone-apache version 2.0 I get the message
    'cannot load modplsql.so. Wrong ELF class. ELFCLASS32.
    In the meantime I have learned that you can use 32bit-classes under 64bit Linux.
    But do I have to do to get them accepted?
    Thanks in advance for further help.
    Christine

    Well, after some more research I ended up doing the following:
    New aim is to have a fully working oracle HTTP-Server beneath another Apache and redirecting incoming URLs with /pls/ to the Oracle-HTTP-Server
    -remove all includes from the other Apache pointing to my HTTP-Server
    - correct file owner mismatches by giving the oracle user the ownership on all files within the oracle_home-path with a chown-command
    - correct file group mismatches by relating all files within the oracle_home_path with group dba using a chgrp-command
    After that the opmn-demon was able to start with ./opmnctl start
    Trying to start HTTP-Server with ./opmnctl startproc ias-component=HTTP_Server failed, but now I got logs to investigate.
    -disabled two lines in httpd.conf:
    #LoadModule rewrite_module libexec/mod_rewrite.so
    #LoadModule dbm_auth_module libexec/mod_auth_dbm.so
    then HTTP_Server starts.
    Why it can't load the mentioned modules I do not know, they are present where they are supposed to be.
    Redirect the outside listening apache to my HTTP-Server by adding into it's http_conf_local:
    ProxyPass /pls/ http://localhost:7780/pls/
    ProxyPassReverse /pls/ http://localhost:7780/pls/
    ProxyPass /htdocs/ http://localhost:7780/htdocs/
    ProxyPassReverse /htdocs/ http://localhost:7780/htdocs/
    Christine
    Edited by: candrae on Nov 5, 2008 8:55 AM

  • APACHE HTTP SERVER STOP RUNNING

    TESTING ON WIN 2000
    After installing IAS 9 PORTAL AND HTTP SERVER
    ON WIN 2000
    INSTALLATION COMPLETE OK
    HTTP SERVER APACHE START OK
    BUT CRASHES AFTER A FEW SECONDS WITH
    ERROR MESSAGE ON WINDOWS SERVICES 'System Error 1607'
    DID SOMEONE FOUND THE SAME MESSAGE WHEN
    APACHE CRASHES ON NT???
    null

    I installed it on Windows 2000 Professional and it works fine. Sometimes the Apache web server comes down, but you need to just bring it up again. I tried to load it on Windows 2000 server and the Apache web server fails to come up.
    null

  • Existing HTTP server stops working after installing OWB10g

    Hi,
    I have upgraded an existing OWB target installation on a Win2000 server to 10G by installing the OWB SW on the server as described in the installation documentation. The target database is still v9.2.0.4. After installing OWB and restarting the server, the 9.2 HTTP server no longer starts. The error logs show that the HTTP server is trying to find some Perl libs in the new OWB home.
    From what I can see, the OWB 10g installation creates a new environment variable; PERL5LIB, pointing to various catalogues in the OWB 10g home. If I remove this from the system, the HTTP server again starts normally, but I suppose this has some negative impact on OWB?
    How can I get the Oracle database 9.2 HTTP server to work alongside OWB 10g?
    Roald

    Roald,
    OWB 10g 'inherited' this bug from Oracle database 10g Bug 3585410. OWB 10g install includes 'Oracle Perl Interpreter' from Oracle 10g which creates this ENV. OWB 10g does not need this and PERL5LIB can safely be renamed without affecting OWB 10g functionality.
    Nikolai Rochnik

  • OracleOraHome92Agent - OIA & Oracle HTTP Server - Apache JServ Cant Startup

    Recently i have 2 oracle 9i database server {A} & , and my task is to migrate all the data from {A} To {B}.
    I used [Orcale Management Server - OMS] to login for connect both server for data manipulation. However, when i used [Discover Nodes] in the [Oracle Enterprise Manager Console], the [A] cant find.
    I found that [OracleOraHome92Agent - OIA] in Windows [Services] is not Started even i manually start it. I found 1 web site told about [How does one start the Oracle Intelligent Agent?] in URL [http://www.orafaq.com/faqoem.htm#IA-START].
    I have follow the steps and also cant get it started succeefully.
    Besides that, i also found that [Oracle HTTP Server - Apache JServ] is not successful start up also. Error Msg is written below:
    "Syntax error on line 92 of c:/oracle/ora92/sqlplus/admin/isqlplus.conf: FastCgiServer: redefinition of a previously defined FastCGI server "c:/oracle/ora92/bin/isqlplus"
    Note the errors or messages above, and press the <ESC> key to exit.
    It is the [HTTP Server] cant start up affected the [Oracle Intelligent Agent]?
    Thanks fro reading my messages. Hope u can help me.

    OEM agent should be independent of any other components, considering its function.
    What is the error message when you try to start the OracleAgent service?
    Did you try following steps from FAQ as well?
    "If the agent doesn't want to start, ensure your environment variables are set correctly and delete the following files before trying again:
    1) In $ORACLE_HOME/network/admin: snmp_ro.ora and snmp_rw.ora.
    2) Also delete ALL files in $ORACLE_HOME/network/agent/."

Maybe you are looking for