Unable to run postclone script in Web tier

Hi guys,
I am trying to clone an existing Oracle Ebsuiness Suite 12.1.3 environment.
Now I am trying to execute command: perl adcfgclone.pl appsTier in the Web tier node, but I am getting next error message:
Executing script in InstantiateFile:
/oramet01/oraprodmet/apps/tech_st/10.1.3/perl/bin/perl -I /oramet01/oraprodmet/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /oramet01/oraprodmet/apps/tech_st/10.1.3/perl/lib/s
ite_perl/5.8.3 -I /oramet01/oraprodmet/apps/apps_st/appl/au/12.0.0/perl -I /oramet01/oraprodmet/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/sun4-sola
ris-thread-multi /oramet01/oraprodmet/apps/tech_st/10.1.3/appsutil/clone/ouicli.pl
script returned:
Beginning OUI CLI cloning for s_weboh_ohTue Oct 25 17:56:40 2011
/oramet01/oraprodmet/apps/tech_st/10.1.3/jdk/bin/java -classpath /oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/java:/oramet01/oraprodmet/apps/tech_st/10.1.3/oui/jli
b/OraInstaller.jar:/oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/xmlparserv2.jar:/oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/ojdbc14.jar oracle.apps.ad.clone
.util.OracleHomeCloner -OUICLI -e /oramet01/oraprodmet/inst/apps/PRODMET_gpmappora1-e/appl/admin/PRODMET_gpmappora1-e.xml -nolink -oaVar s_weboh_oh -homestub weboh -lo
g /oramet01/oraprodmet/inst/apps/PRODMET_gpmappora1-e/admin/log/ohclone.log
Finished OUI CLI cloning for s_weboh_oh with return code: 16777215Tue Oct 25 17:56:40 2011
The difference that I have noted, is that in the source node the Java version in /usr/java path is pointing to 1.6.0.22:
[oracrp ] ./java -version
java version "1.6.0_22"
Java(TM) SE Runtime Environment (build 1.6.0_22-b04)
Java HotSpot(TM) Server VM (build 17.1-b03, mixed mode)
[gpmtest1-f]/usr/java/bin
In the target node it is pointing to:
$ ./java -version
java version "1.5.0_21"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_21-b01)
Java HotSpot(TM) Server VM (build 1.5.0_21-b01, mixed mode)
$ pwd
/usr/java/bin
Any help or advice will be really appreciated.
Thanks in advance.
Kind regards,
Francisco

Hi,
When I try to run ouicli.pl manually, I get next error message:
$ pwd
/oramet01/oraprodmet/apps/tech_st/10.1.3/appsutil/clone
$ ./ouicli.pl
Beginning OUI CLI cloning for s_weboh_ohTue Oct 25 19:09:10 2011
/oramet01/oraprodmet/apps/tech_st/10.1.3/jdk/bin/java -classpath /oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/java:/oramet01/oraprodmet/apps/tech_st/10.1.3/oui/jlib/OraInstaller.jar:/oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/xmlparserv2.jar:/oramet01/oraprodmet/apps/apps_st/comn/clone/jlib/ojdbc14.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e /oramet01/oraprodmet/inst/apps/PRODMET_gpmappora1-e/appl/admin/PRODMET_gpmappora1-e.xml -nolink -oaVar s_weboh_oh -homestub weboh -log /oramet01/oraprodmet/inst/apps/PRODMET_gpmappora1-e/admin/log/ohclone.log
Finished OUI CLI cloning for s_weboh_oh with return code: 16777215Tue Oct 25 19:09:10 2011
Any help or advice will be really appreciated.
Thanks in advance.
Kind regards,
Francisco

