Thursday 31 March 2016

BEA-141281 unable to get file lock and Native Library(terminalio) not found



BEA-141281 unable to get file lock
Issue:

I was not able to start the Managed Server (WLS_WMS2) 

<BEA-141281> <unable to get file lock, will retry ...>
<BEA-141281> <unable to get file lock, will retry ...>
<BEA-141281> <unable to get file lock, will retry ...>
<BEA-141281> <unable to get file lock, will retry ...>

Solution:

1. Go to $MW_HOME/user_projects/domain/WLS_WMS2/servers/WLS_WMS2/tmp

2. rm -rf *.lok 

After this, again try to startup the service and it will be done.

Native Library(terminalio) not found
Issue:

<Nov 30, 2014 03:20:32 AM PST> <Info> <Security> <BEA-090065> <Getting boot identity from user.> 
Enter username to boot WebLogic server:<Nov 30, 2014 03:20:32 AM PST> <Error> <Security> <BEA-090782> <Server is Running in Production Mode and Native Library(terminalio) to read the password securely from commandline is not found.> 
<Nov 30, 2014 03:20:32 AM PST> <Notice> <WebLogicServer> <BEA-000388> <JVM called WLS shutdown hook. The server will force shutdown now

Solution:

Looks like  library "terminalio" is missing on your system, this is a OS related issue, however you can workaround this in weblogic by the following method.

$MW_HOME/user_projects/domains/<domain_name>/servers/AdminServer/security
if security folder is not found under adminserver, go ahead an create it. and provide it 777 permissions (chmod -r -R 777 security)

If security directory is not present, then create it

cd 
$MW_HOME/user_projects/domains/<domain_name>/servers/AdminServer/
mkdir security
chmod 777 security

under security folder create a new file called boot.properties and enter the values of weblogic username and password and save + exit.

cd security/
Create a boot.properties files and provide the following 2 parameters.
username=XXXX <WebLogic Username>
password=XXXX <WebLogic Password>

Now, save and exit.

Repeat the same procedure for your managed server as well.

Now start your Admin server.
Thanks
Srini

Weblogic Server not coming up using script startWebLogic



Issue:

Weblogic service is not coming up  using script (startWebLogic.sh).

Dec 10, 2014 6:44:29 PM AST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: Could not obtain an exclusive lock to the embedded LDAP data files directory
<01/06/2012 10:56:47 AM EST> <Error> <Store> <BEA-280061> <The persistent store "_WLS_AdminServer" could not be deployed: weblogic.store.PersistentStoreException: [Store:280105]The persistent file store "_WLS_AdminServer" cannot open file _WLS_ADMINSERVER000000.DAT
<MW_HOME>/user_projects/domains/IDMDomain/servers/AdminServer/data/ldap/ldapfiles because another WebLogic Server is already using this directory. Ensure that the first WebLogic Server is completely shutdown and restart the server.>
<Dec 10, 2014 6:44:29 PM AST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
<Dec 10, 2014 6:44:29 PM AST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
<Dec 10, 2014 6:44:29 PM AST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>



Casue:

Weblogic service fails to start for many reasons:

1. Force shutdown of the Weblogic Service.
2. Unable to lock the files required to start the service.

Solution:

1. Navigate to Idapfiles location under server and delete the “EmbeddedLDAP.lok” file from there, location would be e.g.<MW_HOME>/user_projects/domains/<Domain_Name>/servers/AdminServer/data/ldap/ldapfiles

EmbeddedLDAP.lok” won't allow Admin server to come up, then perform the following additional steps.

1. cd $DomainHome/servers/AdminServer/data/store
2. find . –name *.DAT
3. Verify the file name in your result and error message should be same.
4. Rename this file and move from this directory to some other directory.
5. find "EmbeddedLDAP.lok" and "AdminServer.lok" as well and remove the same.
6. check the port using netstat –an | grep <Weblogic server port>, there should not be any open connection to this port.
7. Start your weblogic server either via weblogic script or node manner.


