Thursday 5 June 2014

R12 Issue and solution

Installing EBS 12.1.1 on Redhat ES 6.0 x86_64

I wrote this note before EBS 12.1.1 was certified against RH6 (06May2011), and suggest that this only gets implemented on TEST systems. I first show all the errors I got during the installation process, how to correct them, and the I show screenshots from all the installation windows, with descriptions should it be required
The below needs to be done after a full installation of Redhat 6 x86_64 is done.
  • Install the following RPM's - exact versions as shown
 
[root@oraclerh6pw7 rpms]# rpm -Uhv libXp*.rpm
warning: libXp-1.0.0-8.1.el5.i386.rpm: Header V3 DSA/SHA1 Signature, key ID e8562897: NOKEY
warning: libXp-1.0.0-8.1.el5.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 37017186: NOKEY
Preparing...                 ########################################### [100%]
   1:libXp                   ########################################### [ 50%]
   2:libXp                   ########################################### [100%]
[root@oraclerh6pw7 rpms]# 
 
  • Resolving " libXtst.so.6: cannot open shared object file" errors during installation

 
[root@oraclerh6pw7 rapidwiz]# Exception in thread "main" java.lang.UnsatisfiedLinkError: /u01/stage/StageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory
     at java.lang.ClassLoader$NativeLibrary.load(Native Method)
     at java.lang.ClassLoader.loadLibrary0(Unknown Source)
     at java.lang.ClassLoader.loadLibrary(Unknown Source)
     at java.lang.Runtime.load0(Unknown Source)
     at java.lang.System.load(Unknown Source)
     at java.lang.ClassLoader$NativeLibrary.load(Native Method)
     at java.lang.ClassLoader.loadLibrary0(Unknown Source)
     at java.lang.ClassLoader.loadLibrary(Unknown Source)
     at java.lang.Runtime.loadLibrary0(Unknown Source)
     at java.lang.System.loadLibrary(Unknown Source)
     at sun.security.action.LoadLibraryAction.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
     at sun.awt.DebugHelper.(Unknown Source)
     at java.awt.Component.(Unknown Source)
 
 
Before:
 
[root@oraclerh6pw7 new]# find / -name *libXtst.so.6*
/usr/lib64/libXtst.so.6
/usr/lib64/libXtst.so.6.1.0
[root@oraclerh6pw7 new]#
 
After:
 
[root@oraclerh6pw7 Packages]# rpm -Uhv libXi-1.3-3.el6.i686.rpm libXi-devel-1.3-3.el6.i686.rpm
warning: libXi-1.3-3.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                 ########################################### [100%]
   1:libXi                   ########################################### [ 50%]
   2:libXi-devel             ########################################### [100%]
[root@oraclerh6pw7 Packages]#
 
[root@oraclerh6pw7 Packages]# rpm -Uhv libXtst-1.0.99.2-3.el6.i686.rpm libXtst-devel-1.0.99.2-3.el6.i686.rpm
warning: libXtst-1.0.99.2-3.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                 ########################################### [100%]
   1:libXtst                 ########################################### [ 50%]
   2:libXtst-devel          ########################################### [100%]
[root@oraclerh6pw7 Packages]#
 
[root@oraclerh6pw7 Packages]# find / -name *libXtst.so.6*
/usr/lib/libXtst.so.6
/usr/lib/libXtst.so.6.1.0
/usr/lib64/libXtst.so.6
/usr/lib64/libXtst.so.6.1.0
[root@oraclerh6pw7 Packages]#
 
 
  • Unzip errors using RH6 - unzip5 vs unzip6
  
Error:
 
Processing Disk1....
 
RC-20200: Fatal: Could not find Unzip. At this time only Native UnZip 5.X is supported.
 
Please make sure you have UnZip 5.X in your path and try again...
 
 
[root@oraclerh6pw7 Packages]# unzip -version
caution:  both -n and -o specified; ignoring -o
UnZip 6.00 of 20 April 2009, by Info-ZIP.  Maintained by C. Spieler.  Send
 
 
[root@oraclerh6pw7 rapidwiz]# ./RapidWizVersion
 
Oracle Applications Rapid Install Wizard
 
Version 12.1.1.9
 
(c) Copyright 2000-2006 Oracle Corporation.  All rights reserved.
 
[root@oraclerh6pw7 rapidwiz]#
 
 
Solution:
 
upgrade to rapidwiz version 12.1.1.11 OR move /usr/bin/unzip to /usr/bin/unzip6, and cp unzip v5 from the startCD directory from the staging area to /usr/bin/unzip
 
Download and Install patch p8639046_R12_GENERIC.zip to overcome this issue, and make sure the unzip from the new patch is in the path . The other option is also to overwrite /usr/bin/unzip, with the one from the patch, after making a proper backup of it. RH6 comes with unzip6, but EBS 12.1.1 searches for unzip5*
 
--> Download patch p8639046_R12_GENERIC.zip and copy in R12 Stage area.
 
--> unzip patch in stage R12 Stage directory "/R12_Stage"
 
/R12_Stage
bash-3.00$ ls
oraAppDB oraDB oraiAS startCD
oraApps oraNLS p8639046_R12_GENERIC.zip
bash-3.00$
 
use command:
 
unzip -o p8639046_R12_GENERIC.zip
 
