Why execute commands in console failed?

Hello Sir:
I want to run some commnads in console from Java Application, but I can only run simple one such as notepad etc, I cannot execute java and other commands such as dir or path etc,
see code below,
can somebody here help what is wrong here??
public class RuntimeGetRuntime {
       public static void main(String args[]) {
            Runtime r = Runtime.getRuntime();
            Process p = null;
            String cmd1[] = { "notepad", "src/aaa/ReadFile.java" };
            String cmd2[] = { "java", "-version" };
            String cmd3[] = { "cmd /c  java", "bin.aaa.ReadFile" };
            String cmd[] = { "path" };
            try {
                p = r.exec(cmd);
                System.out.println("Test aaaaa");
            } catch (Exception e) {
                System.out.println("error executing " + cmd[0]);
          }here only cmd1 ok, all others failed.
Why??
Thanks in advance

probably because only the one is something within the path?
maybe put the full path to java.exe?

Similar Messages

  • FRM-99999 FAILED TO EXECUTE COMMAND IEXPLORE

    Hi there,
    When I attempt to call the report from my forms (from the browser using IE4), an error message was returned:
    FRM-99999: Failed to execute command.
    Command=iexplore http://<webserver>:89/sdq.pdf
    FULL Details: CreateProcess:iexplore http://<webserver>:89/sdq.pdf error=0
    Few users experienced this problem when using IE4, some do not have this problem.
    For users using Netscape 4.7 and above, so far have not encountered this problem.
    I am using
    Developer 6.0 Patch 7
    OAS 4.0.8.1
    Please help. Thanks.

    My remark regarding "PeymentMethodCode" was but a rant, heartfelt though it be. I mean those gits have left bloody spelling errors in their XML-Schemas -- talk about professionalism, talk about seriousness, talk about something you actually have to PAY for.
    Note also that BOTH spellings are used: the correct one (with an "a"), below the "BPPaymentMethods" element, and the wrong one below the "BusinessPartners" element.
    I don't know why you get that error. As told, the errorcode in the response seems to indicate that the "Object isn't supported".
    If you tried with the default sample provided in the doc, that would be quite unlikely.
    Dunno, really. Maybe you're lacking permissions?

  • Execute command fails

    Hi All,
    I am facing a weird problem with the Runtime.exec command. I am trying to run a simple Linux command from within Java. But i noticed that commands gets stuck if i run it on a file larger than 2K! If I run the same command on the linux shell it does not fail and it does not get stuck. it ends within less than a second.
    Since I do not want my program to get stuck, I used some code someone published (cannot remember who... but thanks :)) which kills the process after some timeout time. But I still failed to understand why the command gets stuck. Its definitely has to do with file size, since if i take the same file and remove some lines from it, the program does not get stuck. Again running the same command on linux shell does not get stuck and finishes very fast.
    Here's the simplified version of my code,
    import java.io.BufferedInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Timer;
    import java.util.TimerTask;
    import java.util.concurrent.TimeoutException;
    import java.io.DataInputStream;
    * Execute command from the Runtime. This class will make sure the external application will not hung the application by specifying
    * a timeout in which the application must return. If it does not an InterruptedException will be thrown
    class JPT_RuntimeExecutor
         private long timeout = Long.MAX_VALUE;
          * Default constructor - Timeout set to Long.MAX_VALUE
         public JPT_RuntimeExecutor()
         // Do nothing
          * Constructor
          * @param timeout Set the timeout for the external application to run
         public JPT_RuntimeExecutor(long timeout)
              this.timeout = timeout;
          Execute a Runtime process
         * @param command - The command to execute
         * @param env - Environment variables to put in the Runtime process
         * @return The output from the process
         * @throws IOException
         * @throws TimeoutException - Process timed out and did not return in the specified amount of time
         public InputStream execute(String command, String[] env) throws IOException, TimeoutException
              Process p = Runtime.getRuntime().exec(command, env);
              boolean status = true;
              // Set a timer to interrupt the process if it does not return within the timeout period
              Timer timer = new Timer();
              timer.schedule(new InterruptScheduler(Thread.currentThread()), this.timeout);
              try
                   p.waitFor();
              } catch (InterruptedException e)
                   // Stop the process from running
                   p.destroy();
                   status = false;
                   throw new TimeoutException(command + "did not return after "+this.timeout+" milliseconds");
              finally
                   // Stop the timer
                   timer.cancel();          
              // Get the output from the external application
              StringBuilder buffer = new StringBuilder();
              BufferedInputStream br = new BufferedInputStream(p.getInputStream());
              while (br.available() != 0)
                   buffer.append((char) br.read());
              String res = buffer.toString().trim();
              if ( status )
                   return p.getInputStream();
              return null;
         private class InterruptScheduler extends TimerTask
              Thread target = null;
              public InterruptScheduler(Thread target)
                   this.target = target;
              public void run()
                   target.interrupt();
      public static void main(String[] args)
          try
              String cmd = "dot -Tplain " + args[0];
              System.out.println( " cmd = " + cmd );
                 JPT_RuntimeExecutor m_process = new JPT_RuntimeExecutor(5000*3);
                 DataInputStream tmpStreamReader = null;
                 try
                      tmpStreamReader =  new DataInputStream( m_process.execute(cmd, null ));
                 } catch (IOException e)
                      e.printStackTrace();
                      return;
                 } catch (TimeoutException e)
                      e.printStackTrace();
                      return ;
                  System.out.println( "END");
          catch ( Exception e )
                      e.printStackTrace();
                      return ;
            return;
    }Here's a sample of the input file I give which gets stuck ( in case you want to run it :))
    digraph koko{
    label="PT=result\nFILE=BottomWindowPathSearch#1Transitive49211"
    27 [label="START\nAC=4363", color=blue]
    29 [label="END\nAC=4363", color=blue]
    69 [label="UOP\nAC=4363", color=black]
    71 [label="ALLOCATE\nAC=3780", color=black]
    73 [label="EXECUTE\nAC=2995", color=black]
    75 [label="RETIRE\nAC=3286", color=black]
    860 [label="alstall_jeclearing\nAC=56", color=black]
    869 [label="JECLEAR\nAC=56", color=black]
    69 -> 29 [label="PRB=0.221\nAC=963", color=blue]
    71 -> 29 [label="PRB=0.053\nAC=202", color=blue]
    73 -> 29 [label="PRB=0.029\nAC=87", color=blue]
    75 -> 29 [label="PRB=0.963\nAC=3111", color=blue]
    73 -> 75 [label="PRB=0.96\nDUR=10/124/1620\nAC=2876", color=black]
    71 -> 73 [label="PRB=0.778\nDUR=8/91/1628\nAC=2983", color=black]
    75 -> 71 [label="PRB=0.031\nDUR=2/300/1414\nAC=99", color=black]
    71 -> 75 [label="PRB=0.088\nDUR=10/59/1246\nAC=339", color=black]
    860 -> 71 [label="PRB=0.732\nDUR=24/30/36\nAC=41", color=black]
    71 -> 860 [label="PRB=0.01\nDUR=4/87/1100\nAC=40", color=black]
    71 -> 71 [label="PRB=0.055\nDUR=4/109/1044\nREP=1.02\nAC=205*1.02", color=black]
    73 -> 860 [label="PRB=0.002\nDUR=16/20/22\nAC=5", color=black]
    75 -> 75 [label="PRB=0.004\nDUR=4/189/920\nAC=14", color=black]
    73 -> 71 [label="PRB=0.006\nDUR=4/144/708\nAC=18", color=black]
    73 -> 73 [label="PRB=0.003\nDUR=2/196/568\nAC=9", color=black]
    75 -> 73 [label="PRB=0.001\nDUR=6/12/18\nAC=2", color=black]
    75 -> 860 [label="PRB=0.002\nDUR=2/46/170\nAC=6", color=black]
    860 -> 75 [label="PRB=0.018\nDUR=2\nAC=1", color=black]
    869 -> 75 [label="PRB=1\nDUR=18/83/982\nAC=56", color=black]
    71 -> 869 [label="PRB=0.015\nDUR=20/109/1628\nAC=56", color=black]
    860 -> 73 [label="PRB=0.018\nDUR=24\nAC=1", color=black]
    69 -> 71 [label="PRB=0.778\nDUR=2/117/1502\nAC=3395", color=black]
    27 -> 69 [label="PRB=0.996\nDUR=430/20932/38130\nAC=4345", color=blue]
    860 -> 69 [label="PRB=0.232\nDUR=10/19/30\nAC=13", color=black]
    69 -> 860 [label="PRB=0.001\nDUR=26/50/82\nAC=5", color=black]
    71 -> 69 [label="PRB=0.001\nDUR=2/7/14\nAC=5", color=black]
    27 -> 71 [label="PRB=0.004\nDUR=584/13675/37096\nAC=18", color=blue]
    If you remove about 8 lines it will not get stuck!
    Hope someone can help me figure out why this is happenning
    thanks
    eman

    Thanks ... somehow I missed this issue..
    The article you sent was really helpful :) recommended for every one
    Here's the code if anyone ever needs it... it runs with timeout so that the program does not get stuck
    Enjoy
    import java.io.BufferedInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Timer;
    import java.util.TimerTask;
    import java.util.concurrent.TimeoutException;
    import java.io.DataInputStream;
    import java.io.*;
    * Execute command from the Runtime. This class will make sure the external application will not hung the application by specifying
    * a timeout in which the application must return. If it does not an InterruptedException will be thrown
    class JPT_RuntimeExecutor
         private long timeout = Long.MAX_VALUE;
          * Default constructor - Timeout set to Long.MAX_VALUE
         public JPT_RuntimeExecutor()
         // Do nothing
          * Constructor
          * @param timeout Set the timeout for the external application to run
         public JPT_RuntimeExecutor(long timeout)
              this.timeout = timeout*3;
          Execute a Runtime process
         * @param command - The command to execute
         * @param env - Environment variables to put in the Runtime process
         * @return The output from the process
         * @throws IOException
         * @throws TimeoutException - Process timed out and did not return in the specified amount of time
         public InputStream execute(String command, String[] env , String outfileName) throws IOException, TimeoutException
              Process proc = Runtime.getRuntime().exec(command, env);
              boolean status = true;
              // Set a timer to interrupt the process if it does not return within the timeout period
              Timer timer = new Timer();
              timer.schedule(new InterruptScheduler(Thread.currentThread()), this.timeout);
        FileOutputStream fos = new FileOutputStream( outfileName );
        // any error message?
        StreamGobbler errorGobbler = new
        StreamGobbler(proc.getErrorStream(), "ERROR");           
        // any output?
        StreamGobbler outputGobbler = new
        StreamGobbler(proc.getInputStream(), "OUTPUT", fos);
        // kick them off
        errorGobbler.start();
        outputGobbler.start();
              try
          int exitVal = proc.waitFor();
          System.out.println("ExitValue: " + exitVal);
          fos.flush();
          fos.close();       
              } catch (InterruptedException e)
                   // Stop the process from running
                   proc.destroy();
                   status = false;
                   throw new TimeoutException(command + "did not return after "+this.timeout+" milliseconds");
              finally
                   // Stop the timer
                   timer.cancel();          
           BufferedReader in = null;
              try
                in = new BufferedReader(new FileReader( outfileName ));
              catch ( Exception e)
                System.out.println( " Could not open file" + outfileName + "!!!");
              System.out.println( "Start reading output " );
              System.out.println( " ============================== " );
              String input = null ;
              try
                 while ( (input= in.readLine() ) != null )
                    System.out.println( input );
              catch ( Exception e)
                System.out.println( " Could not read line !!!");
              return null;
         class StreamGobbler extends Thread
        InputStream is;
        String type;
        OutputStream os;
        StreamGobbler(InputStream is, String type)
            this(is, type, null);
        StreamGobbler(InputStream is, String type, OutputStream redirect)
            this.is = is;
            this.type = type;
            this.os = redirect;
        public void run()
            try
                PrintWriter pw = null;
                if (os != null)
                    pw = new PrintWriter(os);
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line=null;
                while ( (line = br.readLine()) != null)
                    if (pw != null)
                        pw.println(line);
                    else
                      System.out.println(type + ">" + line);   
                if (pw != null)
                    pw.flush();
            } catch (IOException ioe)
                ioe.printStackTrace(); 
         private class InterruptScheduler extends TimerTask
              Thread target = null;
              public InterruptScheduler(Thread target)
                   this.target = target;
              public void run()
                   target.interrupt();
      public static void main(String[] args)
          try
              String cmd = "dot -Tplain " + args[0];
              System.out.println( " cmd = " + cmd );
                 JPT_RuntimeExecutor m_process = new JPT_RuntimeExecutor(5000);
                 DataInputStream tmpStreamReader = null;
                 try
                      tmpStreamReader =  new DataInputStream( m_process.execute(cmd, null , args[1] ));
                 } catch (IOException e)
                      e.printStackTrace();
                      return;
                 } catch (TimeoutException e)
                      e.printStackTrace();
                      return ;
                     System.out.println( "END");
          catch ( Exception e )
                      e.printStackTrace();
                      return ;
            return;
    }

  • BAM Deployment error - Microsoft.BizTalk.Bam.Management.BamManagerException: The BAM deployment failed. --- Microsoft.BizTalk.Bam.Management.BamManagerException: Encountered error while executing command on SQL Server "ServerName".

    HI,
    I am getting below error while deploying BAM activity ...Pls help me resolve this issue.
    Microsoft.BizTalk.Bam.Management.BamManagerException: The BAM deployment failed. ---> Microsoft.BizTalk.Bam.Management.BamManagerException: Encountered error while executing command on SQL Server
    "ServerName". ---> System.Data.SqlClient.SqlException: An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or
    [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed.
    Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias
    to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An
    object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column
    name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing
    or empty. For SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For
    SELECT INTO statements, verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements,
    verify each column has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column
    has a name. For other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For
    other statements, look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.An object or column name is missing or empty. For SELECT INTO statements, verify each column has a name. For other statements,
    look for empty alias names. Aliases defined as "" or [] are not allowed. Change the alias to a valid name.   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) 
     at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock,
    Boolean asyncClose)   at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)   at
    System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)   at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean
    sendToPipe, Int32 timeout, Boolean asyncWrite)   at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()   at Microsoft.BizTalk.Bam.Management.SqlHelper.ExecuteBatches(String cmdText)   at Microsoft.BizTalk.Bam.Management.SqlHelper.ExecuteNonQuery(String
    cmdText, CommandType cmdType, Boolean inTransaction, Transaction transaction)   --- End of inner exception stack trace ---   at Microsoft.BizTalk.Bam.Management.SqlHelper.ExecuteNonQuery(String cmdText, CommandType cmdType, Boolean inTransaction,
    Transaction transaction)   at Microsoft.BizTalk.Bam.Management.ViewModule.Create(XmlDocument defXmlDoc)   at Microsoft.BizTalk.Bam.Management.WorkerModule.DispatchOperation(OperationType operation, XmlDocument defXmlDoc)   at
    Microsoft.BizTalk.Bam.Management.BamManager.ProcessOneBamArtifactType(BamArtifactType bamArtifact, OperationType operation)   at Microsoft.BizTalk.Bam.Management.BamManager.ManageInfrastructure(OperationType operation)   at Microsoft.BizTalk.Bam.Management.BamManager.Deploy() 
     --- End of inner exception stack trace ---   at Microsoft.BizTalk.Bam.Management.BamManager.Deploy()   at Microsoft.BizTalk.Bam.Management.BamManagementUtility.BamManagementUtility.HandleDeployAll()   at Microsoft.BizTalk.Bam.Management.BamManagementUtility.BamManagementUtility.DispatchCommand() 
     at Microsoft.BizTalk.Bam.Management.BamManagementUtility.BamManagementUtility.Run()   at Microsoft.BizTalk.Bam.Management.BamManagementUtility.BamManagementUtility.Main(String[] args)

    Your View Name, OLAP Cube Name and certain other restrictions listed @http://msdn.microsoft.com/en-us/library/aa561577.aspx
    Please review your BAM Definitons.
    Regards.

  • XP to windows7: Executing command line: "bcdedit.exe". CreateProcess failed. Code(0x80070002)

    I m working to migrate from XP SP3 to Windows 7 using SCCM 2012 R2 CU4 but I have a boot error similar as above. Normally with CU4, XP will be supported by WInPE 5.1 (ADK 8.1). it's a refresh scenario, the task sequence was launched from XP. USMT will
    use a local store.
    The smsts log has a content as follow:
    [Successfully completed the action (Restart Computer in WinPE) with the exit win32 code 0]LOG]!><time="10:18:00.843+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740"
    file="instruction.cxx:830">
    <![LOG[Set authenticator in transport]LOG]!><time="10:18:00.859+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="libsmsmessaging.cpp:7734">
    <![LOG[Set a global environment variable _SMSTSLastActionRetCode=0]LOG]!><time="10:18:01.156+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:668">
    <![LOG[Set a global environment variable _SMSTSLastActionSucceeded=true]LOG]!><time="10:18:01.156+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:668">
    <![LOG[Clear local default environment]LOG]!><time="10:18:01.156+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:807">
    <![LOG[Updated security on object C:\_SMSTaskSequence.]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="utils.cpp:1704">
    <![LOG[Set a global environment variable _SMSTSNextInstructionPointer=2]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSNextInstructionPointer=2]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:386">
    <![LOG[Set a global environment variable _SMSTSInstructionStackString=0]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:668">
    <![LOG[Set a TS execution environment variable _SMSTSInstructionStackString=0]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:414">
    <![LOG[Save the current environment block]LOG]!><time="10:18:01.218+240" date="02-26-2015" component="TSManager" context="" type="0" thread="1740" file="executionenv.cxx:833">
    <![LOG[Executing command line: "bcdedit.exe"]LOG]!><time="10:18:01.234+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="commandline.cpp:827">
    <![LOG[CreateProcess failed. Code(0x80070002)]LOG]!><time="10:18:01.234+240" date="02-26-2015" component="TSManager" context="" type="3"
    thread="1740" file="commandline.cpp:1018">
    <![LOG[Command line execution failed (80070002)]LOG]!><time="10:18:01.234+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="commandline.cpp:1245">
    <![LOG[Staging boot image P0100002]LOG]!><time="10:18:01.250+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootimage.cpp:717">
    <![LOG[ResolveSource flags: 0x00000000]LOG]!><time="10:18:01.500+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="resolvesource.cpp:3201">
    <![LOG[SMSTSPersistContent: . The content for package PO100002 will be persisted]LOG]!><time="10:18:01.500+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740"
    file="resolvesource.cpp:3212">
    <![LOG[Locations: Multicast = 0, HTTP = 1, SMB = 0.]LOG]!><time="10:18:01.500+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="resolvesource.cpp:2749">
    <![LOG[Multicast is not enabled for the package.]LOG]!><time="10:18:01.500+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="resolvesource.cpp:2789">
    <![LOG[Trying
    http://sccmsrv.contoso.com:80/SMS_DP_SMSPKG$/P0100002/sccm?/boot.PO100002.wim to C:\_SMSTaskSequence\Packages\PO100002\boot.PO100002.wim ]LOG]!><time="10:18:18.265+240" date="02-26-2015" component="TSManager" context=""
    type="1" thread="1740" file="downloadcontent.cpp:1592">
    <![LOG[VerifyContentHash: Hash algorithm is 32780]LOG]!><time="10:18:18.265+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="downloadcontent.cpp:1870">
    <![LOG[Found boot image C:\_SMSTaskSequence\Packages\PO100002\boot.PO100002.wim]LOG]!><time="10:18:22.156+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740"
    file="bootimage.cpp:1115">
    <![LOG[Copying boot image locally...]LOG]!><time="10:18:22.156+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootimage.cpp:745">
    <![LOG[ADK installation root registry value not found.]LOG]!><time="10:18:30.125+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="wimfile.cpp:207">
    <![LOG[Loaded C:\Program Files\Windows Imaging\wimgapi.dll]LOG]!><time="10:18:30.171+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="wimfile.cpp:344">
    <![LOG[Opening image file C:\_SMSTaskSequence\WinPE\sources\boot.wim]LOG]!><time="10:18:30.171+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="wimfile.cpp:422">
    <![LOG[Applying image 1 to volume C:\_SMSTaskSequence\WinPE]LOG]!><time="10:18:30.296+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="wimfile.cpp:613">
    <![LOG[Closing image file C:\_SMSTaskSequence\WinPE\sources\boot.wim]LOG]!><time="10:18:32.906+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="wimfile.cpp:458">
    <![LOG[Capturing WinPE bootstrap settings]LOG]!><time="10:18:32.921+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="winpesettings.cpp:80">
    <![LOG[Environment scope successfully created: Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="10:18:32.921+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740"
    file="environmentscope.cpp:623">
    <![LOG[Executing command line: "osdnetsettings.exe" capture adapters:true scope:Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="10:18:32.921+240" date="02-26-2015" component="TSManager" context=""
    type="1" thread="1740" file="commandline.cpp:827">
    <![LOG[==============================[ OSDNetSettings.exe ]===========================]LOG]!><time="10:18:33.343+240" date="02-26-2015" component="OSDNetSettings" context="" type="1" thread="3644"
    file="main.cpp:134">
    <![LOG[Command line: "osdnetsettings.exe" capture adapters:true scope:Global\{E7E5BB69-6198-4555-B5CA-6C46A2B5EB78}]LOG]!><time="10:18:33.343+240" date="02-26-2015" component="OSDNetSettings" context=""
    type="1" thread="3644" file="main.cpp:135">
    <![LOG[No adapters found with non-empty DNSDomainSuffixSearchOrder]LOG]!><time="10:18:33.484+240" date="02-26-2015" component="OSDNetSettings" context="" type="0" thread="3644" file="netwmiadapterconfig.cpp:408">
    <![LOG[Captured settings for adapter 1]LOG]!><time="10:18:34.875+240" date="02-26-2015" component="OSDNetSettings" context="" type="1" thread="3644" file="netsettings.cpp:99">
    <![LOG[OSDNetSettings finished: 0x00000000]LOG]!><time="10:18:34.875+240" date="02-26-2015" component="OSDNetSettings" context="" type="1" thread="3644" file="main.cpp:192">
    <![LOG[Process completed with exit code 0]LOG]!><time="10:18:34.875+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="commandline.cpp:1123">
    <![LOG[Installing boot image to hard drive]LOG]!><time="10:18:34.906+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootimage.cpp:622">
    <![LOG[Backing up existing boot system before trying to set up new boot system]LOG]!><time="10:18:34.906+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740"
    file="bootimage.cpp:645">
    <![LOG[BootLoader::backup: C:\, C:\_SMSTaskSequence\backup]LOG]!><time="10:18:35.109+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootloader.cpp:85">
    <![LOG[BootLoader::restore: C:\_SMSTaskSequence\WinPE, C:\]LOG]!><time="10:18:41.187+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootloader.cpp:382">
    <![LOG[Saving bcd store to C:\_SMSTaskSequence\WinPE\boot\BCD]LOG]!><time="10:18:41.734+240" date="02-26-2015" component="TSManager" context="" type="1" thread="1740" file="bootconfigimplbcd.cpp:703">
    <![LOG[Executing command line: "C:\_SMSTaskSequence\WinPE\windows\system32\bootsect.exe" /NT60 SYS /MBR]LOG]!><time="10:18:42.500+240" date="02-26-2015" component="TSManager" context="" type="1"
    thread="1740" file="commandline.cpp:827">
    <![LOG[CreateProcess failed. Code(0x800700C1)]LOG]!><time="10:18:42.500+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="commandline.cpp:1018">
    <![LOG[Command line execution failed (800700C1)]LOG]!><time="10:18:42.500+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="commandline.cpp:1245">
    <![LOG[Failed to install boot image.
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="bootimage.cpp:682">
    <![LOG[Failed to install boot image PO100002.
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="engine.cxx:840">
    <![LOG[Failed to reboot the system. Error 0x(800700c1)]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="engine.cxx:953">
    <![LOG[Failed to initialize a system reboot.
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="engine.cxx:577">
    <![LOG[Fatal error is returned in check for reboot request of the action (Restart Computer in WinPE).
    Unknown error (Error: 800700C1; Source: Unknown)]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="engine.cxx:273">
    <![LOG[An error (0x800700c1) is encountered in execution of the task sequence]LOG]!><time="10:18:42.515+240" date="02-26-2015" component="TSManager" context="" type="3" thread="1740" file="engine.cxx:348">
    Thank
    Lourh

    I'm not entirely sure if this was fixed in the newer CUs, but have you seen this thread?
    https://social.technet.microsoft.com/Forums/en-US/041975df-a8a8-48cb-8d9f-0446c35210fe/sccm-2012-r2-boot-image-wont-load-in-windows-xp?forum=configmanagerosd
    It offers a couple of alternatives too (i.e., http://davejaskie.com/2014/04/03/installing-a-legacy-boot-image-in-sccm-to-support-xp-migrations/)
    Fausto

  • Weblogic admin console fails to start when commons logging is used.

    I have an application that requires commons logging.
    I followed the instructions as per the documentation and other forum entries such as How to use log4j into weblogic 10.3 to add the commons logging jar from apache and the weblogic jar specified. Plus I set the system property for the LogFactory.
    When I start up the application server I see messages as expected from my application. But when I start up the weblogic Admin console I get and exception and the console fails to start. I even tried to put the jars in my applicaiton instead of the domain/lib directory to try to iscolate the issue but still got issues with starting the Console.
    Any ideas on why this is occuring?
    See the error below:
    ####<May 19, 2010 4:16:04 PM EDT> <Notice> <Stdout> <TE001XU-CATOR1> <AdminServer> <Check Retention Schedule Setting> <<WLS Kernel>> <> <> <1274300164672> <BEA-000000> <----------------------------------------Retention Init()---------------------------------------->
    ####<May 19, 2010 4:16:04 PM EDT> <Notice> <Stdout> <TE001XU-CATOR1> <AdminServer> <Check Retention Schedule Setting> <<WLS Kernel>> <> <> <1274300164672> <BEA-000000> <Thu May 20 05:00:00 EDT 2010>
    ####<May 19, 2010 4:16:06 PM EDT> <Info> <Health> <TE001XU-CATOR1> <AdminServer> <weblogic.GCMonitor> <<anonymous>> <> <> <1274300166060> <BEA-310002> <81% of the total memory in the server is free>
    ####<May 19, 2010 4:35:03 PM EDT> <Info> <WorkManager> <TE001XU-CATOR1> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1274301303146> <BEA-002901> <Creating WorkManager "consoleWorkManager" for module "null" and application "consoleapp">
    ####<May 19, 2010 4:35:17 PM EDT> <Error> <HTTP> <TE001XU-CATOR1> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1274301317582> <BEA-101216> <Servlet: "AppManagerServlet" failed to preload on startup in Web application: "console".
    java.lang.ExceptionInInitializerError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:247)
    at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:44)
    at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:98)
    at weblogic.servlet.AsyncInitServlet.init(AsyncInitServlet.java:78)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:531)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1915)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1889)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1807)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3045)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1397)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:460)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:54)
    at weblogic.application.internal.BackgroundDeploymentService$2.next(BackgroundDeploymentService.java:373)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.BackgroundDeploymentService$BackgroundDeployAction.run(BackgroundDeploymentService.java:277)
    at weblogic.application.internal.BackgroundDeploymentService$OnDemandBackgroundDeployAction.run(BackgroundDeploymentService.java:336)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: org.apache.commons.logging.LogConfigurationException: The chosen LogFactory implementation does not extend LogFactory. Please check your configuration. (Caused by java.lang.ClassCastException: weblogic.logging.commons.LogFactoryImpl cannot be cast to org.apache.commons.logging.LogFactory)
    at org.apache.commons.logging.LogFactory$2.run(LogFactory.java:574)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.commons.logging.LogFactory.newFactory(LogFactory.java:517)
    at org.apache.commons.logging.LogFactory.getFactory(LogFactory.java:254)
    at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:351)
    at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.<clinit>(MBeanUtilsInitSingleFileServlet.java:23)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:247)
    at weblogic.servlet.AsyncInitServlet.createDelegate(AsyncInitServlet.java:44)
    at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:98)
    at weblogic.servlet.AsyncInitServlet.init(AsyncInitServlet.java:78)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:531)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1915)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1889)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1807)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3045)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1397)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:460)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:54)
    at weblogic.application.internal.BackgroundDeploymentService$2.next(BackgroundDeploymentService.java:373)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
    at weblogic.application.internal.BackgroundDeploymentService$BackgroundDeployAction.run(BackgroundDeploymentService.java:277)
    at weblogic.application.internal.BackgroundDeploymentService$OnDemandBackgroundDeployAction.run(BackgroundDeploymentService.java:336)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Thank you for replying. Yes that is the first place we looked and tried. Actually to be more specific we followed the instrcutions under: "How to Use the Commons API with WebLogic Logging Services" of the same link.
    Are you thinking that maybe we are we missing a step somewhere else within the site?
    Not sure if I was clear before but we are using Weblogic 10.3 and also tried up to version 10.3.3. And we get the same results.
    We prefer to use the method with commons logging for our application.
    One more specific here what we did on our last attempt.
    1. added this to the startWeblogic script JAVAOPTIONS -Dorg.apache.commons.logging.LogFactory=weblogic.logging.commons.LogFactoryImpl
    2. we put the WebLogic-specific Commons classes, $BEA_HOME/modules/com.bea.core.weblogic.commons.logging_1.3.0.0.jar, together with the commons-logging.jar file in one of the following locations: APP-INF/LIB or WEB-INF/LIB directory or DOMAIN_NAME/LIB directory server CLASSPATH
    We are still not able to get the Weblogic admin console to start
    Any other ideas?
    Edited by: user13094648 on May 21, 2010 10:29 AM
    Edited by: user13094648 on May 21, 2010 10:37 AM

  • Unexpected error [0x8CFB0B0] while executing command 'Get-LinkedRoleGroupForLogonUser'

    Hi Experts....
    I am facing a weired error when connecting to Exchange On-Premises...
    I have 2 virtual machines in Virtual-Box .On 1st machine I has installed Active Directory..
    On 2nd machine I have to install Exchange Server.I have joined the second machine in the domain.
    After Installing all the pre-requisites and updates for Exchange when I open the exchange management console I faced the following error....
    Initialization Failed
    The following error occurred when retreiving user information for 'ABC\Administrator':
    Unexpected error [0x8CFB0B0] while executing command 'Get-LinkedRoleGroupForLogonUser'
    Click here to Retry
    Can anyone help me in this regard....!!!!
    Thank You...!!!!

    Hi,
    From the error description, I recommend open C:\Program Files\Microsoft\Exchange Server\V14\RemoteScripts, check the ConsoleInitialize.ps1 file, find "function global:Get-LinkedRoleGroupForLogonUser()", here is the right file of this part for your reference.
    foreach ($sid in $sids)
             try
               $accountName = $sid.Translate([System.Security.Principal.NTAccount]).Value
             catch
               continue
             if ($accountName -ne $null)
               foreach ($roleGroup in $allLinkedRoleGroups)
                 if ([string]::Compare($roleGroup.LinkedGroup,$accountName,$True) -eq 0)
                   $roleGroup
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Exchange 2010 SP1 management console fail

    Exchange 2010 SP1 management console fail on local exchange servers.
    The following error occurred while attempting to connect to the specified Exchange server CAS123.domain.co.za
    The attempt to connect to
    http://cas123.domain.co.za/PowerShell using “kerberos” authentication failed: Connecting to remote server failed with following error message: The WS-Management service cannot process the request because IP address cas123.domain.co.za is invalid. For more
    information, see the about_Remote_Troubleshooting Help topic.
    However do note that the Exchange Management Shell also fails with the exact same error on both my CAS and Mailbox servers.
    Though I am still able to open both tools via my backup server.
    All ells works fine.
    nslookup resolves the exchange servers as they should be. Frankly I am stumped as to the invalid IP address.
    My exchange environment have been running problem free for years and this problem only occurred last week Thursday after some .NET updates.

    Hi,
    As per the information and details provided by you, the only thing that I can figure out is that: -
    You receive an error: Exchange 2010 SP1 management console fail.
    There are two methods to resolve this problem: -
    Method 1: -
    Close all MMC/EMC instances before proceeding.
    Open the Registry editor (regedit) as the user you run the EMC under.
    Go to
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\ExchangeServer\v14\AdminTools
    Look for value, Node structure setting.
    If it is there, back it up and then remove it.
    Method 2: -
    Close all MMC/EMC instance before proceeding.
    Open powershell or powershell IDE as the user you run the EMC under and execute the following command:
    Remove-Item Property- Path
    HKCU:\Software\Microsoft\ExchangeServer\v14\AdminTools\ -Name NodeStructureSettings
    Close Powershell
    I hope this information will be helpful for you. Correct me if the information that I am having is wrong.
    Thanks and regards
    Ashish@V

  • Error while executing "" command Error type ACCESS VIOLATION Error Address: 0006898E Module name:gfsdesk.DLL

    Hi All,
    I'm using diadem from .net Program. While on the run I'm getting the following error.
    Error While executing "" Command
    Error type ACCESS VIOLATION
    Error Address: 0006898E
    Module name:gfsdesk.DLL
    Anyone have any idea why this is happening?
    regards,
    Swaroop

    Hi Swaroop,
    It would be helpful to better understand what your code really does. The information that you called DIAdem from your enviroenment is not yet sufficient to understand what the problem might be.
    Andreas

  • Lom doesn't execute commands

    I'm new in Sun, i just recieved a sun v100 server, i already connected the server to a workstation (using the hyperterminal tool) and it seemmed to be fine... however when the LOM> prompt appears and i try to introduce various commands but it does nothing.
    LOMlite starting up.
    CPU type: H8/3437S, mode 3
    Ram-test: 2048 bytes OK
    Initialising i2c bus: OK
    Searching for EEPROMs: 50(cfg)
    I2c eeprom @50: OK
    i2c bus speed code 01... OK
    Probing for lm80s: none
    Probing for lm75s: 48
    Initialising lm75 @48: OK
    System functions: PSUs fans breakers rails gpio temps host CLI ebus clock
    LOMlite console
    lom>
    LOM event: +0h0m0s LOM booted
    lom>poweron
    (it does nothing...)
    also when i turn the server on with the on/standby switch it also seems to be starting fine, but again when the ok prompt is displayed i try to execute commands and it does again nothing.
    Firmware CORE Sun Microsystems, Inc.
    @(#) core 1.0.18 2002/05/23 18:22
    Software Power ON
    Verifying NVRAM...Done
    Bootmode is 0
    MCR0 = 57b2ce06
    MCR1 = 80008000
    MCR2 = cff0ffff
    MCR3 = b00003ff
    Ecache Size = 512 KB
    Clearing E$ Tags Done
    Clearing I/D TLBs Done
    Probing memory
    Done
    MEMBASE=0xc0000000
    MEMSIZE=0x20000000
    Clearing memory...Done
    Turning ON MMUs Done
    Copy ROM to RAM (154720 bytes) Done
    Orig PC=0x1fff0007edc New PC=0xf0f07f34
    Processor Speed=648MHz
    Looking for Dropin FVM ... found
    Decompressing Client Done
    Transferring control to Client...
    Reset Control: BXIR:0 BPOR:0 SXIR:0 SPOR:1 POR:0
    Probing upa at 1f,0 pci
    Probing upa at 0,0 SUNW,UltraSPARC-IIe (512 Kb)
    Loading Support Packages: kbd-translator
    Loading onboard drivers:
    Probing /pci@1f,0 Device 7 isa dma rtc power SUNW,lomh serial serial
    flashprom
    Probing /pci@1f,0 Device 3 pmu i2c temperature dimm dimm dimm dimm
    i2c-nvram idprom motherboard-fru ppm beep fan-control
    lomp
    Probing Memory Bank #0 512 Megabytes
    Probing Memory Bank #1 512 Megabytes
    Probing Memory Bank #2 512 Megabytes
    Probing Memory Bank #3 512 Megabytes
    Probing /pci@1f,0 Device 7
    Probing /pci@1f,0 Device 3
    Probing /pci@1f,0 Device c ethernet
    Probing /pci@1f,0 Device 5 ethernet
    Probing /pci@1f,0 Device a usb
    Probing /pci@1f,0 Device d ide disk cdrom
    todm5819 Sun Fire V100 (UltraSPARC-IIe 648MHz), No Keyboard
    OpenBoot 4.0, 2048 MB memory installed, Serial #53320536.
    Ethernet address 0:3:ba:2d:9b:58, Host ID: 832d9b58.
    Environment monitoring: disabled
    ok boot
    (again... did nothing)
    i think is a hyperterminal configuration problem but please advide.
    thanks in advance.

    I think I took the wrong path to validate the New Zealand specific tax number. Is it possible to set some rules in PRST1_005 in table T005.
    If this is possible then please pass me the steps description.
    Thanks.
    Naz

  • ERROR: executing command  /usr/openv/netbackup/bin/bpbackup

    Hi,
    Online backup in one of our integration systems is failing with the followin reasons                                                                               
    Status = 58 : can't connect to client
    Status = 54 : timed out connecting to client
    The complete work log is
    [843860.00] Backup started 08/29/2007 07:21:27                                                                               
    [843860.00]                                                                               
    [983220.02] Backup started 08/29/2007 07:21:27                                                                               
    [983220.02]                                                                               
    [880690.03] Backup started 08/29/2007 07:21:27                                                                               
    [880690.03]                                                                               
    [1085482.01] Backup started 08/29/2007 07:21:27                                                                               
    [1085482.01]                                                                               
    [843860.00] 07:22:07 Initiating backup                                                                               
    [983220.02] 07:22:02 Initiating backup                                                                               
    [880690.03] 07:22:12 Initiating backup                                                                               
    [983220.02] 07:22:34 INF - Waiting for mount of media id MY0015 on server spnb6master.apac.gdc for writing.                                                                               
    [843860.00] 07:22:49 INF - Processing /oracle/OMI/sapdata1/undo_1/undo.data1                                                                               
    [843860.00] 07:22:49 /                                                                               
    [843860.00] 07:22:49 /oracle/                                                                               
    [843860.00] 07:22:49 /oracle/OMI/                                                                               
    [843860.00] 07:22:49 /oracle/OMI/sapdata1/                                                                               
    [843860.00] 07:22:49 /oracle/OMI/sapdata1/undo_1/                                                                               
    [880690.03] 07:24:35 INF - Processing /oracle/OMI/sapdata3/omi_5/omi.data5                                                                               
    [880690.03] 07:24:35 /                                                                               
    [880690.03] 07:24:35 /oracle/                                                                               
    [880690.03] 07:24:35 /oracle/OMI/                                                                               
    [880690.03] 07:24:35 /oracle/OMI/sapdata3/                                                                               
    [880690.03] 07:24:35 /oracle/OMI/sapdata3/omi_5/                                                                               
    [983220.02] 07:24:55 INF - Beginning backup on server spnb6master.apac.gdc of client ipcby104b1.apac.gdc.                                                                               
    ERROR: executing command  /usr/openv/netbackup/bin/bpbackup -w -t 17  -S spnb6masterb1.apac.gdc -c APAC_SAP_DC1 -s U_xx_1m -L /oracle/GIP/sapbackup/backint/.backint.log.1.1188372087.561352 -k ".bdwaniws.lst561352" -f /oracle/GIP/sapbackup/backint/.backint
    Status = 58 : can't connect to client                                                                               
    [1085482.01] EXIT STATUS 58: can't connect to client                                                                               
    ERR - job (1085482) failed status (58)                                                                               
    [880690.03] 07:25:38 /oracle/OMI/sapdata3/omi_5/omi.data5                                                                               
    [880690.03] 07:25:38 INF - Processing /oracle/OMI/sapdata3/omi640_11/omi640.data11                                                                               
    [880690.03] 07:25:38 /oracle/OMI/sapdata3/omi640_11/                                                                               
    [983220.02] 07:26:25 INF - Server status = 54                                                                               
    [880690.03] 07:26:41 /oracle/OMI/sapdata3/omi640_11/omi640.data11                                                                               
    [880690.03] 07:26:41 INF - Processing /oracle/OMI/sapdata4/omi_6/omi.data6                                                                               
    [880690.03] 07:26:41 /oracle/OMI/sapdata4/                                                                               
    [880690.03] 07:26:41 /oracle/OMI/sapdata4/omi_6/                                                                               
    [880690.03] 07:27:44 /oracle/OMI/sapdata4/omi_6/omi.data6                                                                               
    [880690.03] 07:27:44 INF - Processing /oracle/OMI/sapdata4/omi_9/omi.data9                                                                               
    [880690.03] 07:27:44 /oracle/OMI/sapdata4/omi_9/                                                                               
    ERROR: executing command  /usr/openv/netbackup/bin/bpbackup -w -t 17  -S spnb6masterb1.apac.gdc -c APAC_SAP_DC1 -s U_xx_1m -L /oracle/GIP/sapbackup/backint/.backint.log.2.1188372087.561352 -k ".bdwaniws.lst561352" -f /oracle/GIP/sapbackup/backint/.backint
    Status = 54 : timed out connecting to client                                                                               
    [983220.02] EXIT STATUS 54: timed out connecting to client                                                                               
    ERR - job (983220) failed status (54)                                                                               
    [843860.00] 07:28:28 /oracle/OMI/sapdata1/undo_1/undo.data1                                                                               
    [843860.00] 07:28:28 INF - Processing /oracle/OMI/sapdata1/omi640_4/omi640.data4                                                                               
    [843860.00] 07:28:28 /oracle/OMI/sapdata1/omi640_4/                                                                               
    [880690.03] 07:28:40 /oracle/OMI/sapdata4/omi_9/omi.data9                                                                               
    [880690.03] 07:28:40 INF - Processing /oracle/OMI/sapdata1/omi640_3/omi640.data3                                                                               
    [880690.03] 07:28:40 /oracle/OMI/sapdata1/                                                                               
    [880690.03] 07:28:40 /oracle/OMI/sapdata1/omi640_3/                                                                               
    [843860.00] 07:29:32 /oracle/OMI/sapdata1/omi640_4/omi640.data4                                                                               
    [843860.00] 07:29:32 INF - Processing /oracle/OMI/sapdata2/omi640_10/omi640.data10                                                                               
    [843860.00] 07:29:32 /oracle/OMI/sapdata2/                                                                               
    [843860.00] 07:29:32 /oracle/OMI/sapdata2/omi640_10/                                                                               
    [880690.03] 07:29:47 /oracle/OMI/sapdata1/omi640_3/omi640.data3                                                                               
    [880690.03] 07:29:47 INF - Processing /oracle/OMI/sapdata4/omi640_13/omi640.data13                                                                               
    [880690.03] 07:29:47 /oracle/OMI/sapdata4/                                                                               
    [880690.03] 07:29:47 /oracle/OMI/sapdata4/omi640_13/                                                                               
    [843860.00] 07:31:03 /oracle/OMI/sapdata2/omi640_10/omi640.data10                                                                               
    [843860.00] 07:31:03 INF - Processing /oracle/OMI/sapdata2/omi640_9/omi640.data9                                                                               
    [843860.00] 07:31:03 /oracle/OMI/sapdata2/omi640_9/                                                                               
    [880690.03] 07:31:20 /oracle/OMI/sapdata4/omi640_13/omi640.data13                                                                               
    [880690.03] 07:31:20 INF - Processing /oracle/OMI/sapdata2/omi640_8/omi640.data8                                                                               
    [880690.03] 07:31:20 /oracle/OMI/sapdata2/                                                                               
    [880690.03] 07:31:20 /oracle/OMI/sapdata2/omi640_8/                                                                               
    [843860.00] 07:32:29 /oracle/OMI/sapdata2/omi640_9/omi640.data9                                                                               
    [843860.00] 07:32:29 INF - Processing /oracle/OMI/sapdata4/omi_13/omi.data13                                                                               
    [843860.00] 07:32:29 /oracle/OMI/sapdata4/                                                                               
    [843860.00] 07:32:29 /oracle/OMI/sapdata4/omi_13/                                                                               
    [880690.03] 07:32:44 /oracle/OMI/sapdata2/omi640_8/omi640.data8                                                                               
    [880690.03] 07:32:44 INF - Processing /oracle/OMI/sapdata4/omi640_15/omi640.data15                                                                               
    [880690.03] 07:32:44 /oracle/OMI/sapdata4/                                                                               
    [880690.03] 07:32:44 /oracle/OMI/sapdata4/omi640_15/                                                                               
    [843860.00] 07:33:04 /oracle/OMI/sapdata4/omi_13/omi.data13                                                                               
    [843860.00] 07:33:04 INF - Processing /oracle/OMI/sapdata1/system_1/system.data1                                                                               
    [843860.00] 07:33:04 /oracle/OMI/sapdata1/                                                                               
    [843860.00] 07:33:04 /oracle/OMI/sapdata1/system_1/                                                                               
    [843860.00] 07:33:23 /oracle/OMI/sapdata1/system_1/system.data1                                                                               
    [843860.00] 07:33:23 INF - Client completed sending data for backup                                                                               
    [843860.00]                                                                               
    [880690.03] 07:33:18 /oracle/OMI/sapdata4/omi640_15/omi640.data15                                                                               
    [880690.03] 07:33:18 INF - Processing /oracle/OMI/sapdata4/omi_14/omi.data14                                                                               
    [880690.03] 07:33:18 /oracle/OMI/sapdata4/omi_14/                                                                               
    [880690.03] 07:33:49 /oracle/OMI/sapdata4/omi_14/omi.data14                                                                               
    [880690.03] 07:33:49 INF - Processing /oracle/OMI/sapbackup/cntrlOMI.dbf                                                                               
    [880690.03] 07:33:49 /oracle/OMI/sapbackup/                                                                               
    [880690.03] 07:33:50 /oracle/OMI/sapbackup/cntrlOMI.dbf                                                                               
    [880690.03] 07:33:50 INF - Client completed sending data for backup                                                                               
    [880690.03]                                                                               
    [843860.00] 07:34:47 INF - Server status = 0                                                                               
    [880690.03] 07:34:57 INF - Server status = 0                                                                               
    [880690.03] 07:36:02 INF - Backup by oraomi on client ipcby104b1.apac.gdc using policy APAC_SAP_DC1, sched U_xx_1m: the requested operation was successfully completed.                                                                               
    [880690.03]                                                                               
    [843860.00] 07:36:07 INF - Backup by oraomi on client ipcby104b1.apac.gdc using policy APAC_SAP_DC1, sched U_xx_1m: the requested operation was successfully completed.                                                                               
    [843860.00]                                                                               
    ERROR: wait for process to complete                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi640_12/omi640.data12                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata2/omi640_7/omi640.data7                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata3/omi_1/omi.data1                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata3/omi_2/omi.data2                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata3/omi_3/omi.data3                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata3/omi_4/omi.data4                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/system_2/system.data2                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi_10/omi.data10                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi_11/omi.data11                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi_12/omi.data12                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata2/omi640_6/omi640.data6                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/system_3/system.data3                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omiusr_1/omiusr.data1                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi_7/omi.data7                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi_8/omi.data8                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata4/omi640_14/omi640.data14                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/omi640_1/omi640.data1                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/omi640_2/omi640.data2                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/omi640_5/omi640.data5                                                                               
    BR0233E Backup utility has reported an error while saving file /oracle/OMI/sapdata1/system_1/sysaux01.dbf                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata1/system_1/system.data1                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata2/omi640_10/omi640.data10                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi_13/omi.data13                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata2/omi640_9/omi640.data9                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata1/undo_1/undo.data1                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata1/omi640_4/omi640.data4                                                                               
    #SAVED.... NS1188352332                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata2/omi640_8/omi640.data8                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi_6/omi.data6                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi_14/omi.data14                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi_9/omi.data9                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapbackup/cntrlOMI.dbf                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi640_13/omi640.data13                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata3/omi640_11/omi640.data11                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata4/omi640_15/omi640.data15                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata1/omi640_3/omi640.data3                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    #FILE..... /oracle/OMI/sapdata3/omi_5/omi.data5                                                                               
    #SAVED.... NS1188352337                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    BR0279E Return code from 'backint -u OMI -f backup -i /oracle/OMI/sapbackup/.bdwaniws.lst -t file -p /oracle/OMI/102_64/dbs/initOMI.utl -c': 2                                                                               
    BR0232E 16 of 36 files saved by backup utility                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.52                                                                               
    BR0231E Backup utility call failed                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.54                                                                               
    BR0317I 'Alter database end backup' successful                                                                               
    BR0056I End of database backup: bdwaniws.anf 2007-08-29 07.36.52                                                                               
    BR0280I BRBACKUP time stamp: 2007-08-29 07.36.55                                                                               
    BR0054I BRBACKUP terminated with errors                  
    Thanks,
    deepthi

    While surfing the net i got one solution
    NetBackup patch S0820462 corrects this by ensuring file name uniqueness with a timestamp value included in the name. Obtain this patch by contacting VERITAS Technical Support. Once you have the patch, follow the instructions included in the file patchS0820462.README which accompanies the patch.
    I got the idea but i dont understand where i will get the info regarding the files ??
    and how this patch has to be installed in the system.

  • System/webconsole:console failed fatally

    Getting a failed service every time I boot that I can't seem to fix. Here is the error message:
    Jun 3 12:24:14 rhea svc.startd[7]: system/webconsole:console failed fatally: transitioned to maintenance (see 'svcs -xv' for details)
    I've tried looking at a few things, but I'm not sure what to try next. Any advice would be greatly appreciated. Here are the pertinent log files and svcs information:
    bash-3.00# svcs -xv
    svc:/application/print/server:default (LP print server)
    State: disabled since Tue Jun 03 12:23:13 2008
    Reason: Disabled by an administrator.
    See: http://sun.com/msg/SMF-8000-05
    See: man -M /usr/share/man -s 1M lpsched
    Impact: 2 dependent services are not running:
    svc:/application/print/rfc1179:default
    svc:/application/print/ipp-listener:default
    svc:/system/webconsole:console (java web console)
    State: maintenance since Tue Jun 03 12:24:14 2008
    Reason: Start method exited with $SMF_EXIT_ERR_FATAL.
    See: http://sun.com/msg/SMF-8000-KS
    See: man -M /usr/share/man -s 1M smcwebserver
    See: /var/svc/log/system-webconsole:console.log
    Impact: This service is not running.
    bash-3.00# vi /var/svc/log/system-webconsole:console.log
    [ May 30 17:01:09 Disabled. ]
    [ May 30 17:01:09 Rereading configuration. ]
    [ May 30 17:01:56 Enabled. ]
    [ May 30 17:03:11 Executing start method ("/lib/svc/method/svc-webconsole start") ]
    Starting Sun Java(TM) Web Console Version 3.0.2 ...
    The console is running.
    [ Jun  3 07:56:57 Executing start method ("/lib/svc/method/svc-webconsole start") ]
    Starting Sun Java(TM) Web Console Version 3.0.2 ...
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
    at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAX
    ParseException(ErrorHandlerWrapper.java:236)
    at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:215)
    at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:386)
    at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:316)
    at com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(XMLScanner.java:1438)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDispatcher.dispatch(XMLDocumentScannerImpl.java:899)
    "system-webconsole:console.log" 260 lines, 24468 characters (56 null)

    what about:
    mkdir -p /usr/java/bin
    cd /usr/java/bin
    ln -s `which java`.
    .7/M.

  • Executing command on startup doesn't work

    Hello,
    I'm trying to execute this script when X starts:
    xmodmap -e " keycode 118 = Delete"
    which works, when is executed manually from console. I tried to run it automaticaly after login and starting X by putting it into .zprofile, /etc/profile, /etc/profile.d/***, .xinit or to my awesome wm config (all other scripts here are executed normally - eg pulseaudio --start). But this command is never executed. I tried even variant with adding this to .Xmodmap and then add xmodmap .Xmodmap to .xinit, but without success.
    Thanks

    Kotrfa wrote:
    Here is how my .xinitrc looks like:
    #! /bin/bash
    xmodmap -e " keycode 118 = Delete"
    exec awesome
    When I manually type this command, everything works. But it doesn't work after reboot (and .xinitrc is surely executed, because awesome starts ok).
    xmodmap seems to be time sensible. Anyhow, on my WM startup file I have:
    (sleep 10; xmodmap ~/.Xmodmap; sleep 5; xmodmap ~/.Xmodmap) &
    I come to this by trial and error.
    Has said I have it on my WM startup file, but having it on .xinitrc is also OK.
    Mektub

  • Execute Command fron Java Program

    Hi All,
    I am trying to execute a command from Java Application, but iam not getting any result. My problem is:-
    1- Open a terminal.
    2- execute command.
    The same is working fine in windows , the step for windows are:-
    1- execute cmd.exe
    2- go to prompt
    3- execute command.
    How to do it for Solaris 10 ??? Any cmd.exe equivalent for solaris terminal???

    This is done in the exact same way. You open a terminal (depending on your gui its called "console" or "this computer" (CDE), and "Gnome console" (iirc) in the Java desktop) and then you're home free. "javac", "java", etc. should all be in your search path.
    If not look in /usr/java.

  • Unable to execute command adprmkey in upgrading 11i to 12.1.1

    Hello Team Leaders:
    I am in the process of upgrading EBS 11.5.10.2 to Release 12.1.1. I have imported the database, Layed down the apps and have started applying patches. While running adpatch I have encountered:
    java.lang.Exception: ERROR: Unable to execute command: adprmkey /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndlist.jar.tmp
    at oracle.apps.ad.jri.util.JarSignerOptions.getOptions(JarSignerOptions.java:50)
    at oracle.apps.ad.jri.util.JarSignUtils.signJarWithJarsigner(JarSignUtils.java:132)
    at oracle.apps.ad.jri.adjmx.mergeAndExtract(adjmx.java:1313)
    at oracle.apps.ad.jri.adjmx.main(adjmx.java:970)
    Done Analyzing fndlist.jar : Fri Oct 26 2012 16:06:42
    ERROR: The following jars failed to get generated properly.
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndforms.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndewt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndewtpv.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndaol.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/wfapi.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndaroraclnt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndmail.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndactiv.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndformsi18n.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/mapclient.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndxmlparserv2.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/cs/jar/cs.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/az/jar/azwizard.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/jtf/jar/jtfgrid.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/cct/jar/cctbasic.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/msd/jar/msejar.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/wps/jar/wpsgantt.jar
    /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar/fndlist.jar
    I then tried relinking on jar manually:
    cd /u02/applfint/apps/apps_st/comn/java/classes/oracle/apps/fnd/jar
    ll fndaroraclnt.jar
    -rw-r--r-- 1 applfint dba 1135766 Apr 1 2009 fndaroraclnt.jar
    adrelink.sh force=y "fndaroraclnt.jar "
    Errors:
    adrelink: error: Product library for product "fndaroraclnt.jar" not found.
    "fndaroraclnt.jar" might not be listed correctly in your OFT1_ofintest.env file,
    you may be missing some files for product "fndaroraclnt.jar",
    or "fndaroraclnt.jar" could be an invalid product.
    adrelink will not try to link product "fndaroraclnt.jar".
    Continuing work on other products...
    adrelink is exiting with status 1
    What is my problem?
    Mathias

    Hi Hussein,
    Following command in (11864081 12.1.3 Java.lang.Exception: Unable To Find Or Read Parameter File /d01/oracle/R12DEV/apps/a [ID 1479911.1]), I have executed:
    adrelink.sh force=y "ad adprmkey"
    And the output errors are:
    /usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    collect2: ld returned 1 exit status
    make: *** [u02/applfint/apps/apps_st/appl/ad/12.0.0/bin/adprmkey] Error 1
    Done with link of ad executable 'adprmkey' on Sun Oct 28 01:59:50 EDT 2012
    Relink of module "adprmkey" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory /u02/applfint/apps/apps_st/appl/ad/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    I checked and do have permissions on /u02/applfint/apps/apps_st/appl/ad/12.0.0/bin:
    drwxr-xr-x 2 applfint dba 4096 Oct 28 02:10 bin
    Browsing around the system I noticed:
    1) three broken links in /usr/lib/gcc/x86_64-redhat-linux/4.4.4/32:
    libgfortran.so -> ../../../../libgfortran.so.3.0.0
    libmudflapth.a -> ../../../i686-redhat-linux/4.4.4/libmudflapth.a
    libmudflap.a -> ../../../i686-redhat-linux/4.4.4/libmudflap.a
    libgomp.so -> ../../../../libgomp.so.1.0.0
    2) Following MOS note 11864081 12.1.3 Java.lang.Exception. Check this out:
    adrelink.sh force=y "ad adprmkey"
    Failed with:
    usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgcc_s.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    collect2: ld returned 1 exit status
    make: *** [u02/applfint/apps/apps_st/appl/ad/12.0.0/bin/adprmkey] Error 1
    Done with link of ad executable 'adprmkey' on Fri Oct 26 18:14:16 EDT 2012
    Relink of module "adprmkey" failed.
    3) My OS :
    uname -a
    Linux ofintest.corp.phillips.com 2.6.32-100.28.5.el6.x86_64 #1 SMP Wed Feb 2 18:40:23 EST 2011 x86_64 x86_64 x86_64 GNU/Linux
    4) rpm -q glibc
    glibc-2.12-1.80.el6_3.5.x86_64
    glibc-2.12-1.80.el6_3.5.i686
    5) gcc -v
    Using built-in specs.
    Target: x86_64-redhat-linux
    Configured with: ../configure prefix=/usr mandir=/usr/share/man infodir=/usr/share/info with-bugurl=http://bugzilla.redhat.com/bugzilla enable-bootstrap enable-shared enable-threads=posix enable-checking=release with-system-zlib enable-__cxa_atexit disable-libunwind-exceptions enable-gnu-unique-object enable-languages=c,c++,objc,obj-c++,java,fortran,ada enable-java-awt=gtk disable-dssi with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre enable-libgcj-multifile enable-java-maintainer-mode with-ecj-jar=/usr/share/java/eclipse-ecj.jar disable-libjava-multilib with-ppl with-cloog with-tune=generic with-arch_32=i686 --build=x86_64-redhat-linux
    Thread model: posix
    gcc version 4.4.4 20100726 (Red Hat 4.4.4-13) (GCC)
    6) g++ --version
    g++ (GCC) 4.4.4 20100726 (Red Hat 4.4.4-13)
    Copyright (C) 2010 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    7) ls -al /usr/bin | grep gcc
    lrwxrwxrwx. 1 root root 3 Oct 17 12:28 cc -> gcc
    -rwxr-xr-x 2 root root 268088 Dec 1 2010 gcc
    -rwxr-xr-x 2 root root 268088 Dec 1 2010 x86_64-redhat-linux-gcc
    8) rpm -qf /usr/bin/x86_64-redhat-linux-gcc
    gcc-4.4.4-13.el6.x86_64
    I hope this information helps in troubleshooting this issue for us.
    Thanks
    Mathias
    Thanks,

Maybe you are looking for