Note: .DAT file is very important file, and contains business data as well in Production system. Please take a backup of this file before doing any operation on it, so that later this file can be analysed to complete those transaction.


Target node/queue unavailable or Concurrent Manager Issue’s after cloning or DB-Refresh



Solution 1 :

take the CM bounce and check the status of managers , still you are facing the issue , you take the application full bounce and restart the CM , it will work ..  I tried this it will work on my R12 Exa instance .
note : check the application listner is up and running , if not start the adalnctl.sh start.. then check the issue...




Solution 2 :

R12 Concurrent Managers down – Status show “Target node/queue unavailable
Agenda:

To start concurrent manager.

Issue:

Concurrent Managers Status shows  ”Target node/queue unavailable” in Concurrent–>Manager–>Administer Screen form.








Solution:
  1. Ensure Database is Running and Middle Tier Services are down.
  2. Connect SQLPLUS as APPS user and run the following :
    1. EXEC FND_CONC_CLONE.SETUP_CLEAN;
    2. COMMIT;
    3. EXIT;
  3. Run AutoConfig on all tiers, firstly on the DB tier and then the APPS tiers and webtier to repopulate the required systemtables
  4. Run the CMCLEAN.SQL script from the referenced note below (don’t forget to commit).
  5. Note.134007.1 – 'CMCLEAN.SQL – Non Destructive Script to Clean Concurrent  Manager Tables'
  6. Start the middle tier services including your concurrent manager.
  7. Retest the issue.





Solution 3 :
Concurrent Processing - After Cloning All the Concurrent Managers Do Not Start for the Clone [ID 555081.1]

Conflict Resolution Manager Shows Target Node/Queue Unavailable [ID 732709.1]

Concurrent Managers Do Not Start After Cloning Nodes Not Updated In Conc_queues [ID 466532.1]


EXEC FND_CONC_CLONE.TARGET_CLEAN;

Run autoconfig on dbtier then appsTier.

Run cmclean.sql script  Non destructive script this can also be tried-->>

Start all application services and check whether managers are up.

Apply this solution in last when the above one doesnt work.

select node_name,target_node,control_code from fnd_concurrent_queues;

update apps.fnd_concurrent_queues set node_name = 'Node NAME' where node_name='Existing Node Name'; 

select NODE_NAME,NODE_MODE,STATUS from fnd_nodes;

desc fnd_concurrent_queues

select control_code,target_node,node_name,CONCURRENT_QUEUE_NAME from fnd_concurrent_queues;

UPDATE fnd_concurrent_queues set control_code = null;

UPDATE fnd_concurrent_queues set target_node = 'Node Name';

UPDATE fnd_concurrent_queues set node_name = 'Node Name';

update FND_CONCURRENT_QUEUES set control_code = null where concurrent_queue_name = 'OAMGCS_NODENAME'; -- supply the node name..(Ur Existing Node Name)

Commit;

select control_code,target_node,node_name,CONCURRENT_QUEUE_NAME from fnd_concurrent_queues;


Thanks
Srini

Friday 18 March 2016

Cloning a Single-Node System To a Multi-Node System

  Introduction
 
This document describes a step-by-step approach for cloning an Oracle Applications 11i which is AutoConfig enabled using Rapid Clone from one to three nodes, it includes Port Selection, Forms Server, Reports Server, Apache Server and Concurrent Processing, also all the scripts or programs which are used to startup up and shutdown all the services. The cloning word means to do a functional copy of an existing environment. Simply copying the application directories doesn’t mean that our new environment will work properly, we need to do some additional steps or tasks to have a functional environment.

CLONE – Single Server to Two Node Server
 
TARGET Server – DEV

Apps Tier

devcomn

devappl

devora

TARGET Server – DEV

DB Tier

devdb

devdata

SOURCE Server – PROD

DB Tier

prodb

proddata

Apps Tier

prodcomn

prodappl
 



Some of the reasons to do a cloning are:

• To create a test environment from an existing production environment to test some patches or to reproduce any production issues.

• To keep a test environment with the most current information of a production environment.

• To move any existing environment to other servers.