--> confirm the version of rapidwiz with command:
 
--> Execute command from "/R12_Stage/startCD/Disk1/rapidwiz
 
bash-3.00# ./RapidWizVersion
 
Old version of rapidwiz: 12.1.1.9
New upgraded version : 12.1.1.11
 
After:
 
[root@oraclerh6pw7 rapidwiz]# ./RapidWizVersion
 
Oracle Applications Rapid Install Wizard
 
Version 12.1.1.11
 
(c) Copyright 2000-2006 Oracle Corporation.  All rights reserved.
 
 
[root@oraclerh6pw7 rapidwiz]#
 
  • HTTP listener refusing to start:

HTTP
   checking URL = http://oraclerh6pw7.home.co.za:8010
   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.
 
 
Solution:
 
[root@oraclerh6pw7 applprod]# rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep compat-db
compat-db-4.6.21-15.el6 (x86_64)
compat-db43-4.3.29-15.el6 (x86_64)
compat-db42-4.2.52-15.el6 (x86_64)
You have new mail in /var/spool/mail/root
[root@oraclerh6pw7 applprod]#
 
You must have the x86 ones as well, and not only the 64 bit ones
 
[root@oraclerh6pw7 tmprpm]# ls -l
total 1748
-r--r--r-- 1 root root 844308 May  4 15:39 compat-db42-4.2.52-15.el6.i686.rpm
-r--r--r-- 1 root root 914344 May  4 15:39 compat-db43-4.3.29-15.el6.i686.rpm
-r--r--r-- 1 root root  12624 May  4 15:39 compat-db-4.6.21-15.el6.i686.rpm
[root@oraclerh6pw7 tmprpm]# rpm -Uhv *.rpm
warning: compat-db42-4.2.52-15.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                 ########################################### [100%]
   1:compat-db43            ########################################### [ 33%]
   2:compat-db42            ########################################### [ 67%]
   3:compat-db               ########################################### [100%]
[root@oraclerh6pw7 tmprpm]# rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep compat-db
compat-db42-4.2.52-15.el6 (i686)
compat-db-4.6.21-15.el6 (x86_64)
compat-db43-4.3.29-15.el6 (x86_64)
compat-db42-4.2.52-15.el6 (x86_64)
compat-db43-4.3.29-15.el6 (i686)
compat-db-4.6.21-15.el6 (i686)
[root@oraclerh6pw7 tmprpm]#
 
 
[root@oraclerh6pw7 tmprpm]# rpm -Uhv glibc-devel-2.12-1.7.el6.i686.rpm
warning: glibc-devel-2.12-1.7.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY
Preparing...                 ########################################### [100%]
   1:glibc-devel            ########################################### [100%]
[root@oraclerh6pw7 tmprpm]#
 
 
  • Errors starting opmn

 
[applprod@oraclerh6pw7 scripts]$ ./adopmnctl.sh start
 
You are running adopmnctl.sh version 120.6
 
Starting Oracle Process Manager (OPMN) ...
libopmnoraclenls.so: unable to load
/u01/PROD/inst/apps/PROD_oraclerh6pw7/ora/10.1.3/opmn/bin/opmnctl: line 898:  8127 Segmentation fault      (core dumped) $OPMNADMIN ping
libopmnoraclenls.so: unable to load
libopmnoraclenls.so: unable to load
/u01/PROD/inst/apps/PROD_oraclerh6pw7/ora/10.1.3/opmn/bin/opmnctl: line 898:  8137 Segmentation fault      (core dumped) $OPMNADMIN pingwait
opmnctl: opmn start failed.
 
adopmnctl.sh: exiting with status 0
 
adopmnctl.sh: check the logfile /u01/PROD/inst/apps/PROD_oraclerh6pw7/logs/appl/admin/log/adopmnctl.txt for more information ... 
 
[applprod@oraclerh6pw7 scripts]$
 
 
Solution:
 
Install the 32-bit version of glibc-devel-2.3.4-2.19.i686.rpm.
Note: To install 32-bit packages on a 64-bit system, you may need to use the --force option and the --nodeps option of the rpm utility.
[root@oraclerh6pw7 Server]# rpm -Uhv glibc-devel-2.5-49.i386.rpm glibc-devel-2.5-49.x86_64.rpm --force --nodeps
warning: glibc-devel-2.5-49.i386.rpm: Header V3 DSA/SHA1 Signature, key ID 37017186: NOKEY
Preparing...                 ########################################### [100%]
   1:glibc-devel            ########################################### [ 50%]
   2:glibc-devel            ########################################### [100%]
[root@oraclerh6pw7 Server]#
 
[applprod@oraclerh6pw7 ~]$ cd $IAS_ORACLE_HOME
[applprod@oraclerh6pw7 10.1.3]$ cd bin
[applprod@oraclerh6pw7 bin]$ ./genclntsh -32
[applprod@oraclerh6pw7 bin]$
 
Start opmn as usual using "adopmnctl start"
 
 
  • Errors starting APACHE

 
