Unix Signal Handling in Oracle Apps

I have a number of questions regarding Signal Handling
on Unix platforms within Oracle client code. I would like
to ensure that my signal handling requirements do not clash with
those of Oracle within an application.
1. Does the Database client code register any Unix signal
handling routines within a user application?
2. If it does, which signals does it handle?
3. What is the scope of these handler routines, i.e. when are
they registered and when do
they become de-registered?
4. When registered, do these handler routines attempt to pass
signals on to previously registered
handlers (i.e. do previously registered handlers get chained)?
5. When they are de-registered do they attempt to re-instate any
previously registered signal handlers?
thank you in advance for your help,
John Tresadern
IBM UK.
null

This can certainly be done, assuming you have sufficient hardware/storage resources.
Each instance will need to have a separate Unix account (e.g. applvis, appldev etc).
The actual details of the cloning process are outlined in MOS Doc 230672.1 (Cloning Oracle Applications Release 11i with Rapid Clone)
HTH
Srini

Similar Messages

  • Can you use command lines to copy files in UNIX to Oracle Apps

    Hi! We have installed the oracle apps 11.5.0 to a unix operating system. And we use ftps to upload the rtf and xml files to the unix server. Is there any command lines we can use to copy all the rft and xml files in the server to the real location of where the report files stored without going through the XML Publisher font end through the internet explorer? Thanks for your help!

    Hi,
    From what you have mentioned, I believe you are writing custom xml pub report
    1) Storing all your template and sample xml data file on Unix box by FTPing it. This step is not required as XML publisher picks template from XDO tables (where it is stored in CLOB), unless you are explicitly Coding to use templates from a fixed location like <CUST_TOP>/<xml_templates>
    2) As part of XML setup, you need to define the template and datasource using the front end. This causes the Template and XML data (sample) to be stored in XDO tables (as clobs). This step is basically required and unavaoidable.This step can be automated using FNDLOAD tool (not sure).
    Hope it helps somewhat.
    Neeraj

  • Method to restart Oracle Apps 11i OPP via Unix command line

    Hi All,
    Does any one knows if there any way to restart Oracle Apps 11i Output Post Processor (OPP) via the UNIX command line?
    Thanks

    Oracle-User wrote:
    Do you recommend that I set the profile option Concurrent: OPP Response Timeout to a higher value instead of increasing OPP Processes from 1 to 2? Yes.
    I'm thinking that increasing OPP Response Timeout to a higher value will not solve our issue as it seems that once we get our first OPP Timeout error, all of the requests that need the OPP fail. We've had this occur on a Saturday, which is a day where the volume of jobs that need the OPP is very low. The error you are getting is related to the timeout and it has nothing to do with the number of OPP processes you are running on. Please set this profile option and check then (after you bounce the OPP).
    Thanks,
    Hussein

  • How to access Oracle Apps from Linux or Unix Client

    I want to access Oracle Apps 11i from a linux client or Unix client, but I don't have jinit for linux or Unix
    regards,
    Jonathan

    Hi,
    That is not a problem just you can get in to linux inet browser and put the hostname.domainname.com:portnumber/OA_HTML/US/ICSINDEX.HTM
    So that you can get the apps sign on screen will be launched up and available to access in to Oracle applications.
    The work could be done in solaris browser and linux browser is possible.
    Thanks and Regards
    Riyaas
    Oracle Applications DBA
    [email protected]
    Kuwait

  • JVM Signal Handling on NT and HP-Unix

    Hi
    I'm trying to catch various JVM shutdown signals in my application so that the application can do some clean-up before shutting down. Here is the code that i've written...
    sun.misc.SignalHandler jvmSignalHandler = new sun.misc.SignalHandler()
    public void handle(sun.misc.Signal sig)
    // Do some cleanup
    // Call handler on interrupt signal (CTRL-C)
    sun.misc.Signal.handle(new sun.misc.Signal("INT"), jvmSignalHandler);
    // Call handler on terminate signal
    sun.misc.Signal.handle(new sun.misc.Signal("TERM"), jvmSignalHandler);
    // Call handler on abort signal
    sun.misc.Signal.handle(new sun.misc.Signal("ABRT"), jvmSignalHandler);
    If i run this process on NT in a dos box, the applicatin behaves fine by responding to all these signals...
    e.g. If i press CTRL-C (INT), or i close the dos box (TERM), or i shutdown NT (ABRT).
    However on UP-Unix, i tried kill -2 (TERM), kill -6 (ABRT) and kill -15 (INT)... Out of these, only kill -6 (ABRT) works, while the others just "kill" the application and there is no clean-up. Can anyone help if i need to use any other codes on HP-Unix, or do i need to catch any other signals in my application.
    Thanks in advance
    Regards
    Kashif

    Hope the following info(from HP-UX $man kill) is useful to you.
    Signal Names and Numbers
    The following table describes a few of the more common signals that
    can be useful from a terminal. For a complete list and a full
    description, see the header file <signal.h> and the manual entry
    signal(5).
    signum signame Name Description
    0 SIGNULL Null Check access to pid
    1 SIGHUP Hangup Terminate; can be trapped
    2 SIGINT Interrupt Terminate; can be trapped
    3 SIGQUIT Quit Terminate with core dump; can be trapped
    9 SIGKILL Kill Forced termination; cannot be trapped
    15 SIGTERM Terminate Terminate; can be trapped
    24 SIGSTOP Stop Pause the process; cannot be trapped
    25 SIGTSTP Terminal stop Pause the process; can be trapped
    26 SIGCONT Continue Run a stopped process
    BTW, do you have JavaDoc for sun.misc.Signal class in hand? I havn't. I'm not sure the name-rule for signals between HP-UX and Windows is same or not.

  • Signal Handling Issue with OCI

    Greetings.
    I have a library using OCI with Oracle 10g.
    I am not doing any signal handling inside the library.
    I have realized after a connection is made to Oracle 10g server and successfully terminated, the ctrl+Z signal (SIGTSTP) would not be honored. If I use the same library and make no connection to database, then the signal is honored. Other signals such as SIGINT etc are OK even if I make connections to database server.
    Operations that I do using OCI are simple:
    1- initialization of context (standard env creation, set attributes, handle allocation etc)
    2- making connection
    3- inserting using SQL insert method (statement prep, defineByPos, execute)
    4- simple selection of last value of a sequence (statement prep, defineByPos, execute)
    5- clean up (OCISessionEnd, OCIServerDetach,and freeing handles)
    Again, I have no signal handling inside the library. I am using this over Solaris OS and the functionality is correct except for this signal issue.
    My questions:
    1- Is this a known issue or is this something that has been seen before?
    2- what sort of signal handling is in OCI that could potentially impact my app?
    3- Is there any solution that you could suggest?
    thank you in advance.

    I'm trying to migrate from oracle 9i HP unix to oracle 10G AIX5.3
    I'm trying to create a connection pool. Then create Many threads, with each of these
    performing an OCI Session Get at thread initialization.
    Then handing the threads work to perform on their existing OCI session to the connectionpool.
    Same thing was working fine in oracle 9i but if I try to do the same in oracle 10G seems to get locked up,
    unless the sessionget/sessionrelease are in the same working
    thread subroutine. I am trying to avoid getting a session and releasing for each unit of
    work.Instead I'd like to acquire a bunch of session against the connection pool.And then have the threads (with persistent sessions) perform periodic work....
    If utilizing a get/work/release all in the same thread and subroutine call.Then everything works, except performance is very poor.
    please find the function I'm using to achive the same.
    Experts please help me ,I'm totally struck here....
    int ConnectionOpen (Connection conn, char username, char password, char server) {
    ** Functionality : Opens a new session with Oracle.
    ** Parameters : conn - pointer to the struct Connection. It is an output parameter
    ** returns the handle to the new session.
    ** username - pointer to the char array has username.
    ** password - pointer to the char array has password.
    ** server - pointer to the char array has database name.
    ** Returns 0 on success, 1 on success with information and non-zero value on error.
    int status = 0;
    boolean sesfnd;
    text errbuf[512];
    sb4 errcode = 0;
    if (!conn) return OCI_INVALID_HANDLE;
    if (!strcasecmp (USE_SESS_POOL, "YES"))
    /* PLC44050021 Session Pool Changes*/
    if (conopen==0)
    status = OCIEnvCreate((OCIEnv **) &envhp, OCI_THREADED,
    (dvoid *)0, (dvoid *(*)(dvoid *, size_t))0,
    (dvoid *(*)(dvoid *, dvoid *, size_t))0, (void (*)(dvoid *, dvoid *))0,
    (size_t)0, (dvoid**)0);
    if (status != 0 && status != 1) return status; /*error in creating environment*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **)&errhp,
    OCI_HTYPE_ERROR,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **)&authp,
    OCI_HTYPE_AUTHINFO,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **) &poolhp,
    OCI_HTYPE_SPOOL,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating CPOOL Handler*/
    status = OCISessionPoolCreate((OCIEnv*)envhp,
    (OCIError*)errhp,poolhp,
    &poolName, (ub4*)&poolNameLen,
    (text*)server, (ub4)strlen(server),
    sessMin, sessMax, sessIncr,
    (text*)username, (ub4)strlen(username),
    (text*)password, (ub4)strlen(password),
    OCI_DEFAULT) ;
    if ( status != 0 && status != 1 ) return status;
    conn->envhp=(OCIEnv*)envhp;
    conn->errhp=(OCIError*)errhp;
    status=OCIAttrSet((dvoid *)authp,(ub4) OCI_HTYPE_AUTHINFO,
    (text*)username, (ub4)strlen(username),
    (ub4) OCI_ATTR_USERNAME, (OCIError*)conn->errhp);
    if ( status != 0 && status != 1 ) return status;
    status=OCIAttrSet((dvoid *) authp,(ub4) OCI_HTYPE_AUTHINFO,
    (text*)password, (ub4)strlen(password),
    (ub4) OCI_ATTR_PASSWORD, (OCIError*)conn->errhp);
    if ( status != 0 && status != 1 ) return status;
    status = OCISessionGet((OCIEnv*)conn->envhp,
    (OCIError*)conn->errhp,
    (OCISvcCtx**)&(conn->svchp),
    authp,
    (OraText *)poolName, (ub4)strlen((char*)poolName),
    (OraText *)"", (ub4)0,
    NULL, NULL,
    0,
    OCI_SESSGET_SPOOL);
    if ( status != 0 && status != 1 ) return status;
    conopen=1;
    /******* if the session pool is already established, reuse sessions out of it ********** /
    else
    conn->errhp=(OCIError*)errhp;
    conn->envhp=(OCIEnv*)envhp;
              /******* Hanging in this call ********** /
    status = OCISessionGet((OCIEnv*)conn->envhp,
    (OCIError*)conn->errhp,
    (OCISvcCtx**)&(conn->svchp),
    authp,
    (OraText *)poolName, (ub4)strlen((char*)poolName),
    (OraText *)"", (ub4)0,
    NULL, NULL,
    0,
    OCI_SESSGET_SPOOL);
    if ( status != 0 && status != 1 ) return status;
    else
    status = OCIEnvCreate((OCIEnv **) &conn->envhp, (ub4)OCI_DEFAULT,
    (dvoid *)0, (dvoid *(*)(dvoid *, size_t))0,
    (dvoid *(*)(dvoid *, dvoid *, size_t))0, (void (*)(dvoid *, dvoid *))0,
    (size_t)0, (dvoid**)0);
    if (status != 0 && status != 1) return status; /*error in creating environment*/
    status = OCIHandleAlloc((dvoid *)conn->envhp, (dvoid **)&conn->errhp, OCI_HTYPE_ERROR, (size_t)0, (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCILogon((OCIEnv*)conn->envhp, (OCIError*)conn->errhp, (OCISvcCtx**)&(conn->svchp),
    (text*)username, (ub4)strlen(username),
    (text*)password, (ub4)strlen(password),
    (text*)server, (ub4)strlen(server));
    return status;
    }

  • Run time error when calling a pro*c from oracle apps

    When I try to execute a pro*c program from ORACLE APPS it gives
    the following error
    < program was terminated by signal 11>
    But the same program I can able to run from unix
    Can Anyone help me out
    rgds
    -suku

    Thanks a lot,
    I also discovered that dragging the user control onto my user interface doesn't allow alternate activation.
    ( I actually tried stopping and then starting but the result was the same )
    Calling the routines as indicated in the header comments also gave some hiccups ( I had to remark some code to get the system working progrtammatically.
    public void Start()
    #region Update UI
    this.switch1.Caption = "On";
    this.switch1.Value = true;
    #endregion
    daqmxTask.Start();
    public void Stop()
    #region Update UI
    this.switch1.Caption = "Off";
    this.switch1.Value = false;
    #endregion
    daqmxTask.Stop();
    #region Methods

  • How to install a patch in oracle apps

    Hi,
    Please provide me the steps to install a patch in oracle apps(unix platform)

    Welcome to the forums !
    Pl post EBS questiosn in the EBS forms http://forums.oracle.com/forums/category.jspa?categoryID=3
    Pl see these MOS Docs for answers to your question -
    130608.1 - adpatch Basics
    174436.1 - Oracle Applications Patching FAQ
    HTH
    Srini

  • Calling java code from oracle apps form

    I've created my own java .class file and am attempting to call it from an oracle applications form. I am getting a runtime error while running the form, but I don't know what the error is because nothing is being reported to me.
    I've created the .java file in JDeveloper, compiled it into a .class file, deployed it to a .jar file, and placed it on the application server in a directory that the CLASSPATH can see it. I've added it to the archive parameter of the appsweb.cfg file and see that the .jar file is being downloaded when the JInitiator of Oracle Apps is started.
    I have also imported the .class file into the form via the Program -> Import Java Classes which resulted in PL/SQL package stubs created to call the .class methods.
    When I run the form, the java code is activated on a triggering event, PRE-INSERT. There is no java bean item in a block or on a canvas anywhere. I dont' think I need there to be since I am simply using the java code to perform actions during PRE-INSERT, not to display anything on the canvas.
    I have placed debug messages throughout my code and see that the error is occuring in the PL/SQL packaged stub at the line "JNI.GET_CLASS()" where the parameter to that call is the name of my class. I know it's erroring there because I am handling the "java_error" exception. I am displaying "ora_java.last_error" in the exception handling, but it is null.
    I am at a loss as to determine why I am having problems and how to display an error. Any suggestions? I'm happy to outline my steps and problem in more detail if I have missed something obvious.
    We are using Forms 6.0.8.21.3 with Oracle Apps 11.5.7.
    Shane.

    Shane,
    Don't loose the heart. You have come too close to end.
    The scenario you have mentioned is very unique and something which will fit more in the forms forum. So I think that was a sincere answer to help you and not a "pass the buck" card type game :)
    You are lucky that you got Tapash interested into this issue, otherwise you see there is no OAF component involved out here.
    I have an article promised to some of the guys but will follow this issue.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to find out the exact reason for backordered order in oracle apps R12

    Hi,    
         I am new to OM module.I booked an order and trying to do "pick release" the booked order but i couldn't do so, because the order is getting backordered.
    These are the things i checked
    1.On-hand quantity for the particular item i am booking is sufficient enough
    2.Item is in M1 org and onhand quantity is also in same org.
    Can you please help me how to find the exact reason for my order getting backordered.
    Regards
    Sandeep.G

    Hi Sandeep,
    Reasons for pick release resulting in back ordered can be found here:
    Reasons for a Sales Order to get Backordered!
    Failing pick release, orders getting backordered and other common issues with picking.
    Please review notes:
    Cannot Pick Release Items, Completes with Warning and the Item is Backordered. (Doc ID 1240404.1)
    Pick Release Process Completes In Warning Line Gets Backordered Though Onhand Is Present (Doc ID 1285514.1)
    Pick Release Backorders Sales Order Lines, Error in Log File "No Mtl_Sales_Order ID found for oe header" (Doc ID 398385.1)
    Reservation Remains After Pick Release Of Backordered Move Order (Doc ID 754518.1)
    In addition, please review:
    What is Back Order in OM? How are Backorders Handled | Oracle Apps
    Thanks &
    Best Regards,

  • Registering Forms in Oracle Apps 11i

    Hi hussein,
    This is the docs for registering an Oracle Form in Oracle Apps 11i.
    To Register a custom form in Oracle Applications, take the following steps.
    (As practice, copy the form FNDRSRUN.fmx under the $FND_TOP/forms to a file
    called RUNRPT.fmx. The form RUNRPT.fmx will now be used in the following steps.)
    1.Log into the Applications Developer responsibility
    2.Navigate to Application > Form
    3.Enter the form name under the "Form" column
         RUNRPT
    4.Enter the Application under the "Application" column using the list of value
      button, or the "List of Values" function under the "Edit" menu option.
         Application Object Library
    5.Enter a name for the form under the "User Form Name" column
         My Report Run Form
    6.Enter a description for the form under the "Description" column
         Custom Report Run Form
    7.Save
    [\code]
    My question is, how do I run the form in the Oracle Apps? After registering it.
    And this is also another doc:Rgistering form will takes following steps
    1) Create custom form
    2) place it in CUSTOM_TOP in unix box
    3) compile form with f60 gen and check whether compiled form .fmx is generated.
    4) register your from
    Registering a Form
    Navigation – Application Developer -> Application->Form
    5) Register Form Functions
    Navigation – Application Developer -> Application->Function
    6) attach it to menu.
    7) menu must be submenu to menu or attached as to responsibility from which you are going to run form.
    For report we are attaching concurrent program to responsibility but here form function must be attached to Menu.
    My question is, how do I know if a form has a function that needs to be registered?
    Thanks a lot
    msk

    Hi,
    My question is, how do I run the form in the Oracle Apps? After registering it.You already have the steps in your post, just add the form to the menu and attach it to the responsibility.
    My question is, how do I know if a form has a function that needs to be registered?Sorry, I cannot be of much help here, but you may check the Developer Guide and see if it helps.
    Oracle Applications Developer's Guide
    http://download.oracle.com/docs/cd/B25284_01/current/acrobat/115devg.pdf
    Regards,
    Hussein

  • Load Balancing & Fault tolerance in Oracle Apps

    Hello
    I am pretty new to Oracle Apps and Oracle 9iAS
    We are trying to asked to find out the ways of deplying load balancing and fault tolerance in Oracle Apps
    I have gone thru the following articles of metalink and some more from google
    Configuring Web Cache as a Load Balancer for Application Servers
    Create new middle tier node in existing Apps 11i environment using cloning and then load balance
    Integrating and using Web Cache with Forms 9i for Load Balancing
    Running Multiple OC4J Instances From a Single Install of 9iAS 1.0.2.2
    LOAD BALANCING ORACLE APPLICATIONS ON UNIX
    Load Balancing in 11i
    OC4J Clustering Setup
    OC4J Load Balancing for Forms 9i
    Setting up 11i E-Business suite using a hardware load balancer
    Sharing an APPL_TOP in Oracle Applications 11i
    In Oracle Apps Concepts pdf, found that
    Load balancing occurs when there are multiple installations of web server, forms server, reports server, concurrent manager server etc
    Lets consider forms server component of middle tier
    Can there be multiple INSTANCES of forms server within SINGLE INSTALLATION ???
    If it has to be MULTIPLE INSTALLATIONS, then it will require multiple physical machines
    What is software load balancing then ???
    Also read that
    Oracle 9i AS instance is combition of Oracle HTTP Server (OHS) and one or more instances of Oracle9iAS Container for J2EE (OC4J)
    Thus software load balancing can be implemented for Web server component of middle tier using multiple instances of OC4J ???
    Forms metrix server configuration is hardware load balancing ??
    What about Oracle9iAS Web Cache clustering ??
    Please clarify the doubts and suggest me the way
    Thanks a lot

    dear all can any one help me on the following;
    We want to install Oracle Apps 11.5.9 on 4 IBM AIX 5L boxes, the first node
    will hold the database , concurrent and Admin Tiers. as for the other 3 nodes
    it will hold the Forms/Web Tiers and we need to use forms metrics for load
    balancing taking into consideration that we can't use Shared APPL_TOP. we tried
    to find the way how to install and configure this solution but all the
    documents are talking aboout the concept only and this concept is applicable.
    We need the exact steps on how do the installation either using rapidwiz or any
    thing else
    fadi

  • Failed in Installing Oracle Apps 11i on RHEL5

    Hi,
    I try to install oracle apps on rhel5. as instructed on the metalink id=316806.1, i follow all reuqired steps and rpm. but when i install the oracle applications 11i on RHEL5 i received an error: " RW-50004: Error code received when running external process. Check log file for details. Running Database Install Driver for DVL instance Database Availability Check "
    can anyone help me to resolve this issue?...
    Check runProcess5 on the Logfile..
    Here's the log file;
    Oracle Applications Rapid Install Wizard Install log
    >> Using Rapid Wizard Version : 11.5.10.35
    >> Install session started : Tue Aug 12 15:01:27 PHT 2008
    >> Rapid Wizard source location : /live/Stage11i/startCD/Disk1/rapidwiz
    >> Command Line arguments for this execution :
    =================================================================
    Install Session Information
    Host Name : bladj.myclone.com
    Host Operating System : Linux
    User running Install : root
    =================================================================
    InstUpgPanel
         User action : Install Oracle Applications
         Install type : Standard Install
    InstallPanel
         User action : Create configuration file
         Description : To create a new intance cofiguration.
    NumNodesPanel
         Install type : Single node Install
         Description : Installs all the services on a single node.
    InstallSidPanel
         Database type : Fresh Install Database
         Database name : DVL
    RdbmsPanel
         Derived Mount Points :
              Oracle OS User : devora
              Oracle OS Group : dba
              Base Install directory : /live
              Oracle Home : /live/ora/dvldb/9.2.0
              Data Top (SYS) : /live/dta/dvldata
              Data Top (LOG) : /live/dta/dvldata
              Data Top (TXN) : /live/dta/dvldata
              Data Top (ARCHIVE) : /live/dta/dvldata
    LicensePanel
         Licensing type : Component Licensing
         Description : An application can be licensed individually.
    ProductPanel
         Selected products :
              [0 160 190 265 601 174 175 690 874 709 660 702 401 665 673 201 202 178 230 101 140 200 222 240 260 600 8400 8401 8450 8901 231 ]
         Selected product groups :
              [Basic, Order Management, Inventory Management, Purchasing, iProcurement, Financials]
    LanguagePanel
         Selected languages :
              [American_English - US]
    CharsetPanel
              Default territory : AMERICA
              Base Language : American_English - US
              Database character set : US7ASCII
              APPL_TOP character set : US7ASCII
              IANA character set : US-ASCII
    MtierInfoPanel
         Configuration Information for Node - bladj - Admin Server / Concurrent Mgr / Forms Server / Web Server
              Derived Mount Points :
                   Apps OS User : devapp
                   Apps OS Group : dba
                   Base Install directory : /live/app
                   APPL_TOP Mount point : /live/app/dvlappl
                   APPL_TOP aux. 1 : /live/app/dvlappl
                   APPL_TOP aux. 2 : /live/app/dvlappl
                   APPL_TOP aux. 3 : /live/app/dvlappl
                   COMMON_TOP : /live/app/dvlcomn
                   8.0.6 ORACLE_HOME : /live/app/dvlora/8.0.6
                   iAS ORACLE_HOME : /live/app/dvlora/iAS
                   Temp Directory : /live/app/dvlcomn/temp
    PortPanel
              Selected port pool :
                   Domain Name : myclone.com
                   Database Port : 1522
                   RPC Port : 1627
                   Reports Port : 7001
                   Web Listener Port : 8001
                   OProcMgr Port : 8101
                   Web PLSQL Port : 8201
                   Servlet Port : 8801
                   Forms Listener Port : 9001
                   Metrics Server Data Port : 9101
                   Metrics Server Req. Port : 9201
                   JTF Fulfillment Server Port : 9301
                   Map Viewer Servlet Port : 9801
                   OEM Web Utility Port : 10001
                   VisiBroker OrbServer Agent Port : 10101
                   MSCA Server Port : 10201
                   MSCA Dispatcher Port : 10301
                   Java Object Cache Port : 12346
                   OACORE Servlet Port Range : 16010-16019
                   Discoverer Servlet Port Range : 17010-17019
                   Forms Servlet Port Range : 18010-18019
                   XMLSVCS Servlet Port Range : 19010-19019
    AppsConfig temp dir set to: /tmp
    ConfigFilePanel
              Setting temp directory to : /tmp <-> /tmp/
              Writing configuration file to : /tmp/config.txt
    Port Availability Check :
    Database Port Value = 1522...... Available
    RPC Port Value = 1627...... Available
    Forms Listener Port Value = 9001...... Available
    Metrics Server Port Value = 9101...... Available
    Metrics Client Port Value = 9201...... Available
    Forms Servlet Port Range Value = 18010...... Available
    Forms Servlet Port Range Value = 18011...... Available
    Forms Servlet Port Range Value = 18012...... Available
    Forms Servlet Port Range Value = 18013...... Available
    Forms Servlet Port Range Value = 18014...... Available
    Forms Servlet Port Range Value = 18015...... Available
    Forms Servlet Port Range Value = 18016...... Available
    Forms Servlet Port Range Value = 18017...... Available
    Forms Servlet Port Range Value = 18018...... Available
    Forms Servlet Port Range Value = 18019...... Available
    Report Listener Port Value = 7001...... Available
    Web Listener Port Value = 8001...... Available
    Web Listener PLSQL Port Value = 8201...... Available
    Servlet Port Value = 8801...... Available
    JTF Fulfillment Server Port Value = 9301...... Available
    Map Viewer Servlet Port Value = 9801...... Available
    OEM Web Utility Port Value = 10001...... Available
    VisiBroker OrbServer Agent Port Value = 10101...... Available
    MSCA Server Port Value = 10201...... Available
    MSCA Dispatcher Port Value = 10301...... Available
    OACORE Servlet Port Range Value = 16010...... Available
    OACORE Servlet Port Range Value = 16011...... Available
    OACORE Servlet Port Range Value = 16012...... Available
    OACORE Servlet Port Range Value = 16013...... Available
    OACORE Servlet Port Range Value = 16014...... Available
    OACORE Servlet Port Range Value = 16015...... Available
    OACORE Servlet Port Range Value = 16016...... Available
    OACORE Servlet Port Range Value = 16017...... Available
    OACORE Servlet Port Range Value = 16018...... Available
    OACORE Servlet Port Range Value = 16019...... Available
    Discoverer Servlet Port Range Value = 17010...... Available
    Discoverer Servlet Port Range Value = 17011...... Available
    Discoverer Servlet Port Range Value = 17012...... Available
    Discoverer Servlet Port Range Value = 17013...... Available
    Discoverer Servlet Port Range Value = 17014...... Available
    Discoverer Servlet Port Range Value = 17015...... Available
    Discoverer Servlet Port Range Value = 17016...... Available
    Discoverer Servlet Port Range Value = 17017...... Available
    Discoverer Servlet Port Range Value = 17018...... Available
    Discoverer Servlet Port Range Value = 17019...... Available
    XMLSVCS Servlet Port Range Value = 19010...... Available
    XMLSVCS Servlet Port Range Value = 19011...... Available
    XMLSVCS Servlet Port Range Value = 19012...... Available
    XMLSVCS Servlet Port Range Value = 19013...... Available
    XMLSVCS Servlet Port Range Value = 19014...... Available
    XMLSVCS Servlet Port Range Value = 19015...... Available
    XMLSVCS Servlet Port Range Value = 19016...... Available
    XMLSVCS Servlet Port Range Value = 19017...... Available
    XMLSVCS Servlet Port Range Value = 19018...... Available
    XMLSVCS Servlet Port Range Value = 19019...... Available
    Operating System Check
    command : /live/Stage11i/startCD/Disk1/rapidwiz/bin/checkOS.sh
    Operating System patch/version test has succeeded
    O/S User and Group Check
    Install is being done by root so ignoring this test.
    Port Uniqueness Check :
    All ports are unique.
    File System Check :
    Database ORACLE_HOME has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0
    Database ORACLE_HOME admin folder has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil
    Database ORACLE_HOME temp folder has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/temp
    Database Install Log Directory has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Database Install Out Directory has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac
    Database System File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Log File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Transaction File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Archive File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    APPL_TOP has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP admin has write privileges:
    Mount Point = /live/app/dvlappl/admin
    APPL_TOP mount 2 has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP mount 3 has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP mount 4 has write privileges:
    Mount Point = /live/app/dvlappl
    COMMON_TOP has write privileges:
    Mount Point = /live/app/dvlcomn
    JAVA_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/java
    JDK_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/util/java/1.4/j2sdk1.4.2_04
    PORTAL_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/portal
    Temp Directory has write privileges:
    Mount Point = /live/app/dvlcomn/temp
    APPL_TOP admin Install Log Directory has write privileges:
    Mount Point = /live/app/dvlappl/admin/DVL_bladj/log
    Changed Permissions for /live/app/dvlappl/admin/DVL_bladj/log
    APPL_TOP admin Install Out Directory has write privileges:
    Mount Point = /live/app/dvlappl/admin/DVL_bladj/out/templbac
    Apps ORACLE_HOME has write privileges:
    Mount Point = /live/app/dvlora/iAS
    Tools ORACLE_HOME has write privileges:
    Mount Point = /live/app/dvlora/8.0.6
    File Space Check :
    Mount Point for /live/ora/dvldb/9.2.0 = /live
    Disk space on system acceptable :
    Database ORACLE_HOME = /live/ora/dvldb/9.2.0
    required = 3091.0
    actual = 110261.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database System File Directory = /live/dta/dvldata
    required = 11376.0
    actual = 107170.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Log File Directory = /live/dta/dvldata
    required = 55.0
    actual = 95794.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Transaction File Directory = /live/dta/dvldata
    required = 8294.0
    actual = 95739.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Archive File Directory = /live/dta/dvldata
    required = 10630.0
    actual = 87445.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP = /live/app/dvlappl
    required = 5705.0
    actual = 76815.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 2 = /live/app/dvlappl
    required = 3212.0
    actual = 71110.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 3 = /live/app/dvlappl
    required = 5852.0
    actual = 67898.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 4 = /live/app/dvlappl
    required = 2524.0
    actual = 62046.109375
    Mount Point for /live/app/dvlcomn = /live
    Disk space on system acceptable :
    COMMON_TOP = /live/app/dvlcomn
    required = 2963.0
    actual = 59522.109375
    Mount Point for /live/app/dvlora/iAS = /live
    Disk space on system acceptable :
    Apps ORACLE_HOME = /live/app/dvlora/iAS
    required = 2600.0
    actual = 56559.109375
    Mount Point for /live/app/dvlora/8.0.6 = /live
    Disk space on system acceptable :
    Tools ORACLE_HOME = /live/app/dvlora/8.0.6
    required = 3027.0
    actual = 53959.109375
    Host/Domain Check
    command : /bin/ping -c 1 bladj
    PING bladj.myclone.com (192.168.10.17) 56(84) bytes of data.
    64 bytes from bladj.myclone.com (192.168.10.17): icmp_seq=1 ttl=64 time=0.033 ms
    --- bladj.myclone.com ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.033/0.033/0.033/0.000 ms
    host ping has succeeded
    command : /bin/ping -c 1 bladj.myclone.com
    PING bladj.myclone.com (192.168.10.17) 56(84) bytes of data.
    64 bytes from bladj.myclone.com (192.168.10.17): icmp_seq=1 ttl=64 time=0.032 ms
    --- bladj.myclone.com ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.032/0.032/0.032/0.000 ms
    host.domain ping has succeeded
    OS Patch Checks
    running command : OSPatchCheck.checkPatch()
    OS = Linux OSVersion = 2.6.18-92.el5
    No Patch Information available for this Platform
    System Utilities Check
    These utilities need to be accessible on your system in order to do administrative tasks.
    command : /live/Stage11i/startCD/Disk1/rapidwiz/bin/adchkutl.sh
    Checking for make...     found - /usr/bin/make
    Checking for ld...     found - /usr/bin/ld
    Checking for cc...     found - /usr/bin/cc
    Checking for ar...     found - /usr/bin/ar
    Checking for ksh...     found - @(#)PD KSH v5.2.14 99/07/13.2
    Utility check completed successfully
    System Utilities Availability test has succeeded
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    DoInstallPanel - User continued install at warning dialog.
    Starting from Rapid Install Full Stage area /live/Stage11i/oraDB/Disk1
    RapidWiz location: /live/Stage11i/startCD/Disk1/rapidwiz
    Install Media location: /live/Stage11i/startCD/Disk1
    APPL_TOP location: /live/app/dvlappl
    Database ORACLE_HOME: /live/ora/dvldb/9.2.0
    Database SID: DVL
    Database Context Name : DVL_bladj
    Creating 9.2.0 DB Context from /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxdbctx.tmp to /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxdbctx.tmp
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /live/ora/dvldb/9.2.0/temp/restart.xml
    dest : /tmp/tmprestart.xml
    instantiate file:
    source : /tmp/tmprestart.xml
    dest : /tmp/tmprestart.xml
    Creating APPL_TOP Context from /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxmlctx.tmp to /live/app/dvlappl/admin/DVL_bladj.xml
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxmlctx.tmp
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /live/app/dvlcomn/temp/restart.xml
    dest : /tmp/tmprestart.xml
    instantiate file:
    source : /tmp/tmprestart.xml
    dest : /tmp/tmprestart.xml
    Succesfully changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    Total number of processes in Current Install 5
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Creation of Directory - /live/ora/dvldb/9.2.0/temp/DVL_bladj Succeeded.
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrun9i.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrun9i.sh
    setting permissions: 755
    setting ownership: devora:dba
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrundb.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrundb.sh
    setting permissions: 755
    setting ownership: devora:dba
    Step 0 of 5
    Command: /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    Step 1 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 1 of 5
    Executing: su devora -c "/live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh APPS APPS"
    STARTED INSTALL PHASE : 9i RDBMS : Tue Aug 12 15:05:22 PHT 2008
    runProcess_1
    Executing command:
         /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//bin/jre -mx512M -classpath \n     /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/rt.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/i18n.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/java:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/xmlparserv2.zip oracle.apps.ad.autoconfig.InstantiateFile -e /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml -d
    /live/Stage11i/startCD/Disk1/rapidwiz/driver/db/driver/gdb920.drv -pwd no_password_here -log /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj/dbInstall.log -verbose
    Enter the location of the CD labeled Oracle Applications Rapid Install - RDBMS Disk 1 :
    Checking Disk contents in - /live/Stage11i/startCD/Disk1/rapidwiz
    Checking Disk contents in - /live/Stage11i/oraDB/Disk1
    Checking Disk contents in - /live/Stage11i/oraDB/Disk1
    UnzipCount:108
    Processing Disk1....
    Processing Disk2....
    Processing Disk3....
    runProcess_2
    Statusstring Copying the Database Context template file.
    runProcess_3
    Statusstring Executing Command: InstantiateFile -d instconf.drv
    Executing command: /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//bin/jre -mx512M -classpath /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/rt.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/i18n.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/java:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/xmlparserv2.zip oracle.apps.ad.autoconfig.InstantiateFile -e /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml -d /live/ora/dvldb/9.2.0/appsutil/driver/instconf.drv -pwd no_password_here -log /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj/dbInstallcfg.log
    runProcess_4
    Statusstring Executing Command: recreating context file
    runProcess_5
    Statusstring Executing Command: InstantiateFile -d addbtmpl.drv
    Cannot execute configure of environment for database ORACLE_HOME
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for DVL instance
    Succesfully changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrun9i.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrun9i.sh
    setting permissions: 755
    setting ownership: devora:dba
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrundb.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrundb.sh
    setting permissions: 755
    setting ownership: devora:dba
    Step 0 of 5
    Command: /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    Step 1 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 1 of 5
    Executing: su devora -c "/live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh APPS APPS"
    STARTED INSTALL PHASE : 9i RDBMS : Tue Aug 12 15:27:36 PHT 2008
    runProcess_5
    Statusstring Executing Command: InstantiateFile -d addbtmpl.drv
    Cannot execute configure of environment for database ORACLE_HOME
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for DVL instance
    Database Availability Check
    command : su devora -c "/live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS"
    There was an error while running the command - su devora -c /live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS
    uname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    wc: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    riwTDBup.sh started at Tue Aug 12 15:27:47 PHT 2008
    Parameters passed are : /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    Executable :
    riwTDBup.sh exiting with status
    Database ORACLE_HOME connection test has succeeded
    command : su devapp -c "/live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/app/dvlora/8.0.6/DVL_bladj.env APPS/APPS"
    riwTDBup.sh started at Tue Aug 12 15:27:48 PHT 2008
    Parameters passed are : /live/app/dvlora/8.0.6/DVL_bladj.env APPS/APPS
    Cannot find environment file /live/app/dvlora/8.0.6/DVL_bladj.env
    RW-50011: Error: - Apps ORACLE_HOME connection test has returned an error: 1
    Environment File Check
    Database ORACLE_HOME environment file passes instantiated variables test:
    File = /live/ora/dvldb/9.2.0/DVL_bladj.env
    RW-50016: Error: - Apps ORACLE_HOME environment file was not created:
    File = /live/app/dvlora/iAS/DVL_bladj.env
    RW-50016: Error: - iAS ORACLE_HOME environment file was not created:
    File = /live/app/dvlora/8.0.6/DVL_bladj.env
    RW-50016: Error: - APPL_TOP environment file was not created:
    File = /live/app/dvlappl/DVL_bladj.env
    RW-50016: Error: - ADOVARS environment file was not created:
    File = /live/app/dvlappl/admin/adovars.env
    RW-50016: Error: - APPSCONFIG was not created:
    File = /live/app/dvlappl/admin/adconfig.txt
    DBC File Check
    RW-00023: Error: - DBC file was not created:
    File = /live/app/dvlappl/fnd/11.5.0/secure/DVL_bladj/dvl.dbc
    HTTP Check
    checking URL = http://bladj.myclone.com:8001
    RW-50015: Error: - Portal is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    JSP Check
    checking URL = http://bladj.myclone.com:8001/OA_HTML/jsp/fnd/fndhelp.jsp?dbc=/live/app/dvlappl/fnd/11.5.0/secure/DVL_bladj/dvl.dbc
    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.
    PHP Check
    checking URL = http://bladj.myclone.com:8001/OA_HTML/US/ICXINDEX.htm
    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.

    here's is the dbInstancecfg.log
    Creation of Directory - /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL does not exist, will be instantiated in the current pass
    Creation of Directory - /live/ora/dvldb/9.2.0/network/admin/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8ilsnr.ora
    dest : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora
    backup : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/listener.ora
    setting permissions: 644
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL does not exist, will be instantiated in the current pass
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8itns.ora
    dest : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora
    backup : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/tnsnames.ora
    setting permissions: 644
    Creation of Directory - /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL does not exist, will be instantiated in the current pass
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afinit_db920.ora
    dest : /live/ora/dvldb/9.2.0/dbs/initDVL.ora
    backup : /live/ora/dvldb/9.2.0/dbs/initDVL.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/initDVL.ora
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 15:26:56 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 15:27:44 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 16:54:41 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 16:55:07 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1

  • Barcode Report In Oracle Apps

    Hi,
    I am going develop new barcode report in oracle apps (using standard oracle report not like xml,BI.), As i am new to this i need basic information like what are all the setup need to be done whether is possible or not , Following are the versions i am using
    Oracle Report Builder 6i (output is Text)
    Oracle Apps 11.5.10.2
    Sever Details:
    DATABASE Server - 10g RAC enabled (Load balancer)
    Application Server - Load balancer
    Platform: HP - UNIX 64 bit-(PA RISC),
    SAN - HP EVA storage
    DR site hosted with etisalat (SCSI)

    You may want to take a look at this blog created by Tim Dexter regarding barcoding in XML Publisher.
    http://blogs.oracle.com/xmlpublisher/2006/06/06/#a43

  • Integration of Oracle Apps with the Third Party Label Printing Software

    Hi,
    I am integrating Oracle Apps R12 with the third party Label Printing Software(Bartender).
    For generating the Label, I have to create the XML file in Oracle Apps and with the help of Oracle WMS i have to transfer the XML file to the TCP/IP Port.
    Third Party Label Printing Software will pick the file from the TCP/IP Port.
    I am not able to find the way to send the XML file generated by the concurrent program to the TCP/IP Port using Oracle WMS.
    Below are the few links for Oracle WMS:
    http://docs.oracle.com/cd/B25284_01/current/acrobat/115wmsug.pdf
    http://docs.oracle.com/cd/E18727_01/doc.121/e13434/T210618T210847.htm#T210864
    Thanks In Advance..

    Hi,
    I assume, i have already setup profile 'WMS: Label Print Mode' to Synchronous - TCP/IP.
    Basically, you dont have to create any concurrent program for XML creation, Oracle will do it for you 'out of box'.
    Also set 'WMS: Synchronous TCP/IP label request delay' to 100, this is a required step, though none of the documentation talks about it.
    if you think that all the requests are not handled correctly, then you will need to increase this delay further.
    Lastly, verify that the printer is setup correctly in Oracle (Place where you specify IP Address and port)
    Thanks,
    Hrishikesh

Maybe you are looking for

  • Wishlist for Captivate 4

    I'm starting this thread so we can gather all the thing we want in Captivate 4 ! - speling check for closed captions : you can spell check your notes but not the closed captions! - CCs independant of sound : CCs are embedded in the audio file. If it

  • W510 - Cannot go into sleep mode

    The latest patches do not fix this issue, and not only W510 but also all series have the same issue. edit note:- Title changed to suit the issue. Solved! Go to Solution.

  • Xws-security returns always HTTP 200

    Hi, I am using libraries of JWSDP 2.0, jaxws and xws-security. My web service was generated from a WSDL schema and works so far fine. I need to secure the transportation with a xml signature. For that I am using the xws libraries. My problem is that

  • XY Graph slow in response

    Hi All, I have 2 XY graphs in my VI and for some reason 1 XY is super slow in response. I have attached my vi here which demonstrates the behavior. There are 2 XY graphs. The one on the top is super slow in response and the one below behaves normally

  • New CC account - no apps will install

    I have signed up to Creative Cloud on OS X (Mavericks), but no installers will go past 42% (in fact they all stop at exactly this point). I have tried this too in safe mode, same result, and have downloaded trial versions manually with a view to acti