Skip to main content

Apache not starting on Solaris 11 with RW-50015 and Adapcctl.sh exit with status 204

Error:

HTTP
checking URL = http://xxx.yyy:zzz:8000
RW-50015: Error: - HTTP Listener is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
Help Page
checking URL = http://xxx.yyy:zzz/OA_HTML/help
RW-50015: Error: - Help Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
Virtual Directory
RW-50015: Error: - Http Server Virtual Directories is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
JSP
checking URL = http://xxx.yyy:zzz/OA_HTML/jtfTestCookie.jsp
RW-50015: Error: - JSP is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
Login Page
RW-50015: Error: - Login Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
RW-10001: Rapidinstall wizard has detected that your configuration has errors. You must resolve these issues before continuing.

The adstrtal.sh log file shows the following error:
adapcctl.sh: exiting with status 204


Cause:

The cause is due to missing post-Installation Steps which are mandatory for Solaris 11
Oracle E-Business Suite 12.1.1 with Oracle Solaris on SPARC (64-bit) 11 is certified with the following versions :
==> 11.2.0.3
==> JDK 1.6.0_10+
==> Application Servers 10.1.3.5.0 + 10.1.2.3.0
Rapidwiz installs lower version of Technology components: Database 11.1.0.7 and iAS 10.1.3.4 which are not certified on Solaris 11. So it's why HTTP server is not starting up, and this error should be ignored until the post install steps are done. 


Solution:

Solution is to continue the installation by upgrading the technology components as follow :
1) Upgrade database to 11gR2 with the following Note :
 - Interoperability Notes Oracle E-Business Suite Release 12 with Oracle Database 11g Release 2 (11.2.0) (My Oracle Support Note 1058763.1)

2) Upgrade to OracleAS 10g 10.1.3.5 or higher Patch Set in Oracle E-Business Suite Release 12 with the following note :
 - Upgrading to the Latest OracleAS 10g 10.1.3.x Patch Set in Oracle E-Business Suite Release 12 (My Oracle Support Note 454811.1)
Attention :
You need to apply all the one-off patches listed in Note 454811.1

3) Apply patch 12722501 "apache could not be brought up on solaris 11" into AS 10.1.3 Oracle Home using OPatch

4) Run Autoconfig on the Apps tier

5) Retest your issue

Comments

Popular posts from this blog

Node id does not exist for the current application server id

Issue: After completing cloning procedure, you generally may across the following issue. "Node id does not exist for the current application server id". Solution: First stop the application. Run adgendbc.sh script to configure apps tier dbc file with the correct id from the database instance. Start the application and test your issue. Location of script: 11i: $COMMON_TOP/admin/install/$CONTEXT_NAME R12: $INST_TOP/admin/install [appldev@erptest install]$ sh adgendbc.sh (Note: It will prompt you to give apps username and apps password.)

How to change EBS R12 database and application port number

On Database Tier 1. Logon as oracle database user and source environment for R12 RDBMS ORACLE_HOME 2. Start database instance for which you want to change R12 port 3. Backup contextfile 4. Change as below in contextfile         dbport  : Change database port from 1521 to 1541         db_ons_localport : 6300 to 6320         db_ons_remoteport : 6400 to 6420         cmanport : 1521 to 1541 5. Run adautocfg.sh On Apps Tier Change Application port from 8000 to 8020 1. Logon as application manager user and source environment for R12 2. Backup contextfile 3. Run adpreclone    $ perl ./adpreclone.pl appsTier 4. Run adcfgclone and choose new port pool    $ cd $COMMON_TOP/clone/bin    $ perl ./adcfgclone.pl appsTier 5. Check new application URL SQL> select home_url from icx_parameters; HOME_URL ----------...

Oracle R12 : You are trying to access a page that is no longer active

Login fails “You are trying to access a page that is no longer active.” The issue can be reproduced at will with the following steps: Issue : After cloning process the login page of Oracle E-Business Suite R12 show the above error. Solution :  For this you need to update the new hostname in the  icx_parameteres table 1.   SQL> SELECT SESSION_COOKIE_DOMAIN FROM icx_parameters; SESSION_COOKIE_DOMAIN --------------------- erp.local.com (This is hostname of Source Application Tier) 2. SQL>update icx_parameters set SESSION_COOKIE_DOMAIN = ‘target.local.com’; 1 row updated. SQL> commit; Commit complete. (This has changed the SESSION_COOKIE_DOMAIN of target application to target hostname.domain_name) 3. SQL> SELECT SESSION_COOKIE_DOMAIN FROM icx_parameters; SESSION_COOKIE_DOMAIN --------------------- target.local.com