Visit Counter

Monday, November 4, 2019

Virtual Directory & JSP is not responding after ERP 12.2 Installation



On Oracle Applications: 12.2 version,
during the R12.2.0 installation process at 'Post - Install Checks', Virtual Directory, the JSP and Login Page of the post-install tests did not succeed.
The following was from the install log:

vi /../db/fs1/inst/apps/SID_hostname/logs/08201230.log
Virtual Directory
  checking URL = http://hostname.domain:port/OA_MEDIA/FNDLOGOL.gif
  RW-50016: Error: - {0} was not created:
  File = {1} checking URL = http://hostname.domain:port/OA_JAVA/oracle/apps/fnd/admin/server/server.xml
  RW-50016: Error: - {0} was not created:
  File = {1} checking URL = http://hostname.domain:port/OA_CGI/FNDWRR.exe
  RW-50016: Error: - {0} was not created:
  File = {1}

JSP
  checking URL = http:///hostname.domain:port/OA_HTML/jtfTestCookie.jsp
  JSP is not responding, waiting 15 seconds and retesting.
....
  JSP is not responding, waiting 15 seconds and retesting.
  JSP is not responding

Login Page
-----------
  checking URL = http://hostname.domain:port/OA_HTML/AppsLogin

  RW-50016: Error: - {0} was not created:File = {1}
Warning: The following setup  is only specific to Oracle Linux 6.
The issue mainly caused by  missing 'oravis - nproc 2048' setup in the /etc/security/limits.d/90-nproc.conf for Oracle Linux 6.

The following is the correct setup example:

etc/security/limits.d/90-nproc.conf

* soft nproc 1024
root soft nproc unlimited
oravis - nproc 2048                <---add this line: use the oravis  which you used as the DB installation owner instead of ovavis.

Note: The default value on a Oracle Linux 6 system shows as 1024.
In Oracle Linux 6, a new file /etc/security/limits.d/90-nproc.conf, sets the maximum number of processes to 1024 for non-root users.

The value for max forked process is actually read / taken from /etc/security/limits.d/90-nproc.conf file instead of /etc/security/limits.conf file.

SOLUTION

To implement the solution, please execute the following steps:
1. cd /etc/security/limits.conf
increase * hard nofile 65535 to * hard nofile 65536

2 Make a backup for /etc/security/limits.d/90-nproc.conf before changing.
3 Modify the entry in /etc/security/limits.d/90-nproc.conf 

From:

# cat /etc/security/limits.d/90-nproc.conf
* soft nproc 1024
root soft nproc unlimited

To:

* soft nproc 1024
root soft nproc unlimited
oravis - nproc 2048

4 Run the RDA - Health Check / Validation Engine Guide ( Document 250262.1 ) for the installation to ensure healthy report output for the following rule set:
APPS ebs122_lin Oracle E-Business Suite Release 12 (12.2.0) Preinstall (Linux x86_64)
5 Retest the issue.