[applprod@oraclerh6pw7 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=oraclerh6pw7.home.co.za:6210
    0 of 1 processes started.
 
ias-instance id=PROD_oraclerh6pw7.oraclerh6pw7.home.co.za
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--------------------------------------------------------------------------------
ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/
 
Error
--> Process (index=1,uid=1805659207,pid=12698)
    failed to start a managed process after the maximum retry limit
    Log:
    /u01/PROD/inst/apps/PROD_oraclerh6pw7/logs/ora/10.1.3/opmn/HTTP_Server~1.log
 
 
adapcctl.sh: exiting with status 0
 
adapcctl.sh: check the logfile /u01/PROD/inst/apps/PROD_oraclerh6pw7/logs/appl/admin/log/adapcctl.txt for more information ... 
 
[applprod@oraclerh6pw7 scripts]$
 
--------
11/05/04 17:09:40 Start process
--------
/u01/PROD/inst/apps/PROD_oraclerh6pw7/ora/10.1.3/Apache/Apache/bin/apachectl startssl: execing httpd
/u01/PROD/apps/tech_st/10.1.3/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
 
Solution:
 
[root@oraclerh6pw7 tmprpm]# rpm -Uhv compat-db-4.1.25-9.i386.rpm --force --nodeps
warning: compat-db-4.1.25-9.i386.rpm: Header V3 DSA/SHA1 Signature, key ID 652e84dc: NOKEY
Preparing...                 ########################################### [100%]
   1:compat-db               ########################################### [100%]
[root@oraclerh6pw7 tmprpm]#
 
[applprod@oraclerh6pw7 scripts]$ vi /u01/PROD/inst/apps/PROD_oraclerh6pw7/logs/ora/10.1.3/opmn/HTTP_Server~1.log
[applprod@oraclerh6pw7 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...
 
adapcctl.sh: exiting with status 0
 
adapcctl.sh: check the logfile /u01/PROD/inst/apps/PROD_oraclerh6pw7/logs/appl/admin/log/adapcctl.txt for more information ... 
 
[applprod@oraclerh6pw7 scripts]$
 
 
AFTER implementing the above workarounds, you will be able to do a full install of EBS 12.1.1 on RH6 x86_64
 
 
 

Start the installation using rapidwiz from the StartCD rapidwiz directory:












The below forum note, suggests ignoring the above error, which I did:
http://forums.oracle.com/forums/thread.jspa?threadID=2207518&tstart=105
Click "Next" to continue





This will take a long time - enjoy lots of coffee :)
When successfully completed, the below window will show



http://oraclerh6pw7.home.co.za:8010/OA_HTML/AppsLogin

 

 

Comments


  email me replies
[login] 
(Mar 25, 2013) mazharalvi786 said:
Hi,

Thanks for the response.

I 've already refrenced the metalink note [ID 468977.1] that you suggested.
Please see the following RPMs are already installed. Despite these rpms the Issue or the Error is still there.


[root@ebs ~]# rpm -qa | grep elfutils-*
elfutils-devel-static-0.152-1.el6.x86_64
elfutils-libelf-devel-0.148-1.el6.x86_64
elfutils-libelf-devel-0.152-1.el6.x86_64
elfutils-libelf-devel-0.97-5.i386
elfutils-devel-0.152-1.el6.x86_64
elfutils-libelf-0.152-1.el6.x86_64
elfutils-0.152-1.el6.x86_64
elfutils-libs-0.152-1.el6.x86_64
elfutils-libelf-0.97-5.i386
elfutils-libelf-devel-static-0.152-1.el6.x86_64

[root@ebs ~]# rpm -qa | grep libaio*

libaio-0.3.107-10.el6.x86_64
libaio-devel-0.3.107-10.el6.i686
libaio-0.3.107-10.el6.i686
libaio-0.3.105-2.i386
libaio-devel-0.3.107-10.el6.x86_64
libaio-devel-0.3.105-2.i386


I 've installed package as per (Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]).

There is this 2 RPM
* gcc-4.4.4-13.el16.x86_64
* gcc-c++-4.4.4-13.el16.x86_64

which I think is missspelled in the [ID 761566.1]) ANd should be gcc-4.4.4-13.el6.x86_64 & gcc-c++-4.4.4-13.el6.x86_64 i.e
el16 should be el6 isn't it ?? Please Correct ..

Both gcc-4.4.4-13.el6.x86_64 & gcc-c++-4.4.4-13.el6.x86_64 are installed.

Also I searched Installation media i.e DVDs for * gcc-4.4.4-13.el16.x86_64 And * gcc-c++-4.4.4-13.el16.x86_64
and don't it there as well. I wonder these 2 rpms are spelled correctly or not in [ID 761566.1]) as i don't find them on the net as well.

Also I 've checked this metalink Note: { Multiple gcc / g++ Versions in Linux [ID 444084.1]
Please see the below gcc/gcc++ version that is installed on my server.


[root@ebs ~]# rpm -qf /usr/bin/x86_64-redhat-linux-gcc
gcc-4.4.7-3.el6.x86_64
gcc-4.4.4-13.el6.x86_64
[root@ebs ~]# ls -al /usr/bin | grep gcc
lrwxrwxrwx 1 root root 3 Mar 25 02:51 cc -> gcc
-rwxr-xr-x 2 root root 267992 Nov 29 2010 gcc
-rwxr-xr-x 2 root root 103016 Jul 22 2010 gcc34
-rwxr-xr-x. 1 root root 2018 May 1 2010 gccmakedep
lrwxrwxrwx 1 root root 3 Mar 25 02:13 gnatgcc -> gcc
-rwxr-xr-x 2 root root 267992 Nov 29 2010 x86_64-redhat-linux-gcc
-rwxr-xr-x 2 root root 103016 Jul 22 2010 x86_64-redhat-linux-gcc34
[root@ebs ~]# gcc --version
gcc (GCC) 4.4.4 20100726 (Red Hat 4.4.4-13)
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