In this Cloning demonstration, we will clone our single node instance "PROD" to Two-node as one node for database server and second node is for Application. That means all application services will reside on one node and database on a separate node. Our source node is ERP and target node is also ERP. And our source database node is PROD and Target database node is DEV. The TARGET directory structure of both the node is same as Source that is /d01/oracle.
 
Cloning prerequisite steps:
 
 
We should remember that the clone application system and existing Production application system must have same component versions & operating system type. And also we cannot clone from windows to linux.
 
Login as Applications file user & set the environment file on source node.



su applmgr

cd /d01/oracle/prodappl
 
. ./APPSORA.env

Login to database tier as oracle user and set the environment on source node.



su oracle

cd /d01/oracle/proddb/9.2.0
 
. ./PROD_erp.env 



Prepare the source system
 
(a) Prepare the source system database tier for cloning
Log on to the source system as the ORACLE user and run the following commands:

$ cd $ORACLE_HOME/appsutil/scripts/PROD_erp
 
.perl /adpreclone.pl dbTier 



(b) Prepare the source system application tier for cloning
 
 
Log on to the source system as the applmgr user and run the following commands.

$ cd $COMMON_TOP/admin/scripts/PROD_erp
 
$ perl adpreclone.pl appsTier 



Copy the Source Node File System
 
 
Log on to the source system application tier nodes as the APPLMGR user.



•Shut down the application tier server processes as shown below

cd $COMMON_TOP/admin/scripts/PROD_erp
 
./adstpall.sh apps/appspassword

•Copy the following application tier directories from the source node to the target application tier node:
cd /d01/oracle

prodappl

prodcomn

prodora

scp –pr proadappl applmgr@target_server:/d01/oracle

scp –pr proadcomn applmgr@target_server:/d01/oracle

scp –pr proadora applmgr@target_server:/d01/oracle

Once copied –

- Check the ownership as required

- Rename the directory

cd /d01/oracle

mv prodappl devappl

mv prodcomn devcomn
 
mv prodora devora

Copy the database tier file system



Log on to the source system database Tier as the ORACLE user.
 
•Perform a normal shutdown of the source system database
 
cd $RDBMS_ORACLE_HOME/appsutil/scripts/PROD_erp

./addbctl.sh stop
 
•Copy the database (DBF) files from the source to the target system

•Copy the source database ORACLE_HOME to the target system as shown below:
 
 
cd /d01/oracle
 
scp pr proaddb oracle@target_server:/d01/oracle
scp pr proaddata oracle@target_server:/d01/oracle
Once copied


- Check the ownership as required
 
- Rename the directory


cd /d01/oracle

mv proddb devdb

mv proddata devdata
 
•Start up the source Applications system database and application tier processes



Configure the Target System
 
 
Operating System of Target should be same as Source. Operating system should have all pre-requisite packages required for Oracle R11i before configuring the Target System. Execute the following commands to configure the target system. You will be prompted for the target system specific values (SID, Paths, Ports, etc).
 
Log on to target node as oracle user and run the following command and input your values to each prompt as shown below :



$ cd /proddb/9.2.0/appsutil/clone/bin

$ perl adcfgclone.pl dbTier
 
Enter APPS Password :



b. Configure the target system application tier server nodes
 
 
Log on to the target system as the APPLMGR user and type the following commands and specify your values to each prompt as shown below.



$ cd /d01/oracle/devcomn/clone/bin

$ perl adcfgclone.pl appsTier
 
Enter the APPS password



Above screenshots showing that all application services are started successfully. That means, we have done cloning successfully.
 
Finishing Tasks
 
Post clone steps vary from client to client, here is the basic change.

Profile Option Name Changes at Site Level after Cloning
 
Site Name-> PROD, Change it to "DEV – Clone of PROD as of Dec 14 2010"

DEV Clone of PROD as of 14-Dec-10
Login to Oracle Apps as SYSADMIN



 Select System Administrator responsibility
 


Profile > System

Now Oracle Apps Instance of DEV : check it from frontend

Thanks
Srini

