Could not find file while installing Flash Player

I downloaded [Adobe Flash Player version 9.0.124.0 for Intel-based Macs|http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=shockwaveFlash] and when I began installing it, right before it was almost done, this window came up:
and when I clicked OK, this window came up:
What do I need to do to be able to install Flash Player on my computer?
Thanks in advance,
-thealexness

Thanks for the help didi_vinyl, the uninstallation/installation went very smoothly. Yet I still have a when I go to this one website.
The specific website I am trying to access is at PrincetonReview.com>Student Tools>Your Test Scores/Reports>Your New SAT Online Student Center Score Report>A Diagnostic Test. When you click on the link to the test, it gives you a whole 8 pages of analyzation (for any of you who have taken a Princeton Review Diagnostic Test you know what I'm talking about, and when I click the +Printer Friendly Version+ it gives me two pages with the .
Now according to [this website|http://forums.macosxhints.com/showthread.php?t=83434] that discusses the appearance of :
The "lego" means that you either are missing the Quicktime plugin for that image or have an outdated/wrong plugin installed. Check the folder /Library/Quicktime and re-install any plugins you have there to be sure you're using the Intel version.
So I checked Macintosh HD>Library>Quicktime and I have the following components
1. AppleIntermediateCodec.component
2. CanonMJPEGAVI.component
3. DivX Decoder.component
4. DivX Encoder.component
5. Flip4Mac WMV Advanced.component
6. Flip4Mac WMV Export.component
7. Flip4Mac WMV Import.component
Apart from components 2-7, which I believe are third-party plug-ins, does it look like I am missing any key Quicktime components? Or is this even a Quicktime plug-in issue?
Thanks for all of the help!
-thealexness

Similar Messages

  • No mountable File System error while installing Flash Player

    Hi all,
    i've been having a no mountable file system error while installing Flash Player.  At first i thought it was a problem with the download but i've tried many times and still have the same error when installing the player.  I've attached a screenshot of the error message.
    Hopefully someone can shed some light.  I'm using a 2012 Mac Mini running Mountain Lion on a Fusion Drive.

    elliott777 wrote:
    Thank you for your help! I don't have the capabilities:(
    you don't have what capabilities? to download?

  • Could not find file ERROR while connecting to access (mdb) file

    I am getting the following error while connecting to the database:
    javax.servlet.ServletException: [Microsoft][ODBC Microsoft Access Driver] Could not find file 'C:\WINNT\system32\Database1.mdb'.
    Following is my code:
    <%
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         String database="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
         String filename="D://BeaTemp//Database1";
         database+= filename.trim() + ";DriverID=22;READONLY=true}";
         Connection con=DriverManager.getConnection(database, "", "");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select * from Database1.Employee");
         ResultSetMetaData rsmd=rs.getMetaData();
         while(rs.next()){
              for(int i=1;i<=rsmd.getColumnCount();i++) {
                   out.println(rs.getString(i));
    %>
    What could be the problem..??
    Thankx in advance..
    Satish.

    Got the solution.
    The statement:
    ResultSet rs=st.executeQuery("select * from Database1.Employee");
    should be changed as:
    ResultSet rs=st.executeQuery("select * from Employee");
    Now, it is working fine.
    Regards,
    Satish.

  • Logon failed. Details: mscorlib : Could not find file.... XSD

    I have been searching the forums and the web for hours and have not found a solution to a problem we are having.  We upgraded our reports from VS.NET 2003 to VS.NET 2008 and started getting the below error upon our Report.Export code.
    Logon failed. Details: mscorlib : Could not find file 'C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringeFunderDetail.xsd'. Failed to export the report. Error in File C:\WINDOWS\TEMP\temp_90ed8e07-481c-4bdb-8c50-885854a143d0 {B8EC61FE-7931-4979-AD92-432C21013D77}.rpt: Unable to connect: incorrect log on parameters.
    So when I verify the XSD and set the data source location (XML File Path: C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringe.xsd)  the report works fine.  The problem is that when another developer trys to run the report on their machine and their machine has a different path for the code, the report fails.  The odd thing is that some of our reports are working fine, it is only a few that basically are looking for the hard coded XSD path.
    So, as far as I can tell the XSD are not needed (Re: ADO.Net (XML) Data Source File Path).  I have applied SP1 for Crystal Reports.  I am totally confused why this started and why the report is looking for a "hard coded" path to the XSD.

    The RunReport is called by a button click on a form.  This method calls ExportFile which works until the line "Report.Export()" is hit. 
        Public Overrides Function RunReport(ByVal ReportID As Short) As String
            Dim Utility As New Utility(Session("CNReportPath"))
            Dim Report As New rptIndividualSalaryFringe
            Dim db As New BudgetDB(Session("CNReportPath"))
            Dim pDB As New ProgramDB(Session("CNReportPath"))
            Dim dsRep, dsSub As DataSet
            Dim AgencyID As Integer = Program1.AgencyID
            Dim ProgramID As Integer = Program1.ProgramID
            Dim FyID As Integer = FiscalYear1.SelectedValue
            Dim ShowOnlyCSCFunded As Integer = IIf(chkShowCSCFunded.Checked = True, 1, 0)
            Dim ContractNumber, AgencyName As String
            Dim ReportEnv As String = Environment
            Dim ReportDB As String = DBName
            dsRep = db.GetIndividualSalaryFringe(AgencyID, ProgramID, FyID, ShowOnlyCSCFunded)
            'dsRep.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringe.xsd"))
            AgencyName = pDB.GetAgencyName(AgencyID)
            With Report.Section1
                CType(.ReportObjects("txtAgency"), TextObject).Text = AgencyName
                CType(.ReportObjects("txtProgram"), TextObject).Text = pDB.GetProgramName(ProgramID)
                CType(.ReportObjects("txtFiscalYear"), TextObject).Text = "Fiscal Year " & FiscalYear1.SelectedText
            End With
            ContractNumber = pDB.GetContractNumber(ProgramID)
            If Not IsNothing(ContractNumber) Then
                If Not ContractNumber = "" Then
                    With Report.Section6
                        .SectionFormat.EnableSuppress = False
                        CType(.ReportObjects("txtContractNumber"), TextObject).Text = "Contract #:" & ContractNumber
                    End With
                End If
            End If
            With Report.Section5
                CType(.ReportObjects("txtAgencyName"), TextObject).Text = AgencyName
            End With
            If dsRep.Tables(0).Rows.Count <= 0 Then
                Report.secNoData.SectionFormat.EnableSuppress = False
                Report.Section2.SectionFormat.EnableSuppress = True
                Report.Section4.SectionFormat.EnableSuppress = True
                Report.Section7.SectionFormat.EnableSuppress = True
                Report.Section9.SectionFormat.EnableSuppress = True
                Report.Section10.SectionFormat.EnableSuppress = True
                Report.secFunderDetail.SectionFormat.EnableSuppress = True
            Else
                dsSub = db.GetIndividualSalaryFringeFunderDetail(ProgramID, FyID)
                'dsSub.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringeFunderDetail.xsd"))
                Report.OpenSubreport("subFunderDetail").SetDataSource(dsSub)
            End If
            'Ehn 41 add environment and db name
            CType(Report.Section5.ReportObjects("DBName"), TextObject).Text = "DB: " + ReportDB
            CType(Report.Section5.ReportObjects("Environment"), TextObject).Text = IIf(ReportEnv = "", ReportEnv, "Env: " + ReportEnv)
            Report.SetDataSource(dsRep)
            'You must set the ReportGroup equal to Crystal to make it work correctly
            ReportGroup = ReportGroup.Crystal
            'Leave this line of code
            ReportFile = Utility.ExportFile(Report, ExportFilter1.ExportType, Server.MapPath("~/ReportFiles/"))
            Return String.Empty
        End Function
        Public Function ExportFile(ByVal Report As ReportDocument, ByVal ExportType As ExportType, ByVal OutputPath As String, Optional ByVal ds As DataSet = Nothing) As String
            Dim crDiskFileOpts As New DiskFileDestinationOptions
            'Dim strFilePath As String
            'Dim strLinkPath As String
            Dim crExportOptions As New ExportOptions
            Dim crExcelOptions As New ExcelFormatOptions
            Dim crPDFOptions As New PdfRtfWordFormatOptions
            Dim crWordOptions As New PdfRtfWordFormatOptions
            Dim ReportName As String = String.Empty
            Try
                crExportOptions = Report.ExportOptions
                Select Case ExportType
                    Case ExportType.Excel
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                        With crExcelOptions
                            .ExcelTabHasColumnHeadings = True
                            .ExcelUseConstantColumnWidth = True
                        End With
                        crExportOptions.ExportFormatType = ExportFormatType.Excel
                        crExportOptions.FormatOptions = crExcelOptions
                    Case ExportType.PDF
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".pdf"
                        crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
                        crExportOptions.FormatOptions = crPDFOptions
                    Case ExportType.Word
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".doc"
                        crExportOptions.ExportFormatType = ExportFormatType.WordForWindows
                        crExportOptions.FormatOptions = crWordOptions
                    Case SamisConstants.ExportType.ExcelRaw
                        ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                        ''If Not IsNothing(ds) Then
                        ''    Dim oExcel As New ExcelExport.ExcelExport
                        ''    oExcel.CreateWorkbook(OutputPath & ReportName, ds)
                        ''End If
                End Select
                Select Case ExportType
                    Case ExportType.Excel, ExportType.PDF, ExportType.Word
                        crDiskFileOpts.DiskFileName = OutputPath & ReportName
                        With crExportOptions
                            .DestinationOptions = crDiskFileOpts
                            .ExportDestinationType = ExportDestinationType.DiskFile
                        End With
                        Report.Export() ' ERROR HAPPENS HERE!!!!!!
                End Select
                Return "ReportFiles/" & ReportName
            Catch ex As Exception
                Throw ex
            End Try
        End Function

  • Could not find file in Temp directory

    Hey all!
    I received the follwoing error when exporting a report into a pdf file using the ExportToStream method:
    Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_e269c3d0-e775-4351-b2ea-09507859a79a.tmp".
    I am using VS 2003 and CR 9.1.5, and I didn't have any problems with this report until I enlarged the header field for a column. After this error occurred, I reverted back to the original report, but it still threw the error. I then restarted IIS, rebuilt the application, and then ran the report again. Still no luck.
    Any ideas on what is causing this problem? Is this a version issue?
    (I have four other reports that are still working fine, it just seems to be this one report)

    Here is the full dump of the error message:
    Exception=System.IO.FileNotFoundException
    Message=Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp".
    FileName=C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp
    TargetSite=Void WinIOError(Int32, System.String)
    StackTrace= at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
    at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType)
    at FixedAssets.FAPageBase.InvokeCrystalReport(String ReportName) in c:\dev\source\comptrollers\fixedassets\dev\web\fapagebase.aspx.cs:line 588
    at FixedAssets.Reports.CreateAssetDisposalsReport.btnRunReport_Click(Object sender, EventArgs e) in C:\dev\source\comptrollers\FixedAssets\Dev\web\Reports\AssetDisposalsReport.aspx.cs:line 70
    at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
    at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    at System.Web.UI.Page.ProcessRequestMain()
    Source=mscorlib

  • Error could not find file/pathurl for id file::QTMRead

    Hi,
    I'm very puzzled as to this error I have gotten on multiple projects when trying to check back out.
    Error could not find file/pathurl for id file::QTMRead
    I'm halfway through a project with a deadline of next week, and have been using edit proxies, so am just worried about being able to export the final project if the Server cannot find the file.
    It seems to get this error after a glitchy upload where the server locks up and I have to force quit. Has anyone had this message before/have any ideas how to solve it?
    Some speedy help would be very much appreciated.
    Thanks,
    Dania

    You need to make sure that you imported the Reports.xml file into the FDM application. Also, you will want to login to the application using the workbench client and click on the Reports tab and expand the English > Check Reports and right-click on the check report and choose "Set as Validation Report".

  • CRS-0210: Could not find resource while start ASM on 10G RAC

    Dear All
    I'm trying to install 10g RAC on Redhat 4.1. At the point at which I try to start ASM it fails with the message
    ORA-03113: end-of-file on communication channel
    select value from v$parameter where name='instance_type'
    ERROR at line 1:
    ORA-01034: ORACLE not available
    This seems to be due to a failure CRS. The trace file shows:
    [Thread-11] [17:14:2:907] [HAOperationImpl.runCommand:1254] CRS cmd is: /u01/app/oracle/product/10.2.0/crs/bin/crs_stat -u ora.bfhxx-sql012.ASM1.asm
    [Thread-41] [17:14:2:964] [StreamReader.run:65] OUTPUT>CRS-0210: Could not find resource ora.bfhxx-sql012.ASM1.asm.
    Executing
    /u01/app/oracle/product/10.2.0/crs/bin/crs_stat
    produces:
    NAME=ora.bfhxx-sql012.LISTENER_BFHXX-SQL012.lsnr
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on bfhxx-sql012
    NAME=ora.bfhxx-sql012.gsd
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on bfhxx-sql012
    NAME=ora.bfhxx-sql012.ons
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on bfhxx-sql012
    NAME=ora.bfhxx-sql012.vip
    TYPE=application
    TARGET=ONLINE
    STATE=ONLINE on bfhxx-sql012
    Is this a red herring or is it the reason ASM won't start? At what point should this entry have been created (ie should it already exist when ASM starts or should ASM create it)? Can I manually create the entry using crsstat.
    Many thanks
    Paul

    It all depends on what your mapping problem was and what you did to resolve it. Here are a couple of things you could try:
    -Make sure the orc.loc file on ebdb1 has the same entry as ebdb2. Also, say you are using shared raw devices for CRS: make sure your raw devices are consistent on both nodes.
    If the above does not work
    -Make sure the shared devices are consistent on both nodes and restore one of the OCR backups. I am sure at least one of the backups 4hrs/8hrs/1day/2day/1week some thing must be a worthwhile. If you do restore OCR from a backup make sure to run cluvfy before you start your CRS.
    Always a good practise to take a backup of status quo before you restore from the backups.
    It would be interesting to know what lead to your disk mapping problem in the first palce.
    Good Luck!

  • Error: Could not find file for old Adobe Reader Bundle

    We are running Zenworks 11.2.3a (just upgraded to this version last week) on a linux server. Today, I received calls from a number of users, their computers were displaying the following error message:
    Could not find the file "/var/opt/novell/zenworks/content-repo/tmp/zpm/plp//windows/x86/en/E8833D51-5176-4B73-B6D2-A47603C3270D.plp" to install.
    They are getting this pop-up message 2 times every time Zenworks refreshes.
    I tried to find this file on the Zenworks server but the directory does not exist on the server. In fact, I can only navigate as far as /var/opt/novell/zenworks/content-repo/tmp/zpm - there is only one folder in this directory named dauzip.
    Here is the error message from the zmd-messages.log on one of the workstations:
    [GenericActions.FileCouldNotBeFound] [Could not find the file "/var/opt/novell/zenworks/content-repo/tmp/zpm/plp//windows/x86/en/E8833D51-5176-4B73-B6D2-A47603C3270D.plp" to install.] [] [fd868047b8dda3fab8f372c803a2a4f3]
    Any idea what's causing this error or how to fix it?

    No idea what is causing this.
    To fix, maybe just delete the bundle and create a new one ?

  • Error message while installing flash player

    I am trying to install flash player and I keep getting a message to close the following program  qbw32 to continue, I do not know what this program is, I do not have any open programs

    It's something called Quickbooks; see How to close Internet Explorer and other programs running on Windows?

  • While installing Flash Player in Win7 64bits "error de registro"

    I'm trying to install Flash Player in Windows 7 64 bits but it keep sending me the message "error de registro" and it fails to install.  I've done what help say, so I deleted the version I had and now I have none Flash... Help!!

    I tried to install Flash Player after your procedure, but it keep sending me the same error... another idea?? Not sure if the error is translated as "Register error" as in the action of registering the software or "Record/entry error" as in an error on a Windows record.
    Please help, I can't use Explorer any more, because a lot of web pages use flash...

  • I am not able to install updates on my Mac Air laptop. IT says The document "Firefox 6.0.1.dmg" could not be opened. Adobe Flash Player Install Manager cannot open files in the "Disk Image" format.

    i have not been able to install updates on this laptop ever.

    umjustme wrote:
    curious to know your reservations about Kapersky!
    They screwed up the first Flashback removal tool very badly, locking several users out of their accounts permanently. It took a day or so for them to react and post a revised tool, but the damage had been done.
    They are one of several formerly PC only vendors who rushed to the Mac front back in the spring after the Flashback scare. I would advise giving all of those folks time to prove they really understand OS X before installing it on any of my Macs. There are several others who have proven themselves.
    Since you are running what I assume to be a fully up-to-date OS X 10.6.8 you are not vulnerable to any currently known malware capable of impacting OS X or other Mac software. That's no guarantee there won't be something new show up tomorrow, but the chances of any commercial anti-malware software catching it before Apple can react is pretty slim, IMHO.
    Now if you are concerned about Windows malware, that's a different story.

  • Oracle Management Server could not be started while installing 12c

    Hello All,
    I'm trying to installing the Oracle 12cR2 on OEL6 32 bit over Oracle Virtual Box.
    The installation went smooth but at 79% of the installation, it throws me error as the OMS server is down and it could not be started.
    I tried to started the services manually by "./emctl start OMS" but no luck.
    2013-01-04 10:45:45,956 [main] INFO wls.OMSController main.204 - Executing command:start
    2013-01-04 10:45:46,186 [main] ERROR oms.StatusOMSCmd processStatusOMS.321 - Connection exception when trying to hit OMS page. OMS is down
    2013-01-04 10:45:46,186 [main] INFO commands.BaseCommand statusOMS.377 - statusOMS finished with result: 8
    2013-01-04 10:45:46,186 [main] INFO commands.BaseCommand execute.64 - currStatus is 8
    2013-01-04 10:45:46,186 [main] INFO commands.BaseCommand startOMS.162 - admin start is false
    2013-01-04 10:45:46,187 [main] INFO commands.BaseCommand startOMS.163 - is service is false
    2013-01-04 10:45:46,217 [main] INFO commands.BaseCommand getEnvProps.446 - Setting trust store system properties: -Dweblogic.security.TrustKeyStore=DemoTrust -Dweblogic.security.SSL.ignoreHostnameVerification=true -Djava.security.egd=file:///dev/./urandom
    2013-01-04 10:45:46,218 [main] INFO commands.BaseCommand startOMS.222 - wlst command is /u01/app/oracle/12c/oms/oracle_common/common/bin/wlst.sh /u01/app/oracle/12c/oms/oms/bin/startOMS.py
    2013-01-04 10:45:46,218 [main] INFO commands.BaseCommand startOMS.223 - Executing the wlst command for startOMS...
    2013-01-04 10:45:46,218 [main] INFO commands.BaseCommand startOMS.227 - optional admin start is false
    2013-01-04 10:45:46,218 [main] INFO commands.BaseCommand startOMS.228 - optional pbs_only start is false
    2013-01-04 10:45:46,218 [main] INFO commands.BaseCommand startOMS.229 - optional console_only start is false
    2013-01-04 10:45:46,824 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>CLASSPATH=/u01/app/oracle/12c/oms/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/12c/oms/jdk16/jdk/lib/tools.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/12c/oms/modules/features/weblogic.server.modules_10.3.5.0.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/12c/oms/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/12c/oms/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/12c/oms/jdk16/jdk/lib/tools.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/12c/oms/modules/features/weblogic.server.modules_10.3.5.0.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/12c/oms/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/12c/oms/oms/sysman/jlib/emagentSDK.jar:/u01/app/oracle/12c/oms/oms/sysman/jlib/emCORE.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.http_client_11.1.1.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.osdt_11.1.1/osdt_cert.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.osdt_11.1.1/osdt_core.jar:/u01/app/oracle/12c/oms/modules/com.bea.core.apache.log4j_1.2.13.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/adfscripting.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/mdswlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/auditwlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/igfwlsthelp.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/jps-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/jrf-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/oamap_help.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ossoiap_help.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ossoiap.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/sslconfigwlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/wsm-wlst.jar
    2013-01-04 10:45:46,825 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:46,826 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>PATH=/u01/app/oracle/12c/oms/wlserver_10.3/server/bin:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/12c/oms/jdk16/jdk/jre/bin:/u01/app/oracle/12c/oms/jdk16/jdk/bin:/u01/app/oracle/12c/oms/oms/bin:/u01/app/oracle/12c/oms/oms/jdk/bin:/u01/app/oracle/12c/oms/oms/perl/bin:/u01/app/oracle/12c/oms/wlserver_10.3/server/bin:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/12c/oms/jdk16/jdk/jre/bin:/u01/app/oracle/12c/oms/jdk16/jdk/bin:/u01/app/oracle/product/11.2.0/db_1/bin:/usr/sbin:/usr/lib/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/oracle/bin:/bin:/usr/bin
    2013-01-04 10:45:46,826 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:46,829 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Your environment has been set.
    2013-01-04 10:45:46,829 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:46,830 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>CLASSPATH=/u01/app/oracle/12c/oms/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/12c/oms/jdk16/jdk/lib/tools.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/12c/oms/modules/features/weblogic.server.modules_10.3.5.0.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/12c/oms/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/12c/oms/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/12c/oms/jdk16/jdk/lib/tools.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/12c/oms/modules/features/weblogic.server.modules_10.3.5.0.jar:/u01/app/oracle/12c/oms/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/12c/oms/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/12c/oms/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/12c/oms/oms/sysman/jlib/emagentSDK.jar:/u01/app/oracle/12c/oms/oms/sysman/jlib/emCORE.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.http_client_11.1.1.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.pki_11.1.1/oraclepki.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.osdt_11.1.1/osdt_cert.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.osdt_11.1.1/osdt_core.jar:/u01/app/oracle/12c/oms/modules/com.bea.core.apache.log4j_1.2.13.jar:/u01/app/oracle/12c/oms/oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/adfscripting.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/lib/mdswlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/auditwlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/igfwlsthelp.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/jps-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/jrf-wlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/oamap_help.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ossoiap_help.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ossoiap.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/sslconfigwlst.jar:/u01/app/oracle/12c/oms/oracle_common/common/wlst/resources/wsm-wlst.jar:/u01/app/oracle/12c/oms/utils/config/10.3/config-launch.jar::/u01/app/oracle/12c/oms/wlserver_10.3/common/derby/lib/derbynet.jar:/u01/app/oracle/12c/oms/wlserver_10.3/common/derby/lib/derbyclient.jar:/u01/app/oracle/12c/oms/wlserver_10.3/common/derby/lib/derbytools.jar::
    2013-01-04 10:45:49,040 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:49,041 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Initializing WebLogic Scripting Tool (WLST) ...
    2013-01-04 10:45:49,041 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:53,993 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Welcome to WebLogic Server Administration Scripting Shell
    2013-01-04 10:45:53,994 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:53,994 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Type help() for help on available commands
    2013-01-04 10:45:53,994 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:54,138 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>nm home is /u01/app/oracle/12c/oms/gc_inst/NodeManager/emnodemanager
    2013-01-04 10:45:54,139 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>is_admin_host is TRUE
    2013-01-04 10:45:54,140 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>admin_start is FALSE
    2013-01-04 10:45:54,140 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>admin_only_start is NONE
    2013-01-04 10:45:54,921 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Connecting to Node Manager ...
    2013-01-04 10:45:55,158 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:55 AM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    2013-01-04 10:45:56,789 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,800 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,805 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,810 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,812 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,816 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,820 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,828 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:56,831 [Thread-1] INFO commands.BaseCommand run.554 - <OUT><Jan 4, 2013 10:45:56 AM IST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    2013-01-04 10:45:57,120 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Successfully Connected to Node Manager.
    2013-01-04 10:45:57,122 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of node manager:
    2013-01-04 10:45:57,123 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Currently connected to Node Manager to monitor the domain GCDomain.
    2013-01-04 10:45:57,123 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>current status of EMGC_ADMINSERVER:
    2013-01-04 10:45:57,125 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:57,125 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>RUNNING
    2013-01-04 10:45:57,126 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:57,126 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>current status of EMGC_OMS1:
    2013-01-04 10:45:57,127 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:57,127 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:45:57,128 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:57,129 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Starting server EMGC_OMS1
    2013-01-04 10:45:57,129 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Starting server EMGC_OMS1 ...
    2013-01-04 10:45:58,359 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Error Starting server EMGC_OMS1: weblogic.nodemanager.NMException: Exception while starting server 'EMGC_OMS1'
    2013-01-04 10:45:58,362 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>new status of EMGC_OMS1:
    2013-01-04 10:45:58,368 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:58,369 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:45:58,369 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:58,370 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>wait until EMGC_OMS1 becomes RUNNING
    2013-01-04 10:45:58,373 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:58,373 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:45:58,374 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:45:58,375 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:08,399 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:08,411 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:08,413 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:08,413 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:08,414 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:18,401 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:18,439 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:18,442 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:18,448 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:18,450 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:28,449 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:28,460 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:28,461 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:28,462 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:28,463 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:38,471 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:38,478 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:38,479 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:38,480 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:38,482 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:48,485 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:48,501 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:48,501 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:48,502 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:48,502 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:46:58,504 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:46:58,514 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:58,518 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:46:58,530 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:46:58,531 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:08,535 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:08,553 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:08,555 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:08,561 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:08,564 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:18,623 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:18,630 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:18,630 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:18,631 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:18,631 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:28,641 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:28,650 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:28,654 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:28,655 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:28,655 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:38,644 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:38,653 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:38,653 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:38,656 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:38,659 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:48,668 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:48,677 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:48,679 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:48,680 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:48,681 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:47:58,687 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:47:58,697 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:58,697 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:47:58,698 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:47:58,699 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:08,704 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:08,715 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:08,715 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:08,717 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:08,718 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:18,724 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:18,731 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:18,733 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:18,734 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:18,735 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:28,740 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:28,750 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:28,750 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:28,751 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:28,752 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:38,760 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:38,795 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:38,796 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:38,796 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:38,797 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:48,799 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:48,808 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:48,808 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:48,810 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:48,811 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>sleep for 10 seconds...
    2013-01-04 10:48:58,815 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of EMGC_OMS1:
    2013-01-04 10:48:58,826 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:58,826 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>FAILED_NOT_RESTARTABLE
    2013-01-04 10:48:58,827 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>
    2013-01-04 10:48:58,832 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>timed out waiting for EMGC_OMS1 to be RUNNING
    2013-01-04 10:48:58,833 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>status of node manager:
    2013-01-04 10:48:58,835 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Currently connected to Node Manager to monitor the domain GCDomain.
    2013-01-04 10:48:58,840 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>1
    2013-01-04 10:48:58,854 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>Successfully disconnected from Node Manager.
    2013-01-04 10:48:58,857 [Thread-1] INFO commands.BaseCommand run.554 - <OUT>END
    2013-01-04 10:48:58,859 [Thread-2] INFO commands.BaseCommand run.554 - <ERR>END
    2013-01-04 10:48:58,945 [main] INFO commands.BaseCommand processCmd.487 - wlst process is finished
    2013-01-04 10:48:58,952 [main] INFO commands.BaseCommand processCmd.489 - wlst process exited with code 1
    2013-01-04 10:48:58,953 [main] INFO commands.BaseCommand processCmd.491 - wlst outstream joined
    2013-01-04 10:48:58,953 [main] INFO commands.BaseCommand processCmd.493 - wlst errstream joined
    2013-01-04 10:48:58,955 [main] INFO commands.BaseCommand processCmd.499 - process exited with code 1
    2013-01-04 10:48:58,958 [main] INFO commands.BaseCommand startOMS.241 - Starting WebTier...
    2013-01-04 10:48:59,136 [main] INFO util.EmctlUtil logp.251 - Output messages of the command :
    opmnctl stopall: opmn is not running.
    2013-01-04 10:48:59,138 [main] INFO util.EmctlUtil logp.251 - error messages of the command :
    2013-01-04 10:49:05,838 [main] INFO util.EmctlUtil logp.251 - Output messages of the command :
    opmnctl startall: starting opmn and all managed processes...
    2013-01-04 10:49:05,843 [main] INFO util.EmctlUtil logp.251 - error messages of the command :
    2013-01-04 10:49:05,845 [main] INFO commands.BaseCommand startOMS.252 - WebTier Successfully Started
    2013-01-04 10:49:05,855 [main] ERROR oms.StatusOMSCmd processStatusOMS.321 - Connection exception when trying to hit OMS page. OMS is down
    2013-01-04 10:49:05,855 [main] INFO commands.BaseCommand statusOMS.377 - statusOMS finished with result: 8
    2013-01-04 10:49:05,856 [main] INFO commands.BaseCommand startOMS.307 - startOMS finished with result: 1
    2013-01-04 10:49:05,864 [main] ERROR oms.StatusOMSCmd processStatusOMS.321 - Connection exception when trying to hit OMS page. OMS is down
    2013-01-04 10:49:05,963 [main] INFO commands.BaseCommand statusOMS.377 - statusOMS finished with result: 8
    2013-01-04 10:49:05,965 [main] INFO commands.BaseCommand startOMS.312 - retCode is 8
    Please suggest me over this issue.
    regards,
    rohit
    http://dbarohit.blogspot.in/

    Have you found a resolution to this issue?
    I am receiving almost the identical error message in my newly installed 12c OEM when trying to start the OMS.
    I have tried a variety of shutdown/restart sequences for the repository database, listener, oms and agent and have gotten nowhere.
    My installation was performed on Windows Server 2008 R2 with Oracle RDBMS 11.2.0.2, just to post some basic environment info.
    Any information would be appreciated.
    Thanks,
    Dan

  • Error while installing Flash Player

    Good morning - just wanted to let you know that something went wrong on your site this morning.
    WIN 7
    Chrome Version 37.0.2062.102 m

    Hi
    I received the error while installing the flash player update.

  • Problems while installing flash player.

    when i want to watch a video on certain websites i receive a msg saying that this website functions better with firefox, i downloaded firefox and still the videos wouldn't play with the claim that i need to download flash player- when i already had. i downloaded it over and over again and the problem has not been resolved.
    thank you

    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Trouble while installing flash player update

    please someone can tell me why while the installation of flash player update, adobe tells me to shut internet explorer to be able to continue the installation (first time in years)? i don't understand

    The WHY -  Same as it always has  - is that, like changing oil in a vehicle, it can't be done while it's in use. NO plugin for IE can be updated while in use, and none ever could.
    The HOW - How to close Internet Explorer and other programs running on Windows

Maybe you are looking for

  • My screen is flashing grey and black.

    My screen is flashing black and white. I have tried a soft reset and that didn't fix it.

  • Generating a constant source for Channel gain/fading estimation

    I am using Labview Communication Design suite for programming USRP RIO. I want to measure channel gain between RX-TX pair for which I plan to send a stream of 1111111 and see the received envelope( without modulating for now). Since such source for S

  • Need a code

    Ok i got to make it so that terminal starts up and i know how to do that but i need help to make it type in a code.

  • Audigy 2 ZS in Windows 7 RC1

    Hi everyone, has anyone managed to get an Audigy2ZS working in the release candidate? Which drivers? I've tried a few for the W7 beta, but I always get a "hardware not found" error message, saying there's no compatible hardware on the system. Any ide

  • Speed issue with my WRT54GR

    I have a wireless broadband provider and when plugged directly into the device I am getting 2Meg speed. I bought a Linksys WRT54GR wireless router and after plugging the broadband device into the wireless router I am now only getting about 500Kb/s. W