[root@ebs ~]# rpm -qf /usr/bin/i386-redhat-linux-gcc
error: file /usr/bin/i386-redhat-linux-gcc: No such file or directory
[root@ebs ~]# rpm -qf /usr/bin/x86_64-redhat-linux-gcc
gcc-4.4.7-3.el6.x86_64
gcc-4.4.4-13.el6.x86_64
[root@ebs ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep glibc-deve
glibc-devel-2.12-1.107.el6 (x86_64)
glibc-devel-2.12-1.7.el6 (i686)
glibc-devel-2.12-1.7.el6 (x86_64)


I am desparately stuck up with this ISSue really trying hard to get Cause.
Please Help.

Thanking you

Kind regards
(Mar 25, 2013) myoracleworld.net (mod) said:
Error message:

UnsatisfiedLinkError exception loading native library: njni11

java.lang.UnsatisfiedLinkError: jniGetOracleHome at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method) at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source) at oracle.net.ca.NetCA.main(Unknown Source) Oracle Net Services configuration failed. The exit code is -1

Solution:

sudo apt-get install build-essential libaio1 gawk ksh
(Mar 25, 2013) myoracleworld.net (mod) said:
Hi Mazhar

Please make sure the following is in place

1) Make sure you use a 64 Bit database software on the 64 Bit Linux - The apps tier is only available in 32 Bit, but the Database tier is available in both 32 and 64 bit
2) Make sure the following rpm's is in place as suggested by this know Oracle problem

UnsatisfiedLinkError exception loading native library: njni11 [ID 468977.1]

3) On a 64-Bit Linux O/S implementation of EBS, you need to install both the 64Bit and 32Bit RPM's. The above note suggests installing the 32 bit RPM's for both 32 and 64 bit. I only see the libelf-devel RPM"s in your list and not all as required:

# elfutils-libelf-0.97-5 *
# elfutils-libelf-devel-0.97-5
# libaio-0.3.105-2 *
# libaio-devel-0.3.105-2

For each -devel- package, you also need the standard package i.e elfutils-libelf-0.97-5 and elfutils-libelf-devel-0.97-5

Please have a look at these and reply accordingly

Kind Regards
myoracleworld.net
(Mar 24, 2013) Mazhar said:
Hope you 'll be doing fine.

Really apprciate if you could suggest on this

Please see the following chronology of EBS r12 installation Errors .


Need you Help badly As
I am stuck up at the EBS r12 Installation error as the solution that you suggested at
forums.oracle.com/forums/thread.jspa?threadID=2248357&start=15&tstart=0

I am unable to apply the patch according to Note ID 1103163.1 as the Apps tier isn't fully created yet
Could you please suggest on this
UnsatisfiedLinkError exception loading native library: njni11 (I am also sendinge the the Install & adconfig log files for you perusal)

As
During the Install of EBS R12 on OEL 6 (2.6.32-100.28.5.el6.x86_64......Red Hat Enterprise Linux Server release 6.0 (Santiago))

At 40% of rapidwiz Installation i got this error
RW-50004 : Error code recieve when running external proccess

And the screen output of /oracle/VIS/db/tech_st/11.1.0/appsutil/log/VIS_ebs/03231801.log
showed this error

Context Value Management will now update the Context file

UnsatisfiedLinkError exception loading native library: njni11

Updating Context file...COMPLETED
Attempting upload of Context file and templates to database...COMPLETED
Updating rdbms version in Context file to db111
Updating rdbms type in Context file to 64 bits
Configuring templates from ORACLE_HOME ...

AutoConfig completed successfully.


--adconfig log Showing this error !


Updating local context file variables for Database Tier
Getting listener port from /oracle/VIS/db/tech_st/11.1.0/network/admin/VIS_ebs/listener.ora
Exception occurred while preseeding variables in the context file: java.lang.reflect.InvocationTargetException


StackTrace:
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Coni
(Jan 28, 2013) Muhammad Rehan Tayyab said:
From: Muhammad Rehan Tayyab
Date: 01/28/13 08:35:13
To:
Subject: RE: Installing EBS 12.1.1 on Redhat ES 6.1 x86_64


rpm -Uhv xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm --force --nodeps resolved my problem

thanks
(Jan 28, 2013) Muhammad Rehan Tayyab said:
From: Muhammad Rehan Tayyab
Date: 01/24/13 11:42:17
To: myoracleworld@runbox.com
Subject: Installing EBS 12.1.1 on Redhat ES 6.1 x86_64


i am in process to install R12.1.1 on RHEL 6.1.


while installing pre-requisite on RHEL 6.1 i am facing following error :

rpm -ivh xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm

error: Failed dependencies:
libX11.so.6 is needed by xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386
libXext.so.6 is needed by xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386


when i search for dependencies they are already present.

locate libX11.so.6