Similar Messages

  • Unable to run Groovy scripts within procedure

    Hi all,
    We are managing to automate objects promotion to PROD environment using Groovy. The thing is that we are able to run the script in the Groovy tool successfully, but we are not able to run the same script within a procedure in ODI. The version that we are using is 11.1.1.6.5.
    Do you know if this needs further configuration? Does it needs any updgrade?
    Below, the script we are currently using, it´s just to create a new physical and logical architecture on the topology tab and write an entry on the context to link logical to physical. Any help would be highly appreciated. Thanks.
    Fernando.
    import oracle.odi.core.persistence.transaction.support.DefaultTransactionDefinition;
    import oracle.odi.domain.util.ObfuscatedString;
    import oracle.odi.domain.model.OdiModel;
    import oracle.odi.domain.topology.OdiLogicalSchema;
    import oracle.odi.domain.topology.OdiPhysicalSchema;
    import oracle.odi.domain.topology.OdiDataServer;
    import oracle.odi.domain.topology.OdiContext;
    import oracle.odi.domain.topology.OdiTechnology;
    import oracle.odi.domain.topology.OdiContextualSchemaMapping;
    import oracle.odi.domain.topology.AbstractOdiDataServer;
    import oracle.odi.domain.topology.finder.IOdiContextFinder;
    import oracle.odi.domain.topology.finder.IOdiTechnologyFinder;
    def createLogicalSchema(contextCode, techCode, schName, dataserverName, userName, password, url, driver, schema) {
    txnDef = new DefaultTransactionDefinition();
    tm = odiInstance.getTransactionManager()
    txnStatus = tm.getTransaction(txnDef)
    contextFinder = (IOdiContextFinder) odiInstance.getTransactionalEntityManager().getFinder(OdiContext.class);
    context = contextFinder.findByCode(contextCode);
    techFinder = (IOdiTechnologyFinder) odiInstance.getTransactionalEntityManager().getFinder(OdiTechnology.class);
    tech = techFinder.findByCode(techCode);
    lschema = new OdiLogicalSchema(tech, schName)
    dserver = new OdiDataServer(tech, dataserverName)
    con = new AbstractOdiDataServer.JdbcSettings(url, driver)
    dserver.setConnectionSettings(con)
    dserver.setUsername(userName)
    dserver.setPassword(password)
    pschema = new OdiPhysicalSchema(dserver)
    pschema.setSchemaName(schema)
    pschema.setWorkSchemaName(schema)
    cschema = new OdiContextualSchemaMapping(context, lschema, pschema)
    odiInstance.getTransactionalEntityManager().persist(lschema)
    odiInstance.getTransactionalEntityManager().persist(dserver)
    tm.commit(txnStatus)
    return lschema
    lschema = createLogicalSchema("DEVELOPMENT", "ORACLE", "LS_HAL_TEST", "DS_HAL_TEST", "ODI_TEST", ObfuscatedString.obfuscate("odi_test"),
    "jdbc:oracle:thin:@ourservername:10710:DBAA6T", "oracle.jdbc.OracleDriver", "ODI_TEST")
    Notice i've changed the actual name of our server for "ourservername" because I don't know if I´m able to post that information.
    Thanks.

    Hi,
    I did try to hard code the parameters values, and it still didn't work. However, I did get a little bit closer, I found out that it doesn't work only whne my stored procedure uses a temporary table.
    Any though, why the temporary table would cause this error ?
    Thanks

  • Red box (unable to run SQL scripts)

    [http://img140.imageshack.us/i/redbixi.png/]

    For those of us that are behind firewalls that prevent us from seeing the image you posted, would it be possible to describe the problem (i.e. what tool are you using, what are you doing, what error messages if any do you see)?
    Justin

  • Unable to run OpenScript Functional Scripts from OTM

    Hi,
    I am unable to run OpenScript Functional Scripts from OTM, but the same script is running successfully on OpenScript.
    I have a script which has all my functions (say Script A) and I am calling these functions from a different script (Script B) and even this script (Script B) uses couple of Databanks.
    Added both the scripts to OTM and when I run the script (Script B) which is calling the functions on OTM, I see the below error message.
    Error Message: Child script with alias "Proceure_ To_Pay_Functions" not found. Add to the script "Proceure_To_Pay" a script asset with alias "Proceure_ To_Pay_Functions"
    But the child script (Script A) with functions is added as a script asset in OpenScript to the calling script (Script B) and this script is running fine from OpenScript.
    Can anyone please help me in resolving this issue.
    Thanks,
    Satya

    Hi Deepu,
    It worked and able to run the scripts developed in OpenScript from OTM. Thanks for your help!!
    But I see another problem where when I try to run the script from OTM, I see a window Interactive Services Detection with a Message
    "A program running on this computer is trying to display a message" "The Program might need information from you or your permission to complete a task." with Two Options
    -> View The Message
    -> Ask me Later
    When I click on View the Message, I can see my application running by script but my desktop is not visible.
    There is another window with Return to Desktop option, when I click on this I can see my Desktop.
    Can I not see both my Desktop and application running on the same screen?
    Please help!!
    Thanks,
    Satya

  • Can I run perl scripts on a iplanet App Server instead of web server

    Hello,
    We have some perl scripts running on a iWS 6.0 in DMZ (Tier1) which acess Oracle Server(Tier 3). I want to restrict machines on DMZ access Oracle server directly. Instead I want all the database calls to orignate from iPlanet App server on Tier 2. To make this happen I have to run Perl scripts on App server. Is this feasible as the J2EE iPlanet App can run only C++ or Java.. Any leads helps me lot..
    Thanks
    Sudhir Nallagangu

    According to the J2EE specs you should use EJBs and Servlets in the iAS! Running a perl script for db access sounds like good old cgi times.
    But generally it is possible to call a perl script from within iAS. But don't do it!

  • Getting "Unable to run script at line 1: syntax error"  error?

    Hi,
    I want to run a script using the AEGP_ExecuteScript() function. but I got an error "Unable to run script at line 1: syntax error". what could be the rea son for this? shall I inlcude anything extra info in my project?
    Below is the code ...
    char scriptPath[] = "F:\\Documents and Settings\\akshays\\Desktop \\Active Shutter.jsx";
    A_Boolean platform_encodingB = 'B';
    AEGP_MemHandle outResultPH0;
    AEGP_MemHandle outErrorStringPH0;
    utilitySuite5->AEGP_ExecuteScript( pluginID, scriptPath, platform_encodingB, &outResultPH0, &outErrorStringPH0 );
    please help me.
    Thanks
    Manjunath

    This can be debug by using "ExtendSCript Toolkit 2 and Debugger".
    Just open Edit -> Prefernces -> General -> ****
    There enable checkbox "Enable javascript debugger".
    if you encountering an error while launching the script, then AE will automatically open your script in "ExtendSCript" toolkit with an error at the bottom line. You can see the "DataBrowsing" panel right side for available functions., objects and so on.
    then you can get to know what is the error and the reason for this error at least.

  • Unable to run cmd.exe in hosted web application?

    Hi
    I have to execute a cmd.exe in web application to merge a file.My code work fine on my dev environment. But on hosting the
    application on server unable to run the cmd.exe . Below is the code.
     ProcessStartInfo processStartInfo = new ProcessStartInfo("cmd.exe");
                        processStartInfo.RedirectStandardInput = true;
                        processStartInfo.RedirectStandardOutput = true;
                        processStartInfo.UseShellExecute = false;
                        Process process = Process.Start(processStartInfo);
                        if (process != null)
                            process.StandardInput.WriteLine("c:");
                            process.StandardInput.WriteLine("xcopy " + srcfilename + " " + destfilename + "
    /a /m /d /s /e /v");
                            // process.StandardInput.WriteLine("a");
                            process.StandardInput.Close(); // line added to stop process from hanging on ReadToEnd()
                            string outputString = process.StandardOutput.ReadToEnd();
                            process.Close();
                            // process.Kill();                   
    Pawan

    What is the hosting you are using on azure? Hosted your application as Azure web site or cloud service?
    If it is a azure cloud service - you will either need to define the start up tasks to do the same or need to run your azure roles in elevated context.
    Read more - https://msdn.microsoft.com/en-us/library/azure/gg456327.aspx
    https://msdn.microsoft.com/en-us/library/gg557553.aspx#Runtime
    Bhushan | Blog |
    LinkedIn | Twitter

  • Infoview stop running this script ...web browser to run slowly error

    Hi Everyone,
    I hope this is the right forum for this question. I'm experiencing 1 error with 1 report run from Infoview. When I run the report, I get this error: "Sop running this script? ... A script on this page is causing your web browser to run slowly. If it continues to run, your computer might become unresponsive." I say No twice to not stop running the script and then the report eventually displays.
    Is there something specific I should look for in my report which may be causing this?
    Thanks,
    John

    Hi John,
    Start by removing parts of the report to see what is causing the problem, Start with subreports and check the DB connection info if there is any.
    Verify the Report in the Designer also to confirm the connection info is correct.
    Don

  • Running scripts from web servers

    When connecting my new Ipod touch 5th generation to some wifi networks it doesn't run the scripts.. Is there anything else i need to do to get it,  to run on any open network scripts to get the logon page EX: (mcdonalds, starbucks), i can get on certain networks but there are still some that i can not get on. just need to know what i need to do or is there another update to fix this???

    Peter__Lawrey wrote:
    When any application starts another application (java or otherwise) it does so as the same user by default.
    The user running the JBoss is the user used.
    This is how all OSes work (to my knowledge)
    Which operating system are you using?Thanks, in that case I have a second question. Is there a way to force a certain user? I mean somebody other than the one who started the app server programmatically?

  • Running cgi script placed on one machine by a web server installed on anoth

    I have weblogic installed on machine 1 and
    CGI Script placed on another machine 2.
    Is it possible for Weblogic to service/run CGI Script placed on machine 2. If so how can we do it.

    Mah
    I don't know about Weblogic, but here is some code that POSTs to a CGI script (XXX.pl) with a few parameters and retrieves part of the result (and HTML table) in a large string.
    Maybe you could use this kind of thing:
    protected String getTable(String hostID, Interval interval) throws IOException{
    StringBuffer query=new StringBuffer(100);
    Socket s = new Socket("some.host.com",80);
    BufferedReader in = new BufferedReader
    (new InputStreamReader(s.getInputStream()));
    PrintWriter out= new PrintWriter(s.getOutputStream());
    Calendar c=Calendar.getInstance();
    c.setTime(interval.getStart());
    query.append("s%5fm="+MonthConverter.int2mmm(c.get(Calendar.MONTH)));
    query.append("&s%5fd="+c.get(Calendar.DAY_OF_MONTH));
    query.append("&byear="+c.get(Calendar.YEAR));
    query.append("&Report=Submit");
    out.print("POST /cgi-bin/XXX.pl?site="+hostID+" HTTP/1.0\n");
    out.print("Accept: text/html\n");
    out.print("User-Agent: yourapplicationname\n");
    out.print("From: myemail@myhost\n");
    out.print("Content-type: application/x-www-form-urlencoded\n");
    out.print("Content-length: "+query.length()+"\n\n");
    out.print(query.toString());
    out.flush();
    String line;
    boolean finished=false;
    boolean started=false;
    StringBuffer resultBuffer=new StringBuffer(1000);
    while ((line = in.readLine()) !=null
    && !finished) {
    if (line.indexOf("Tmin,Tmax and Precipitation amount")>-1)
    started=true;
    if (started)
    resultBuffer.append(line);
    if (line.indexOf("</HTML>")>0)
    finished=true;
    out.close();
    in.close();
    return resultBuffer.toString();

  • Cannot run calc script from Analyzer

    I just did an upgrade from 6.5 to 6.5.1 and I am unable to run one calc script on a particular database. I can run other calc scripts, just not this one. I get no error message or anything, I can keep clicking the calc button, but it does not run.Strangely, when I click the calc button, Analyzer puts a text file in the directory \\analyzer\appserver\bin with the user name (ex. gcrisci.txt) When you open this file, it is the calc script from Essbase I was attempting to run.I recall running into a problem like this in the past due to the size of the calc script. I thought the solution was to go into Analyzer.properties file and increase the MaxDataCellLimit values. The default is 50000, I've increased it up to 500000 with no resolution. So, I'm thinking maybe this isn't the fix.Does anyone know of a solution to this problem?Thank you.

    John,
    Here are the roles that i assigned my user and he can view/launch the calc scripts from Planning Web without actually being an admin( i think)
    Analytic Servers : server access
    Business Rules: Administrator
    Planning App : Interactive User
    APS : Provisioning Manager
    I would also like to conver the calc script to a BR as suggested, but not sure why i see no users available in the Business Rules-> administration tab.
    As indicated above, the use has been provisioned as a BR admin!
    Also, i tried refreshing the app with filters, refreshing the user list from BR->admin(right mouse), de-provision and re-provision the user! Any ideas??

  • The tool was unable to install Application Server Role, Web Server (IIS) Role.

    Hi,
    After running the prerequisiteinstaller.exe of SharePoint 2013 I am getting the below error in the logs
    The tool was unable to install Application Server Role, Web Server (IIS) Role.
    Web server role,application server role  is already there in the server.
    Ran the necessary power shell commands but still not able to proceed with this error.
    Please share your inputs to cross over this issue.
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    HI Sudheer,Please check the link below that explains the solution for the same issues.
    http://expertsharepoint.blogspot.de/2014/01/the-tool-was-unable-to-install.html
    Anil Avula[Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Prerequisiteinstaller.exe error - unable to install Application Server Role, Web Server (IIS) Role

    Windows Server 2012 R2 running on Hyper-V VM.  File services, App server & IIS roles installed
    SQL Server 2012 installed
    Tried:
    kb 2765260 method 1 which is kb 2771431 which ends with "not applicable to computer"
    kb 2765260 method 2 with no effect (this was power shell commands for PC's connected to the internet)
    One post suggested "aspnet_regii - enable -i" but my OS doesn't have aspnet_regii on it (not sure what that implies)
    One post suggested ServerManagerCmd.exe needed to be installed which sounds true as shown below (but where do I find this exe?)
    There are some errors in the log file,  I only included the portions where the errors are listed.  The initial lines are at the top of the log file, then I skipped to the section where the other errors were.  I can include the whole log if
    it becomes necessary.
    9:47:11 Processor architecture is (9)
    9:47:11 Reading the following string value/name...
    9:47:11 Common Startup
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    9:47:11 The value is...
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    9:47:11 Trying to remove the startup task if there is any.
    9:47:11 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    9:47:11 Error: Startup task doesn't exist. This is not a continuation after a restart.
    9:47:11 Locating the following command line arguments file:
    9:47:11 E:\PrerequisiteInstaller.Arguments.txt
    9:47:11 Error: This file does not exist
    9:47:11 Details of the current operating system:
    9:47:11 Check whether the following prerequisite is installed:
    9:47:11 Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    9:47:11 Reading the following DWORD value/name...
    9:47:11 IsInstalled
    9:47:11 from the following registry location...
    9:47:11 SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    9:47:17 Beginning download/installation
    9:47:17 Created thread for installer
    9:47:17 "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\1\PreE0DB.tmp.XML"
    9:47:17 Error: Unable to install (2)
    9:47:17 Error: [In HRESULT format] (-2147024894)
    9:47:17 Last return code (2)
    9:47:17 Reading the following DWORD value/name...
    9:47:17 Flags
    9:47:17 from the following registry location...
    9:47:17 SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    9:47:17 Reading the following string value/name...
    9:47:17 PendingFileRenameOperations
    9:47:17 from the following registry location...
    9:47:17 SYSTEM\CurrentControlSet\Control\Session Manager
    9:47:17 Reading the following registry location...
    9:47:17 SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    9:47:17 Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    9:47:17 Last return code (2)
    9:47:17 Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    9:47:17 Cannot retry
    I'm presuming the first 2 errors are OK and just indicate optional startup modes for prerequisiteinstaller.exe
    The 2nd set of errors seems more serious.  I don't see ServerManagerCmd.exe on my PC that's listed in the error
    I don't understand the last error which I'm supposing triggered the listed error even though there are other errors in the log.
    Many of the existing posts don't match the configuration I'm using, and the ones that do match didn't seem to provide a usable answer.  Any help is appreciated.  Do these problems exist using Sever 2012 Standard?  I will try that, but would
    like to resolve the issue here with R2.
    Thanks.
    Best Regards,
    Alan

    ServerManagerCMD.exe is a deprecated utility and (as far as I know) is only found on Server 2008 versions, so I'm surprised it's needed for the preinstaller.  Are you trying to install SharePoint 2010?
    Running this page through Google Translate should give you an clearer idea on getting this installed.
    http://blog.hand-net.com/sharepoint/2010-06-10-error-lors-de-linstallation-des-office-web-apps-2010-sur-windows-7.htm
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Error running ssodatax script for partner applications

    I am running the ssodatax script after creating a partner
    application using the user interface in the portal. I get the following
    error after the script starts running:
    SP2-0310: unable to open file "sso/ssoseedp.sql"
    Any thoughts will be appreciated.
    Thanks,
    Suzanne

    It appears that ssodatax in your environment is unable to find the script ssoseedp.sql. This script should be available in plsql/sso directory under the ORACLE_HOME. Please find the script ssodatax and look for the sso subdirectory within the directory that contains ssodatax. If you find ssoseedp.sql in sso, then you can try running ssodatax from the directory that contains it.

  • ERR  Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install

    ==============>deploy log information:
    2015-04-27_14-50-42:INFO:Install Args AGENT_PORT=3872
    2015-04-27_14-50-42:INFO:Action description 在主机 expquery03 上执行命令 /bin/sh -c '/u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM/agentDeploy.sh -ignorePrereqs ORACLE_HOSTNAME=expquery03 AGENT_BASE_DIR=/u01/app/agent_12c OMS_HOST=oragc12c.yto.net.cn EM_UPLOAD_PORT=4903 AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst b_doDiscovery=false b_startAgent=false b_forceInstCheck=true AGENT_PORT=3872'
    2015-04-27_14-50-42:INFO:Attempt :1 pty required false  with no inputs
    2015-04-27_15-11-47:INFO:/bin/sh -c '/u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM/agentDeploy.sh -ignorePrereqs ORACLE_HOSTNAME=expquery03 AGENT_BASE_DIR=/u01/app/agent_12c OMS_HOST=oragc12c.yto.net.cn EM_UPLOAD_PORT=4903 AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst b_doDiscovery=false b_startAgent=false b_forceInstCheck=true AGENT_PORT=3872' execution failed on host expquery03
    2015-04-27_15-11-47:INFO:Pattern ERROR: found in file /opt/app/oem12c/gc_inst/em/EMGC_OMS1/sysman/agentpush/2015-04-27_14-18-30-PM/logs/expquery03/install.log Line ERROR: Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install.
    2015-04-27_15-11-47:INFO:Error Message found  Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install.
    2015-04-27_15-11-47:INFO: ACTION 在主机 expquery03 上执行命令 /u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM/agentDeploy.sh -ignorePrereqs ORACLE_HOSTNAME=expquery03 AGENT_BASE_DIR=/u01/app/agent_12c OMS_HOST=oragc12c.yto.net.cn EM_UPLOAD_PORT=4903 AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst b_doDiscovery=false b_startAgent=false b_forceInstCheck=true AGENT_PORT=3872
    2015-04-27_15-11-47:INFO: OUT null
    2015-04-27_15-11-47:INFO: ERR  Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install.
    2015-04-27_15-11-47:INFO: EXIT CODE1
    2015-04-27_15-11-47:INFO:InvocationTargetException Exception
    2015-04-27_15-11-47:INFO:Printing Exception :java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at oracle.sysman.core.agentpush.ui.deployer.BaseDeployerOps.executeActions(BaseDeployerOps.java:1924)
            at oracle.sysman.core.agentpush.ui.deployer.NewAgentDeployer.deploy(NewAgentDeployer.java:59)
            at oracle.sysman.core.agentpush.ui.deployfwk.DeploymentWorker.run(DeploymentWorker.java:26)
            at oracle.sysman.util.threadPoolManager.WorkerThread.run(Worker.java:311)
    Caused by: CommandException: err:  Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install. out: null exitcode: 1
    stacktrace:
    null
            at oracle.sysman.core.agentpush.ui.deployer.DeployerOps.executeCommandOnNodeInteractive(DeployerOps.java:1204)
            at oracle.sysman.core.agentpush.ui.deployer.DeployerOps.executeCommandOnNodeInteractive(DeployerOps.java:1050)
            at oracle.sysman.core.agentpush.ui.deployer.DeployerOps.executeCmdOnNode(DeployerOps.java:644)
            at oracle.sysman.core.agentpush.ui.deployer.DeployerOps.executeCmdOnNode(DeployerOps.java:593)
            at oracle.sysman.core.agentpush.ui.deployer.BaseDeployerOps.doInstall(BaseDeployerOps.java:484)
    oem@oragc12c bin]$ more /u01/app/agent_12c/core/12.1.0.4.0/cfgtoollogs/agentDeploy/agentDeploy_2015-04-27_15-10-25-PM.log
    /u01/app/agent_12c/core/12.1.0.4.0/cfgtoollogs/agentDeploy/agentDeploy_2015-04-27_15-10-25-PM.log: No such file or directory
    [oem@oragc12c bin]$ more /opt/app/oem12c/gc_inst/em/EMGC_OMS1/sysman/agentpush/2015-04-27_14-18-30-PM/logs/expquery03/install.log
    -e Validating the OMS_HOST & EM_UPLOAD_PORT
    Executing command : /u01/app/agent_12c/core/12.1.0.4.0/jdk/bin/java -classpath /u01/app/agent_12c/core/12.1.0.4.0/jlib/agentInstaller.jar:/u01/app/agent_12c/core/12.1.0.4.0/oui/jlib/OraInstaller.jar oracle.s
    ysman.agent.installer.AgentInstaller /u01/app/agent_12c/core/12.1.0.4.0 /u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM /u01/app/agent_12c -prereq
    Validating oms host & port with url: http://oragc12c.yto.net.cn:4903/empbs/genwallet
    Validating oms host & port with url: https://oragc12c.yto.net.cn:4903/empbs/genwalletReturn status:3-oms https port is passedUnzipping the agentcoreimage.zip to /u01/app/agent_12c ....12.1.0.4.0_PluginsOneof
    fs_197.zip
    Executing command : /u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM/unzip -o /u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM/12.1.0.4.0_PluginsOneoffs_197.zip -d /u01/app/agent_12cExecuting command : /u01/
    app/agent_12c/core/12.1.0.4.0/jdk/bin/java  -d64 -classpath /u01/app/agent_12c/core/12.1.0.4.0/oui/jlib/OraInstaller.jar:/u01/app/agent_12c/core/12.1.0.4.0/oui/jlib/xmlparserv2.jar:/u01/app/agent_12c/core/12
    .1.0.4.0/oui/jlib/srvm.jar:/u01/app/agent_12c/core/12.1.0.4.0/oui/jlib/emCfg.jar:/u01/app/agent_12c/core/12.1.0.4.0/jlib/agentInstaller.jar:/u01/app/agent_12c/core/12.1.0.4.0/oui/jlib/share.jar oracle.sysman
    .agent.installer.AgentInstaller /u01/app/agent_12c/core/12.1.0.4.0 /u01/app/agent_12c/ADATMP_2015-04-27_14-18-30-PM /u01/app/agent_12c /u01/app/agent_12c/agent_inst AGENT_BASE_DIR=/u01/app/agent_12c
    Failed to read the inventory
    Failed to read the inventory=====================>but the inventory no problem
    Cloning the agent home...
    Executing command: /u01/app/agent_12c/core/12.1.0.4.0/oui/bin/runInstaller -debug -ignoreSysPrereqs   -clone -forceClone -silent -waitForCompletion -nowait ORACLE_HOME=/u01/app/agent_12c/core/12.1.0.4.0   AG
    ENT_BASE_DIR=/u01/app/agent_12c ORACLE_HOSTNAME=expquery03 AGENT_BASE_DIR=/u01/app/agent_12c OMS_HOST=oragc12c.yto.net.cn EM_UPLOAD_PORT=4903 AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst b_doDiscovery=f
    alse b_startAgent=false b_forceInstCheck=true AGENT_PORT=3872 -noconfig  ORACLE_HOME_NAME=agent12c1 -force b_noUpgrade=true
    ERROR: Agent Clone Failed SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install.
    Agent Deploy Log Location:/u01/app/agent_12c/core/12.1.0.4.0/cfgtoollogs/agentDeploy/agentDeploy_2015-04-27_15-10-25-PM.log
    ============>agent client privage and "/tmp" information  at hp-unix
    $ bdf
    Filesystem          kbytes    used   avail %used Mounted on
    /dev/vg00/lvol3    5242880  384784 4820160    7% /
    /dev/vg00/lvol1    1835008  376272 1447400   21% /stand
    /dev/vg00/lvol7    20971520 8977200 11902024   43% /var
    /dev/vg00/lvol9    7864320 3213136 4614904   41% /usr
    /dev/vg00/lvol6    85983232 63055260 21527575   75% /u01
    /dev/vg00/lvol5    10485760 2268216 8153768   22% /tmp===============>
    /dev/vg00/lvol8    10354688 6536024 3788952   63% /opt
    /dev/vg00/lvol4    52428800 13319488 38803816   26% /home
    $ ls -lt
    total 6
    drwxr-xr-x   2 oem        oinstall      1024 Apr 27 15:14 agent_12c
    drwxrwx---   5 grid       oinstall      1024 Apr 27 15:11 oraInventory
    drwxr-xr-x   3 oem        oinstall        96 Apr 22 16:16 agent
    drwxrwxr-x   8 grid       oinstall      1024 Apr 21 14:58 grid
    drwxrwxr-x   6 grid       oinstall        96 Aug  7  2013 oracle
    drwxr-xr-x   3 root       oinstall        96 Aug  2  2013 11.2.0
    $ cd oraInventory
    $ ls -lt
    total 44
    drwxrwx---   2 grid       oinstall     16384 Apr 27 15:10 logs
    drwxrwx---   3 grid       oinstall      2048 Apr 22 10:36 backup
    drwxrwx---   2 grid       oinstall      1024 Apr  3  2014 ContentsXML
    -rwxrwx---   1 grid       oinstall      1686 Aug  6  2013 orainstRoot.sh
    -rw-rw----   1 grid       oinstall        56 Aug  6  2013 oraInst.loc
    $ cd ContentsXML
    $ ls
    comps.xml      inventory.xml  libs.xml
    $ ls -lt
    total 6
    -rw-rw----   1 grid       oinstall       842 Apr 21 10:31 inventory.xml
    -rw-rw----   1 grid       oinstall       329 Apr 20 17:32 comps.xml
    -rw-rw----   1 grid       oinstall       292 Apr 20 17:32 libs.xml
    I view some oms document ,don't know the case

    agent client's apeloy log:
    $ more /u01/app/agent_12c/core/12.1.0.4.0/cfgtoollogs/agentDeploy/agentDeploy_2015-04-27_16-22-23-PM.log
    INFO: /u01/app/agent_12c/core/12.1.0.4.0
    INFO: /u01/app/agent_12c/ADATMP_2015-04-27_15-33-29-PM
    INFO: /u01/app/agent_12c
    INFO: /u01/app/agent_12c/agent_inst
    INFO: AGENT_BASE_DIR=/u01/app/agent_12c
    INFO: -ignorePrereqs
    INFO: ORACLE_HOSTNAME=expquery03
    INFO: AGENT_BASE_DIR=/u01/app/agent_12c
    INFO: OMS_HOST=oragc12c.yto.net.cn
    INFO: EM_UPLOAD_PORT=4903
    INFO: AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst
    INFO: b_doDiscovery=false
    INFO: b_startAgent=false
    INFO: b_forceInstCheck=true
    INFO: AGENT_PORT=3872
    INFO: AGENT_BASE_DIR=/u01/app/agent_12c
    INFO: ORACLE_HOSTNAME=expquery03
    INFO: AGENT_BASE_DIR=/u01/app/agent_12c
    INFO: OMS_HOST=oragc12c.yto.net.cn
    INFO: EM_UPLOAD_PORT=4903
    INFO: AGENT_INSTANCE_HOME=/u01/app/agent_12c/agent_inst
    INFO: b_doDiscovery=false
    INFO: b_startAgent=false
    INFO: b_forceInstCheck=true
    INFO: AGENT_PORT=3872
    INFO:  Setting the system property ORACLE_HOSTNAME to:expquery03
    INFO:  Setting the system property oracle.installer.oui_loc to:/u01/app/agent_12c/core/12.1.0.4.0/oui
    INFO: Agent Base Directory is : /u01/app/agent_12c
    INFO: Agent Home is : /u01/app/agent_12c/core/12.1.0.4.0
    INFO: Sbin Home is : /u01/app/agent_12c/sbin
    INFO: Logs Location is : /u01/app/agent_12c/core/12.1.0.4.0/cfgtoollogs/agentDeploy
    SEVERE: User has specified -ignorePrereqs when invoking the installer.  All pre-requisite checks will be ignored for this installation session.  Configuration failures may result if proper pre-requisites are
    not satisfied.
    INFO:
    Setting system property CUSTOM_INVENTORY to /u01/app/oraInventory
    INFO: Clone start time:2015-04-27_16-22-24-PM
    INFO: Executing command: /u01/app/agent_12c/core/12.1.0.4.0/oui/bin/runInstaller -debug -ignoreSysPrereqs   -clone -forceClone -silent -waitForCompletion -nowait ORACLE_HOME=/u01/app/agent_12c/core/12.1.0.4.
    0   -noconfig  ORACLE_HOME_NAME=agent12c1 -force
    INFO: Starting Oracle Universal Installer...
    INFO:
    INFO: Checking swap space: must be greater than 500 MB.   Actual 61440 MB    Passed
    INFO: Preparing to launch Oracle Universal Installer from /tmp/OraInstall2015-04-27_04-22-24PM. Please wait ...Oracle Universal Installer, Version 11.1.0.12.0 Production
    INFO: Copyright (C) 1999, 2014, Oracle. All rights reserved.
    INFO:
    INFO: org.xml.sax.SAXParseException: <Line 1, Column 38>: XML-20100: (Fatal Error) Expected '?>'.
    INFO:   at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
    INFO:   at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
    INFO:   at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:345)
    INFO:   at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:307)
    INFO:   at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:212)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallXMLReader.readHomes(OiiiInstallXMLReader.java:150)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallXMLReader.readHomes(OiiiInstallXMLReader.java:88)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallInventory.readHomes(OiiiInstallInventory.java:708)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.loadPartialInstallInv(OiiiInstallAreaControl.java:766)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initInstallInv(OiiiInstallAreaControl.java:811)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.loadInstallInventory(OiiiInstallAreaControl.java:582)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1965)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1929)
    INFO:   at oracle.sysman.oii.oiic.OiicCloneSession.setAreaControls(OiicCloneSession.java:1309)
    INFO:   at oracle.sysman.oii.oiic.OiicCloneSession.<init>(OiicCloneSession.java:932)
    INFO:   at oracle.sysman.oii.oiic.OiicSessionWrapper.createNewSession(OiicSessionWrapper.java:878)
    INFO:   at oracle.sysman.oii.oiic.OiicSessionWrapper.<init>(OiicSessionWrapper.java:189)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.init(OiicInstaller.java:511)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:967)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:905)
    INFO: org.xml.sax.SAXParseException: <Line 1, Column 38>: XML-20100: (Fatal Error) Expected '?>'.
    INFO:   at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
    INFO:   at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
    INFO:   at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:345)
    INFO:   at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:307)
    INFO:   at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:212)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallXMLReader.readHomes(OiiiInstallXMLReader.java:150)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallXMLReader.readHomes(OiiiInstallXMLReader.java:88)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallInventory.readHomes(OiiiInstallInventory.java:708)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.loadPartialInstallInv(OiiiInstallAreaControl.java:766)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initInstallInv(OiiiInstallAreaControl.java:811)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.loadInstallInventory(OiiiInstallAreaControl.java:582)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1965)
    INFO:   at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1929)
    INFO:   at oracle.sysman.oii.oiic.OiicCloneSession.setAreaControls(OiicCloneSession.java:1309)
    INFO:   at oracle.sysman.oii.oiic.OiicCloneSession.<init>(OiicCloneSession.java:932)
    INFO:   at oracle.sysman.oii.oiic.OiicSessionWrapper.createNewSession(OiicSessionWrapper.java:878)
    INFO:   at oracle.sysman.oii.oiic.OiicSessionWrapper.<init>(OiicSessionWrapper.java:189)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.init(OiicInstaller.java:511)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:967)
    INFO:   at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:905)
    INFO: OUI-10053:Unable to generate temporary script: /tmp/orainstRoot.sh. Unable to continue install.
    INFO: SEVERE:OUI-10053:Unable to generate temporary script: {0}. Unable to continue install.
    INFO: Plugin homes:
    INFO:
    INFO: LD_LIBRARY_PATH environment variable :
    INFO: -------------------------------------------------------
    INFO: Total args: 42
    INFO: Command line argument array elements ...
    INFO: Arg:0:/tmp/OraInstall2015-04-27_04-22-24PM/jre/bin/java:
    INFO: Arg:1:-Doracle.installer.library_loc=/tmp/OraInstall2015-04-27_04-22-24PM/oui/lib/hpia64:
    INFO: Arg:2:-Doracle.installer.oui_loc=/tmp/OraInstall2015-04-27_04-22-24PM/oui:
    INFO: Arg:3:-Doracle.installer.bootstrap=TRUE:
    INFO: Arg:4:-Doracle.installer.startup_location=/u01/app/agent_12c/core/12.1.0.4.0/oui/bin:
    INFO: Arg:5:-Doracle.installer.jre_loc=../../jre:
    INFO: Arg:6:-Doracle.installer.nlsEnabled="TRUE":
    INFO: Arg:7:-Doracle.installer.prereqConfigLoc= :
    INFO: Arg:8:-Doracle.installer.unixVersion=B.11.31:
    INFO: Arg:9:-d64:
    INFO: Arg:10:-mx96m:

Maybe you are looking for