Thursday 17 March 2016

Role of APPLSYSPUB, GUEST, APPLSYS, APPS users:



Role of APPLSYSPUB user/schema in Oracle Applications:

When we login to applications,initially oracle applications connect to public schema, APPLSYSPUB. This schema has sufficient privileges to perform the authentication of an Applications User (FND user), which includes running PL/SQL packages to verify the username/password combination and the privilege to record the success or failure of a login attempt.
  • The public ORACLE username and password that grants access to the Oracle E-Business Suite initial sign-on form. The default is APPLSYSPUB/PUB.
  • Once we change the APPLSYSPUB password must propagate the change to application tier configuration files. If the instance is Autoconfig enabled, must edit the CONTEXT file on each tier prior to running Autoconfig.
  • In the CONTEXT file, locate the autoconfig variable “s_gwyuid_pass” and set it to the new password, then run AutoConfig in each applications nodes.
When Autoconfig is not being used:
If you are not using Autoconfig you must manually edit the following configuration files :
1) FND_TOP/resource/appsweb.cfg
2) OA_HTML/bin/appsweb.cfg
3) FND_TOP/secure/HOSTNAME_DBNAME.dbc

To change password of APPLSYSPUB with FNDCPASS:
$FNDCPASS APPS/[apps_pass] 0 Y SYSTEM/[system_pass] ORACLE APPLSYSPUB [new_passs].