/usr/lib64/libX11.so.6
/usr/lib64/libX11.so.6.3.0


12.1.1 rapidwiz - libmwat.so libXext.so.6 libXtst.so.6 not found on OEL6U3:

Errors:

[root@hpc1pw7prd1 rapidwiz]# ./rapidwiz
Rapid Install Wizard is validating your file system......
4 dvd labels found
Rapid Install Wizard will now launch the Java Interface.....
 
[root@hpc1pw7prd1 rapidwiz]# Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/stage/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXext.so.6: cannot open shared object file: No such file or directory
                at java.lang.ClassLoader$NativeLibrary.load(Native Method)
                at java.lang.ClassLoader.loadLibrary0(Unknown Source)
                at java.lang.ClassLoader.loadLibrary(Unknown Source)
                at java.lang.Runtime.load0(Unknown Source)
                at java.lang.System.load(Unknown Source)
                at java.lang.ClassLoader$NativeLibrary.load(Native Method)
                at java.lang.ClassLoader.loadLibrary0(Unknown Source)
                at java.lang.ClassLoader.loadLibrary(Unknown Source)
                at java.lang.Runtime.loadLibrary0(Unknown Source)
                at java.lang.System.loadLibrary(Unknown Source)
                at sun.security.action.LoadLibraryAction.run(Unknown Source)
                at java.security.AccessController.doPrivileged(Native Method)
                at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
                at sun.awt.DebugHelper.<clinit>(Unknown Source)
                at java.awt.Component.<clinit>(Unknown Source)
[root@hpc1pw7prd1 rapidwiz]#
[root@hpc1pw7prd1 rapidwiz]# Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/stage/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory
                at java.lang.ClassLoader$NativeLibrary.load(Native Method)
                at java.lang.ClassLoader.loadLibrary0(Unknown Source)
                at java.lang.ClassLoader.loadLibrary(Unknown Source)
                at java.lang.Runtime.load0(Unknown Source)
                at java.lang.System.load(Unknown Source)
                at java.lang.ClassLoader$NativeLibrary.load(Native Method)
                at java.lang.ClassLoader.loadLibrary0(Unknown Source)
                at java.lang.ClassLoader.loadLibrary(Unknown Source)
                at java.lang.Runtime.loadLibrary0(Unknown Source)
                at java.lang.System.loadLibrary(Unknown Source)
                at sun.security.action.LoadLibraryAction.run(Unknown Source)
                at java.security.AccessController.doPrivileged(Native Method)
                at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
                at sun.awt.DebugHelper.<clinit>(Unknown Source)
                at java.awt.Component.<clinit>(Unknown Source)
[root@hpc1pw7prd1 rapidwiz]#
Solution:
Install the below RPM’s from the OEL6 installation DVD
rpm -Uhv /mnt/cdrom/Packages/libXext-1.1-3.el6* /mnt/cdrom/Packages/libXext-devel-1.1-3.el6* /mnt/cdrom/Packages/libX11-*.rpm /mnt/cdrom/Packages/libxcb-*.rpm /mnt/cdrom/Packages/libXau-*.rpm --replacepkgs
[root@hpc1pw7prd1 rapidwiz]# rpm -Uhv /mnt/cdrom/Packages/libXext-1.1-3.el6* /mnt/cdrom/Packages/libXext-devel-1.1-3.el6* /mnt/cdrom/Packages/libX11-*.rpm /mnt/cdrom/Packages/libxcb-*.rpm /mnt/cdrom/Packages/libXau-*.rpm --replacepkgs
warning: /mnt/cdrom/Packages/libXext-1.1-3.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                ########################################### [100%]
   1:libXau                 ########################################### [  6%]
   2:libxcb                 ########################################### [ 12%]
   3:libX11-common          ########################################### [ 18%]
   4:libX11                 ########################################### [ 24%]
   5:libXext                ########################################### [ 29%]
   6:libXau                 ########################################### [ 35%]
   7:libXau-devel           ########################################### [ 41%]
   8:libXau-devel           ########################################### [ 47%]
   9:libxcb                 ########################################### [ 53%]
  10:libxcb-devel           ########################################### [ 59%]
  11:libX11                 ########################################### [ 65%]
  12:libX11-devel           ########################################### [ 71%]
  13:libXext-devel          ########################################### [ 76%]
  14:libX11-devel           ########################################### [ 82%]
  15:libxcb-devel           ########################################### [ 88%]
  16:libXext                ########################################### [ 94%]
  17:libXext-devel          ########################################### [100%]
[root@hpc1pw7prd1 rapidwiz]#
and also
[root@hpc1pw7prd1 rapidwiz]# rpm -Uhv /mnt/cdrom/Packages/libXtst-* /mnt/cdrom/Packages/libXi-* --replacepkgs
warning: /mnt/cdrom/Packages/libXtst-1.0.99.2-3.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Preparing...                ########################################### [100%]
   1:libXi                  ########################################### [ 13%]
   2:libXtst                ########################################### [ 25%]
   3:libXi                  ########################################### [ 38%]
   4:libXi-devel            ########################################### [ 50%]
   5:libXtst-devel          ########################################### [ 63%]
   6:libXi-devel            ########################################### [ 75%]
   7:libXtst                ########################################### [ 88%]
   8:libXtst-devel          ########################################### [100%]
[root@hpc1pw7prd1 rapidwiz]#
 
Starting now without any errors:
  
 

How to find all scheduled requests in a particular status

How to find all scheduled requests in a particular status:
The below scripts can be used to find out list of scheduled requests and list of requests for a particular status in the instance.

FND_CONCURRENT_REQUESTS totals
set linesize 130;
set timing off
column id format 9999999 heading 'Request'
column phase heading 'Phase'
column status format A9 heading 'Status'
column pname format A40 heading 'Program name'
column rpname format A32 heading 'Program name'
column sd format A18 heading 'Start date'
column submitd format A18 heading 'Submitted on'
column requestd format A18 heading 'Requested start'
column numreqs format 99999999 heading 'Number'
column ra format A9 heading 'Run alone'
column phase format A18 heading 'Phase'
column pphase format A7 heading 'Phase'
column schedt format A25
column schedcnt format 99999

SELECT decode(phase_code, 'P', 'Pending requests',
'R', 'Running requests',
'C', 'Completed requests',
phase_code) phase, count(*) numreqs
FROM fnd_concurrent_requests
GROUP BY phase_code;

Running Requests

SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name rpname,
to_char(actual_start_date, 'DD-MON-RR HH24:MI:SS') sd,
decode(run_alone_flag, 'Y', 'Yes', 'No') ra
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'R'
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY actual_start_date, request_id;

Pending Requests Totals

SELECT 'Pending' pphase,
meaning status,
count(*) numreqs
FROM fnd_concurrent_requests,
fnd_lookups
WHERE LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND phase_code = 'P'
GROUP BY meaning;

Total scheduled requests

set heading off
set feedback off
select 'Scheduled requests:' schedt, count(*) schedcnt
from fnd_concurrent_requests
WHERE (requested_start_date > sysdate OR
status_code = 'P')
AND phase_code = 'P';
select 'Non-scheduled requests:' schedt, count(*) schedcnt
from fnd_concurrent_requests
WHERE requested_start_date <= sysdate
AND status_code != 'P'
AND phase_code = 'P';
prompt

Total requests on hold

select 'Requests on hold:' schedt, count(*) schedcnt
from fnd_concurrent_requests
WHERE hold_flag = 'Y'
AND phase_code = 'P';
select 'Not on hold:' schedt, count(*) schedcnt
from fnd_concurrent_requests
WHERE hold_flag != 'Y'
AND phase_code = 'P';
set heading on
set feedback on
prompt
prompt

Scheduled Requests

col pname for a55;
col id for 999999999;
SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name pname,
to_char(request_date, 'DD-MON-RR HH24:MI:SS') submitd,
to_char(requested_start_date, 'DD-MON-RR HH24:MI:SS') requestd
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'P'
AND (fcr.requested_start_date >= sysdate OR
status_code = 'P')
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY request_date, request_id;

Scheduled Requests - On Hold

SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name pname,
to_char(request_date, 'DD-MON-RR HH24:MI:SS') submitd
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'P'
AND hold_flag = 'Y'
AND fcr.requested_start_date <= sysdate
AND status_code != 'P'
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY request_date, request_id;

Pending Requests - Not On Hold

SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name pname,
to_char(request_date, 'DD-MON-RR HH24:MI:SS') submitd
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'P'
AND hold_flag = 'N'
AND fcr.requested_start_date <= sysdate
AND status_code != 'P'
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY request_date, request_id;



FRM-92101 when starting Forms - libXp.so.6 and libXm.so.2 errors in the 'application.log' file:

Error:
When starting forms
FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into web-server log files
From the log file:  /u02/TEST/inst/apps/TEST_<hostname>/logs/ora/10.1.3/j2ee/forms/forms_default_group_1 >
12/11/01 08:12:45.739 formsweb: Forms session <2> aborted: runtime process failed during startup with errors /u02/TEST/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXp.so.6: cannot open shared object file: No such file or directory
12/11/01 08:12:45.739 formsweb: Forms session aborted: runtime process failed during startup with errors /u02/TEST/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
12/11/01 08:12:45.739 formsweb: Forms session <2> exception stack trace:
oracle.forms.engine.RunformException: Forms session <2> failed during startup: no response from runtime process
                at oracle.forms.servlet.RunformProcess.connect(Unknown Source)
                at oracle.forms.servlet.RunformProcess.dataToRunform(Unknown Source)
                at oracle.forms.servlet.RunformSession.dataToRunform(Unknown Source)
                at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
                at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
                at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
                at java.lang.Thread.run(Thread.java:619)