0 & Y are flags for FNDCPASS
0 is request id (request ID 0 is assigned to request ID's which are not submitted via Submit Concurrent Request Form)
'Y' indicates that this method is directly invoked from the command-line and not from the Submit Request Form.
  • All application tier processes (Apaches) must be restarted following the password change.

Role of GUEST user/schema in Oracle Applications:

  • GUEST is a dummy schema.
  • By default it has ORACLE as password.
  • GUEST/ORACLE password is present in DBC file at $FND_TOP/secure directory as well as at $FND_TOP/secure/SID_hostname directory.
  • If a user logs in without any role mappings, the user will get the Guest role, which has a default permission of "R".
  • GUEST user is used by JDBC Drivers and Oracle Self Service Web Applications like istore, irecruitment, iprocurement, ipayables, ireceivables etc to make initial Connection.

Role of APPLSYS & apps user/schema in Oracle Applications:

  • APPLSYS user is same as other oracle users like AP, AR, GL etc which hold their set of tables, views etc. In the same manner APPLSYS Account holds its set of tables like FND_USER and FND_APPLICATION, AD_APPLIED_PATCHES etc.
  • Applsys schema has applications technology layer products like FND and AD etc.
  • Apps is a universal schema, it has synonyms to all base product tables and sequences. This also has code objects for all products (triggers, views, packages, synonyms etc).
  • APPS is central Schema which holds synonyms for all other Users Database Objects.

Note: APPLSYS and APPS should have same password.

Reason why these contains same password.

Both apps & applsys need to have same password because when you sign on to apps, initially it connects to a public schema called APPLSYSPUB. This validates AOL name and password that we enter (operations/welcome). Once this is verified we select responsibility, this is validated by APPLSYS schema and then it connects to apps schema.
During signon process it uses both applsys and apps, hence this expects both the password to be identical. If the password for applsys & apps are not identical (Different) Try changing apps password to something else and try to login, the validation at the last stage would fail. This would result in failure of application login.
Difference B/W APPLSYSPUB & GUEST:
  • APPLSYSPUB/PUB - is DB user which is used by any utility to retrieve APPS schema password for further logins.
  • GUEST/ORACLE - is EBS user with no or max limited privileges to execute authorization function.
     
    Thanks 
    Srini 

EBS R12.2 installation steps


Pre-Installation steps:

Kernel parameter:


vi /etc/sysctl.conf
kernel.shmall = 4294967296
kernel.shmmax=2147483648
kernel.sem=250 32000 100 128
fs.file-max=65536
net.ipv4.ip_local_port_range = 2024 65000
vi /etc/security/limit.conf
oracle hard nofile 4096
oracle soft nofile 4096
vi /etc/pam.d/login
session    required     pam_limits.so

User and Group Creation:


useradd oracle
groupadd dba
usermod -G dba -a oracle

Create password for oracle (in my case both apps and database are oracle user) user,


#passwd oracle

Create ORACLE_BASE directory:


mkdir -p /oracle/product
Create oraInventory directory in /oracle location
Create oraInst.loc file in oraInventory directory and /etc
Enter the below text in oraInst.loc file
inventory_loc=/oracle/oraInventory

Create softlink if libdb.so.2 is not there, (for avoid login page issue in post installation steps)


ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2
libdb.so.2 -> /usr/lib/libgdbm.so.2.0.0

Set up the Stage Area:-


Ø  Kindly Read the below instruction before running buildstage.sh script,

================================================================
The staging area should consist of a top-level directory with subdirectories startCD, EBSInstallMedia, TechInstallMedia, and TechPatches.

The startCD directory contains Rapid Install itself (in a subdirectory called Disk1), plus supporting files and documentation.

The EBSInstallMedia directory should contain the following subdirectories:
    AppDB (Oracle E-Business Suite Database)
    Apps (Oracle E-Business Suite products)
    AS10.1.2 (Oracle Application Server 10.1.2)

The TechInstallMedia directory should contain the following subdirectories:
    database (Oracle11gR2 ORACLE_HOME)
    ohs11116 (Oracle HTTP Server)
    wls1036_generic (Oracle WebLogic Server, part of Oracle Fusion Middleware)

The TechPatches directory should contain the following subdirectories:
    MiddleTier (Application tier patches)
    DB (Database Tier patches)
Please note that you should NOT download the following files while creating the R12.2 Rapid install Stage: (for avoid "Fatal Error: TXK Install Service" issue during the installation)
1.    Oracle Database Lite 10g Release 3 (10.3.0.3.0) for Linux x86 V20223-01.zip
2. Oracle SOA Suite 11g Patch Set 5 (11.1.1.6.0) for Price Protection
V29672-01_1of2.zip
V29672-01_2of2.zip
3. Oracle Data Integrator 11g (11.1.1.6.0) for Generic
V29762-01_1of2.zip
V29762-01_2of2.zip
4. Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Linux x86-64
V18772-01_1of4.zip
V18772-01_2of4.zip
V18772-01_3of4.zip
V18772-01_4of4.zip
5. Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Linux x86-64
V29883-01.zip
These files DO NOT belong to the R12.2 shiphome.
They should be downloaded to a different location than the R12.2 Rapid install stage.
============================================================

unzip V35215-01_1of3 to V35215-01_1of3 (Rapid_install_starts_here_part (1 to 3))
It will create startCD folder....
[oracle@testvm bin]$ ./buildStage.sh


                Build Stage Menu


------------------------------------------------------


1.     Create new stage area


2.     Copy new patches to current stage area.


3.     Display existing files in stage TechPatches.


4.     Exit menu



Enter your choice [4]: 1



         Rapid Install Platform Menu


------------------------------------------------------


1.    Oracle Solaris SPARC (64-bit)


2.    Linux x86-64


3.    IBM AIX on Power Systems (64-bit)


4.    HP-UX Itanium


5.    Exit Menu



Enter your choice [5]: 2


/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jre/Linux_x64/1.6.0/bin/java -classpath /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/emocmutl.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/ewt-3_4_22.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/share-1_1_18.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/jnls.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/ACC.JAR:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/netcfg.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/ojdbc14.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/OraInstaller.jar:/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../jlib/java oracle.apps.ad.rapidwiz.util.StageBuilder /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin


Please enter the directory containing the zipped installation media:
/mnt/hgfs/Software/R122vision
Unzipping V29764-01.zip
Unzipping V29856-01.zip
Unzipping V35215-01_1of3.zip
Unzipping V35215-01_2of3.zip
Unzipping V35215-01_3of3.zip
Unzipping V35230-01_1of2.zip
Unzipping V35230-01_2of2.zip
Unzipping V35231-01_1of5.zip
Unzipping V35231-01_2of5.zip
Unzipping V35231-01_3of5.zip
Unzipping V35231-01_4of5.zip
Unzipping V35231-01_5of5.zip
Unzipping V35802-01.zip
Unzipping V35803-01_1of3.zip
Unzipping V35803-01_2of3.zip
Unzipping V35803-01_3of3.zip
Unzipping V35804-01_1of2.zip
Unzipping V35804-01_2of2.zip
Unzipping V35807-01.zip
Unzipping V35808-01.zip
Unzipping V35809-01.zip
Unzipping V35810-01.zip
Unzipping V35811-01.zip
Unzipping V35812-01.zip
Unzipping V35813-01.zip
Unzipping V37515-01_1of6.zip
Unzipping V37515-01_2of6.zip
Unzipping V37515-01_3of6.zip
Unzipping V37515-01_4of6.zip
Unzipping V37515-01_5of6.zip
Unzipping V37515-01_6of6.zip
Unzipping V39571-01.zip
Unzipping V39615-01.zip
Applying one-off patches
All files have been unzipped.
Stage area is complete.

Done Unzipping shiphome ...


StageBuilder will now stage the tech patches for Linux_x64...


Copying one-off patches to shiphome

/mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../unzip/Linux_x64/unzip -o /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../Xpatches/Linux_x64.zip -d /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches


Archive:  /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../Xpatches/Linux_x64.zip
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16303726/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16303726/p16303726_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14123213/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14123213/p14123213_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/13923995/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/13923995/p13923995_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14751895/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14751895/p14751895_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16163946/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16163946/p16163946_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14207902/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14207902/p14207902_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/15967134/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/15967134/p15967134_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16438289/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16438289/p16438289_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/13931044/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/13931044/p13931044_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16342486/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16342486/p16342486_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14398795/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14398795/p14398795_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/12951696/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/12951696/p12951696_112030_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/12942119/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/12942119/p12942119_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14698700/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/14698700/p14698700_112030_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16587934/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16587934/p16587934_112030_Linux-x86-64.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16105745/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16105745/p16105745_112030_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16040940/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/DB/16040940/p16040940_112030_Linux-x86-64.zip  
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/13583235/p13583235_1036_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14825718/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14825718/p14825718_10123_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14353879/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14353879/p14353879_10123_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14614795/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14614795/p14614795_101231_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16209520/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16209520/p16209520_10123_GENERIC.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16275529/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16275529/p16275529_10105_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14597598/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14597598/p14597598_1036_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14577216/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14577216/p14577216_101231_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16784403/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16784403/p16784403_101232_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14386347/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14386347/p14386347_111160_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16199894/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/16199894/p16199894_111160_Generic.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14374587/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/14374587/p14374587_10123_GENERIC.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/10152652/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/10152652/p10152652_10123_LINUX.zip  
   creating: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/11669923/
 extracting: /mnt/hgfs/Software/R122vision/startCD/Disk1/rapidwiz/bin/../../../../TechPatches/MiddleTier/11669923/p11669923_10123_GENERIC.zip  

Done Copying additional patches

Verifying stage area...

Directory /mnt/hgfs/Software/R122vision/TechInstallMedia is valid
Directory /mnt/hgfs/Software/R122vision/TechPatches/DB is valid
Directory /mnt/hgfs/Software/R122vision/TechPatches/MiddleTier is valid
Directory /mnt/hgfs/Software/R122vision/EBSInstallMedia/AppDB is valid
Directory /mnt/hgfs/Software/R122vision/EBSInstallMedia/Apps is valid
Directory /mnt/hgfs/Software/R122vision/EBSInstallMedia/AS10.1.2 is valid
Directory /mnt/hgfs/Software/R122vision/TechInstallMedia/database is valid
Directory /mnt/hgfs/Software/R122vision/TechInstallMedia/ohs11116 is valid
Directory /mnt/hgfs/Software/R122vision/TechInstallMedia/wls1036_generic is valid


Stage area verified.

Next run the rapidwiz file.........