Solution:
Make sure the libXp rpm is installed, and also if the file is not deleted from disk – maybe corrupt or even deleted by accident after the rpm was installed:
On the failing system:
[root@msebs12 ~]# find / -name libXp.so.6
/home/oragctest/agent11g/lib/stubs/libXp.so.6
/home/oragctest/agent11g/lib32/stubs/libXp.so.6/u02/DEV/apps/tech_st/10.1.3/lib/stubs/libXp.so.6
/u02/DEV/apps/tech_st/10.1.2/lib/stubs/libXp.so.6
/u02/TEST/apps/tech_st/10.1.3/lib/stubs/libXp.so.6
/u02/TEST/apps/tech_st/10.1.2/lib/stubs/libXp.so.6
[root@msebs12 ~]# rpm -qa | grep libXp
libXpm-3.5.5-3
libXpm-3.5.5-3
libXpm-devel-3.5.5-3
[root@msebs12 ~]# è libXP is missing, see below
On a working system:
[root@msebs11 ~]# rpm -qa | grep libXp
libXp-1.0.0-8.1.el5
libXpm-3.5.5-3
libXp-1.0.0-8.1.el5
[root@msebs11 ~]#
Install the missing libXp packages:
[root@msebs12 rpm]# ls -l
total 48
-rw-r--r-- 1 root root 23102 May  4  2010 libXp-1.0.0-8.1.el5.i386.rpm
-rw-r--r-- 1 root root 23576 May  8  2009 libXp-1.0.0-8.1.el5.x86_64.rpm
[root@msebs12 rpm]# rpm -Uhv libXp-1.0.0-8.1.el5.*
warning: libXp-1.0.0-8.1.el5.i386.rpm: Header V3 DSA signature: NOKEY, key ID e8562897
warning: libXp-1.0.0-8.1.el5.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 37017186
Preparing...                ########################################### [100%]
   1:libXp                  ########################################### [ 50%]
   2:libXp                  ########################################### [100%]
[root@msebs12 rpm]#
Retry the forms – the above resolved the problem for me.
##############################
On another system I got the following errors , in the  - /u02/TEST/inst/apps/TEST_<hostname>/logs/ora/10.1.3/j2ee/forms/forms_default_group_1 – file:
formsweb: Forms session aborted: runtime process failed during startup with errors /u02/TEST/apps/tech_st/10.1.2/bin/frmweb: error while loading shared libraries: libXm.so.2: cannot open shared object file: No such file or directory
 On further investigation I found the someone removed the below O/S directory. I copied it over from a cloned system, which resolved the libXm.so.2 errors:
 Working system:
[root@msebs11 ~]# ls -l /usr/X11R6/
total 12
drwxr-xr-x 2 root root 4096 Sep 11 2011 bin
drwxr-xr-x 2 root root 4096 Sep 25 2008 lib
[root@msebs11 ~]#
Failing system:

[root@msebs12 ~]# cd /usr/X11R6/
[root@msebs12 X11R6]# ls -l
total 8
drwxr-xr-x 2 root root 4096 Oct 4 13:06 bin
[root@msebs12 X11R6]# 
è lib directory is missing
 
 
 

Relink of module "MSCCPP" failed, "FEMCCE","MSCNEW","MSCMON" etc . etc. - 12.1.3:

Error:
adrelink fails with the below errors on Redhat 5 x86_64 (can also happen on x86) . 
Grep from adrelink shows the following failed errors:
[root@oraclerh5pw7 ~]# grep failed /u01/PROD/apps/apps_st/appl/admin/PROD/log/adrelink.log
Relink of module "FEMCCE" failed.
Relink of module "MSCCPP" failed.
Relink of module "MSCMON" failed.
Relink of module "MSCNEW" failed.
Relink of module "MSCNSP" failed.
Relink of module "MSCNSPNM" failed.
Relink of module "MSCPCL" failed.
Relink of module "MSCPDW" failed.
Relink of module "MSCPRG" failed.
Relink of module "MSCSDW" failed.
Relink of module "MSCSLD" failed.
Relink of module "MSCXGCAL" failed.
Relink of module "MSONEW" failed.
Relink of module "MSRNEW" failed.
Relink of module "MSCCPP" failed.
Relink of module "MSCMON" failed.
Relink of module "MSCNEW" failed.
Relink of module "MSCNSP" failed.
Relink of module "MSCNSPNM" failed.
Relink of module "MSCPCL" failed.
Relink of module "MSCPDW" failed.
Relink of module "MSCPRG" failed.
Relink of module "MSCSDW" failed.
Relink of module "MSCSLD" failed.
Relink of module "MSCXGCAL" failed.
[root@oraclerh5pw7 ~]#
 
On-screen output shows the following errors:
 
Starting  link of msc executable 'MSCXGCAL' on Tue Jun 21 10:08:46 SAST 2011
g++ -m32 -L/u01/PROD/apps/tech_st/10.1.2/lib -L/u01/PROD/apps/tech_st/10.1.2/lib/stubs -lclntsh -o /u01/PROD/apps/apps_st/appl/msc/12.0.0/bin/MSCXGCAL /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/mscxgcal.o \
                                /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/libmsc.a /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/libmsc.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libschedule.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libsolveriim.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libconcertext.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libsolver.a  /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libconcert.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libilocplex.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libcplex.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libcplex.a  \
                               /u01/PROD/apps/apps_st/appl/fnd/12.0.0/lib/libfnd.a -lsql10 -lclntsh  `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10 -lmm  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10    -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10   `cat /u01/PROD/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lm  -lpthread /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/stubs/libstdc++.so /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/stubs/libgcc_s.so.1 
`.gnu.linkonce.t._ZN17SCOProfileOptionsC1Ev' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdl.o): defined in discarded section `.gnu.linkonce.t._ZN17SCOProfileOptionsC1Ev' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdl.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomitemorgbkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomitemorgbkt.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresourcebkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresourcebkt.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomsupplierbkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomsupplierbkt.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdemandsatflow.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdemandsatflow.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresconsume.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresconsume.o)
collect2: ld returned 1 exit status
make: *** [/u01/PROD/apps/apps_st/appl/msc/12.0.0/bin/MSCXGCAL] Error 1
Done with link of msc executable 'MSCXGCAL' on Tue Jun 21 10:08:47 SAST 2011
 
Relink of module "MSCXGCAL" failed.
See error messages above (also recorded in log file) for possible
reasons for the failure.  Also, please check that the Unix userid
running adrelink has read, write, and execute permissions
on the directory /u01/PROD/apps/apps_st/appl/msc/12.0.0/bin,
and that there is sufficient space remaining on the disk partition
containing your Oracle Applications installation.
 
Done with link of product 'msc' on Tue Jun 21 10:08:47 SAST 2011
 
Relinking module 'MSCSLD' in product msc ...
 
make -f /u01/PROD/apps/apps_st/appl/admin/PROD/out/link_msc_14087.mk /u01/PROD/apps/apps_st/appl/msc/12.0.0/bin/MSCSLD
 
Starting  link of msc executable 'MSCSLD' on Tue Jun 21 10:08:44 SAST 2011
g++ -m32 -L/u01/PROD/apps/tech_st/10.1.2/lib -L/u01/PROD/apps/tech_st/10.1.2/lib/stubs -lclntsh -o /u01/PROD/apps/apps_st/appl/msc/12.0.0/bin/MSCSLD /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/mscsld.o \
                                /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/libmsc.a /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a /u01/PROD/apps/apps_st/appl/msc/12.0.0/lib/libmsc.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libschedule.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libsolveriim.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libconcertext.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libsolver.a  /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libconcert.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libilocplex.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libcplex.a /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/ilog/6.2/libcplex.a  \
                               /u01/PROD/apps/apps_st/appl/fnd/12.0.0/lib/libfnd.a -lsql10 -lclntsh  `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10 -lmm  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat /u01/PROD/apps/tech_st/10.1.2/lib/ldflags`    -lnsslb10 -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10    -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -lnnetd10  -lvsn10 -lcommon10 -lgeneric10  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10   `cat /u01/PROD/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lm  -lpthread /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/stubs/libstdc++.so /u01/PROD/apps/apps_st/appl/sht/12.0.0/lib/stubs/libgcc_s.so.1 
`.gnu.linkonce.t._ZN17SCOProfileOptionsC1Ev' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdl.o): defined in discarded section `.gnu.linkonce.t._ZN17SCOProfileOptionsC1Ev' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdl.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomitemorgbkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomitemorgbkt.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomprodresuse.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresourcebkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresourcebkt.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomsupplierbkt.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomsupplierbkt.o)
`.gnu.linkonce.t._ZN7OmValue3setEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdemandsatflow.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3setEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomdemandsatflow.o)
`.gnu.linkonce.t._ZN7OmValue3addEd' referenced in section `.rodata' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresconsume.o): defined in discarded section `.gnu.linkonce.t._ZN7OmValue3addEd' of /u01/PROD/apps/apps_st/appl/mso/12.0.0/lib/libmso.a(msopomresconsume.o)
collect2: ld returned 1 exit status
make: *** [/u01/PROD/apps/apps_st/appl/msc/12.0.0/bin/MSCSLD] Error 1
Done with link of msc executable 'MSCSLD' on Tue Jun 21 10:08:46 SAST 2011
 
Relink of module "MSCSLD" failed.
See error messages above (also recorded in log file) for possible
reasons for the failure.  Also, please check that the Unix userid
running adrelink has read, write, and execute permissions
on the directory /u01/PROD/apps/apps_st/appl/msc/12.0.0/bin,
and that there is sufficient space remaining on the disk partition
containing your Oracle Applications installation.
 
 
 
Solution:
Downgrade/Upgrade binutils to the correct version as shown below:
MSC Relinking Error on Linux OEL5/RHEL5, Relink of module "MSCCPP" failed, "FEMCCE","MSCNEW","MSCMON". There was No MSC Relink Problem when Worked on RHEL 4 [ID 1128486.1]
[root@oraclerh5pw7 ~]# rpm -qa | grep binutils
binutils-2.17.50.0.6-14.el5
[root@oraclerh5pw7 ~]#
 
 
Solution:
 
2) Please downgrade The  binutils  From "binutils-2.17.50.0.6-9.el5'" to" binutils-2.17.50.0.6-6.0.1.el5"  as given in The Note 781553.1.
rpm -U binutils-2.17.50.0.6-6.0.1.el5.x86_64.rpm 
or
rpm -U binutils-2.17.50.0.6-6.0.1.el5.i386.rpm

If a higher version of the binutils has already been installed, downgrade using the following command:

rpm -Uvh --oldpackage binutils-2.17.50.0.6-6.0.1.el5.i386.rpm
or
rpm -Uvh --oldpackage binutils-2.17.50.0.6-6.0.1.el5.x86_64.rpm 
 
The below screenshot show that I have to downgrade binutils to get to the required version:
 
 
You can download the correct version required - here
 
Downgrade using the '--oldpackage' rom flag, and relink again. Should be OK now:
 
 
The below "status 0" shows that the relink completed successfully after downgrading binutils
 
 
 

No comments:

Post a Comment