HDInsight Cluster Creation Functions Get Stuck

Hello, 
I am trying to provision an HDInsight Cluster from PowerShell and from HDInsight .NET SDK.
I am following this tutorials: http://azure.microsoft.com/en-us/documentation/articles/hdinsight-provision-clusters/#powershell
My problem is that in both cases the method/function that creates the cluster gets stuck. It doesn't create the cluster on Azure.
In the case of PowerShell the function is:
# Create a new HDInsight cluster
$config = New-AzureHDInsightClusterConfig -ClusterSizeInNodes $clusterNodes |
    Set-AzureHDInsightDefaultStorage -StorageAccountName $storageAccountName_Default -StorageAccountKey $storageAccountKey_Default -StorageContainerName $containerName_Default |
        New-AzureHDInsightCluster -Name $clusterName -Location $location -VirtualNetworkId $vnetID -SubnetName $subNetName
In the case of HDInsight .NET SDK is:
ClusterDetails cluster = client.CreateCluster(clusterInfo);
Does somebody know what am I doing wrong? Could it be something in the configuration of my storage/blob accounts? 
Thank you in advance.

Hi Carlos,
The issue could be the fact that HDInsight SDK is not synchronization context aware and we have seen this in WebApp and Forms that have this. The following workarounds helps.
override the SynchronizationContext
var sc = new SynchronizationContext();
SynchronizationContext.SetSynchronizationContext(sc);
Invoke SDK commands here
Start an Async task
Task.Run(async () =>
             Invoke SDK commands here
Can you try the above and let us know if that helps?
Maheshwar Jayaraman - http://blogs.msdn.com/mahjayar

Similar Messages

  • Get Stuck At stat.executeQuery(query) Function

    Hi,
    Can Any one Tell.
    What Can be The possible reasons For The executeQuery function get stucked?
    Table from where i am getting the value has only two row.
    and i am using mysql-connector-java-5.1.6-bin.jar driver to get connected to mysql.
    Some times the query works fine , but sometimes it get Stuck at this function , then i have to restart the mysql to work again properly.
    Thanks

    Ashutoshklkkkkkkkkkkkkkkk wrote:
    And the i don't close the connection i just kill the application .
    What can be the side effect of not closing the connection only just killing the application on linux.If you don't close a connection, it stays open until it times out in the DB side. Which may be one hour, but it can also be one day or more. The more unclosed connections you have, the lesser resources the database will have left and it will finally die.
    Always, I repeat, always close expensive resources explicitly. Do that in the finally block. Acquire and close Connection, (Prepared)Statement and ResultSet in the shortest possible scope.

  • Automating the creation of a HDinsight cluster

    Hi,
    I am trying to automate the creation of a HDinsight cluster using Azure Automation to execute a powershell script (the script from the automation gallery). When I try and run this (even without populating any defaults), it errors with the following error:
    "Runbook definition is invalid. In a Windows PowerShell Workflow, parameter defaults may only be simple value types (such as integers) and strings. In addition, the type of the default value must match the type of the parameter."
    The script I am trying to run is:
    <#
     This PowerShell script was automatically converted to PowerShell Workflow so it can be run as a runbook.
     Specific changes that have been made are marked with a comment starting with “Converter:”
    #>
    <#
    .SYNOPSIS
      Creates a cluster with specified configuration.
    .DESCRIPTION
      Creates a HDInsight cluster configured with one storage account and default metastores. If storage account or container are not specified they are created
      automatically under the same name as the one provided for cluster. If ClusterSize is not specified it defaults to create small cluster with 2 nodes.
      User is prompted for credentials to use to provision the cluster.
      During the provisioning operation which usually takes around 15 minutes the script monitors status and reports when cluster is transitioning through the
      provisioning states.
    .EXAMPLE
      .\New-HDInsightCluster.ps1 -Cluster "MyClusterName" -Location "North Europe"
      .\New-HDInsightCluster.ps1 -Cluster "MyClusterName" -Location "North Europe"  `
          -DefaultStorageAccount mystorage -DefaultStorageContainer myContainer `
          -ClusterSizeInNodes 4
    #>
    workflow New-HDInsightCluster99 {
     param (
         # Cluster dns name to create
         [Parameter(Mandatory = $true)]
         [String]$Cluster,
         # Location
         [Parameter(Mandatory = $true)]
         [String]$Location = "North Europe",
         # Blob storage account that new cluster will be connected to
         [Parameter(Mandatory = $false)]
         [String]$DefaultStorageAccount = "tavidon",
         # Blob storage container that new cluster will use by default
         [Parameter(Mandatory = $false)]
         [String]$DefaultStorageContainer = "patientdata",
         # Number of data nodes that will be provisioned in the new cluster
         [Parameter(Mandatory = $false)]
         [Int32]$ClusterSizeInNodes = 2,
         # Credentials to be used for the new cluster
         [Parameter(Mandatory = $false)]
         [PSCredential]$Credential = $null
     # Converter: Wrapping initial script in an InlineScript activity, and passing any parameters for use within the InlineScript
     # Converter: If you want this InlineScript to execute on another host rather than the Automation worker, simply add some combination of -PSComputerName, -PSCredential, -PSConnectionURI, or other workflow common parameters as parameters of
    the InlineScript
     inlineScript {
      $Cluster = $using:Cluster
      $Location = $using:Location
      $DefaultStorageAccount = $using:DefaultStorageAccount
      $DefaultStorageContainer = $using:DefaultStorageContainer
      $ClusterSizeInNodes = $using:ClusterSizeInNodes
      $Credential = $using:Credential
      # The script has been tested on Powershell 3.0
      Set-StrictMode -Version 3
      # Following modifies the Write-Verbose behavior to turn the messages on globally for this session
      $VerbosePreference = "Continue"
      # Check if Windows Azure Powershell is avaiable
      if ((Get-Module -ListAvailable Azure) -eq $null)
          throw "Windows Azure Powershell not found! Please make sure to install them from 
      # Create storage account and container if not specified
      if ($DefaultStorageAccount -eq "") {
          $DefaultStorageAccount = $Cluster.ToLowerInvariant()
          # Check if account already exists then use it
          $storageAccount = Get-AzureStorageAccount -StorageAccountName $DefaultStorageAccount -ErrorAction SilentlyContinue
          if ($storageAccount -eq $null) {
              Write-Verbose "Creating new storage account $DefaultStorageAccount."
              $storageAccount = New-AzureStorageAccount –StorageAccountName $DefaultStorageAccount -Location $Location
          } else {
              Write-Verbose "Using existing storage account $DefaultStorageAccount."
      # Check if container already exists then use it
      if ($DefaultStorageContainer -eq "") {
          $storageContext = New-AzureStorageContext –StorageAccountName $DefaultStorageAccount -StorageAccountKey (Get-AzureStorageKey $DefaultStorageAccount).Primary
          $DefaultStorageContainer = $DefaultStorageAccount
          $storageContainer = Get-AzureStorageContainer -Name $DefaultStorageContainer -Context $storageContext -ErrorAction SilentlyContinue
          if ($storageContainer -eq $null) {
              Write-Verbose "Creating new storage container $DefaultStorageContainer."
              $storageContainer = New-AzureStorageContainer -Name $DefaultStorageContainer -Context $storageContext
          } else {
              Write-Verbose "Using existing storage container $DefaultStorageContainer."
      if ($Credential -eq $null) {
          # Get user credentials to use when provisioning the cluster.
          Write-Verbose "Prompt user for administrator credentials to use when provisioning the cluster."
          $Credential = Get-Credential
          Write-Verbose "Administrator credentials captured.  Use these credentials to login to the cluster when the script is complete."
      # Initiate cluster provisioning
      $storage = Get-AzureStorageAccount $DefaultStorageAccount
      New-AzureHDInsightCluster -Name $Cluster -Location $Location `
            -DefaultStorageAccountName ($storage.StorageAccountName + ".blob.core.windows.net") `
            -DefaultStorageAccountKey (Get-AzureStorageKey $DefaultStorageAccount).Primary `
            -DefaultStorageContainerName $DefaultStorageContainer `
            -Credential $Credential `
            -ClusterSizeInNodes $ClusterSizeInNodes
    Many thanks
    Brett

    Hi,
    it appears that [PSCredential]$Credential = $null is not correct, i to get the same
    error, let me check further on it and revert back to you.
    Best,
    Amar

  • This just started happening.. I open Itunes and the little round rainbow loading indicator just goes on and doesnt stop.. My itunes wont function.. It gets stuck. Then i have to force quit.. I tried to shut down and restart. also reloaded the latest itune

    This just started happening.. I open Itunes and the little round rainbow loading indicator just goes on and doesnt stop.. My itunes wont function.. It gets stuck. Then i have to force quit.. I tried to shut down and restart. also reloaded the latest itune 11.1.3 and it still gets stuck.
    i use an external HD and thats fine.. all files are in there.  But I have no idea why my itunes app is getting stuck.
    Am I the only person this is happening to? What can I do to correct this problem?

    Hi marlonbnyc!
    This article will help provide some basic troubleshooting steps that will serve as a guide for you to resolve this issue:
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/ht1199
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • The select function in Pages and other apps gets stuck and the cursor will not move. What do I do?

    The select function in Pages and other apps gets stuck when I touch a word and the cursor will not move. What is the answer for this problem?

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Mouse getting stuck in scrolling function in scroll boxes

    Hi, as the title says, occasionally the cursor gets stuck in scroll mode, where i can't move the cursor independently, the window just scrolls when i move the trackpad up/down. This only happens with the trackpad on my macbook, but when i use a mouse, there aren't any problems. I'm guessing it's just a function I don't know about that I accidentally activate, but I can't find it!
    any help is appreciated! thanks, joe

    Try going to System Preferences > Keyboard & Mouse > Trackpad and then unclick "Ignore Accidental Trackpad Input." That might fix your problem. It fixed mine when the same thing was happening to me.
    Zeb
    EDIT: Just beware that it WILL pick up "accidental trackpad input" when you turn that off. So when typing, try not to get your hands too close to the trackpad.

  • Iphone 6 gets stuck on text messages and will not function unless i turn the phone off

    Are others experiencing difficulty with the I phone 6 getting "stuck" on text messages?

    I also have the same problem on my 6+

  • Get Stuck in Webutil1.0.6  Configuration & Installation..

    Dear All Experts,
    I m trying to configure and Install webutil1.0.6 on Oracle Developer Suit (9.0.4) in
    Windows XP Professional having the browser Internet explorer 6.0.
    I have done almost all the steps mentioned in Runtime Setup Checklist (Appendix A)
    in “Webutil User’s Guide Release 1.0.6” . Except Step 9 Configure your webutil.cfg file.
    Have a look at my default.env & formsweb.cfg files.
    default.env
    # $Id: win32_os_default.env,v 1.5 2003/10/02 18:42:24 pkuhn Exp $
    # default.env - default Forms environment file, Windows version
    # This file is used to set the Forms runtime environment parameters.
    # If a parameter is not defined here, the value in the Windows registry
    # will be used. If no value is found in the registry, the value used will
    # be that defined in the environment in which the servlet engine (OC4J
    # or JServ) was started.
    # NOTES
    # 1/ The Forms installation process should replace all occurrences of
    # <percent>FORMS_ORACLE_HOME<percent> with the correct ORACLE_HOME
    # setting, and all occurrences of <percent>O_JDK_HOME<percent> with
    # the location of the JDK (usually $ORACLE_HOME/jdk).
    # Please make these changes manually if not.
    # 2/ Some of the variables below may need to be changed to suite your needs.
    # Please refer to the Forms documentation for details.
    ORACLE_HOME=D:\DS10g
    # Search path for Forms applications (.fmx files, PL/SQL libraries)
    # If you need to include more than one directory, they should be semi-colon
    # separated (e.g. /private/dir1;/private/dir2)
    FORMS90_PATH=D:\DS10g\forms90;D:\invsys;D:\DS10g\forms90\webutil_106;D:\Webutil_demo
    # The PATH setting is required in order to pick up the JVM (jvm.dll).
    # The Forms runtime executable and dll's are assumed to be in
    # D:\DS10g\bin if they are not in the PATH.
    # In addition, if you are running Graphics applications, you will need
    # to append the following to the path (where <Graphics Oracle Home> should
    # be replaced with the actual location of your Graphics 6i oracle_home):
    # ;<Graphics Oracle Home>\bin;<Graphics Oracle Home>\jdk\bin
    PATH=D:\DS10g\bin;D:\DS10g\jdk\jre\bin\client
    # Settings for Graphics
    # NOTE: These settings are only needed if Graphics applications
    # are called from Forms applications. In addition, you will need to
    # modify the PATH variable above as described above.
    # Please uncomment the following and put the correct 6i
    # oracle_home value to use Graphics applications.
    #ORACLE_GRAPHICS6I_HOME=<your Graphics 6i oracle_home here>
    # Search path for Graphics applications
    #GRAPHICS60_PATH=
    # Settings for forms9i tracing and logging
    # Note: This entry has to be uncommented to enable tracing and
    # logging.
    #FORMS90_TRACE_PATH=<FORMS_ORACLE_HOME>\forms90\server
    # System settings
    # You should not normally need to modify these settings
    FORMS90=D:\DS10g\forms90
    WEBUTIL_CONFIG=D:\DS10g\forms90\webutil_106\server\webutil.cfg
    # Java class path
    # This is required for the Forms debugger
    # You can append your own Java code here)
    # f90srv.jar, repository.jar and ldapjclnt9.jar are required for
    # the password expiry feature to work(#2213140).
    CLASSPATH=D:\DS10g\j2ee\OC4J_BI_Forms\applications\forms90app\
    forms90web\WEB-INF\lib\f90srv.jar;D:\DS10g\jlib\repository.jar;
    D:\DS10g\jlib\ldapjclnt9.jar;D:\DS10g\jlib\debugger.jar;D:\DS10g\forms90\webutil_106\java\frmwebutil.jar;D:\DS10g\jlib\ewt3.jar;D:\DS10g\jlib\share.jar;D:\DS10g\jlib\utj90.jar;
    D:\DS10g\jlib\zrclient.jar;D:\DS10g\reports\jlib\rwrun.jar;D:\DS10g\jdk\jre\lib\rt.jar;D:\DS10g\forms90\java\f90all.jar
    formsweb.cfg
    # $Id: formsweb.cfg,v 1.24 2003/08/22 01:07:35 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (f90servlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overriden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/servlet/f90servlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: base HTML file for use with Microsoft Internet Explorer
    # (when using the native JVM)
    baseHTMLie=baseie.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms90 if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # System parameter: JVM option for Microsoft Internet Explorer.
    # This parameter specifies how to execute the Forms applet under
    # Microsoft Internet Explorer 5.x or above. Put IE=native if you want
    # the Forms applet to run in the browser's native JVM.
    IE=JInitiator
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms90/l90servlet
    # Forms applet parameter
    codebase=/forms90/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=f90all_jinit.jar;invsysicons.jar;frmwebutil.jar;jacob.jar
    # webutil....
    WebUtilArchive=frmwebutil.jar;jacob.jar
    # Forms applet archive setting for Microsoft Internet Explorer native JVM
    archive_ie=f90all.cab
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=f90all.jar;invsysicons.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms90/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0017-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,17
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.17
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/plugin/1.3/plugin-install.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;version=1.3
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=D:\DS10g
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/servlet/f90servlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration affecting users of MicroSoft Internet Explorer 5.x.
    # Forms applet will run under the browser's native JVM rather than using Oracle JInitiator.
    [ienative]
    IE=native
    # Example Named Configuration Section
    # Example 3: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    baseHTMLie=basejpi.htm
    # Example Named Configuration Section
    # Example 4: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms90/l90servlet/debug
    # Trying own applications
    [itsys]
    form=frm_sline.fmx
    userid=docsys/docsys@orauma
    separateFrame=True
    lookandfeel=Generic
    # Inventory system UMA, applications
    [invsys]
    form=FRM_LOGIN.fmx
    userid=docsys/docsys@orauma
    lookandfeel=Generic
    # Sample configuration for deploying WebUtil.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTML=webutilbase.htm
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    [webutilie]
    IE=native
    webUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTML=webutilbase.htm
    baseHTMLie=webutilbase.htm
    archive=frmall.jar
    lookAndFeel=oracle
    [webutiljpi]
    webUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljpi.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTMLie=webutiljpi.htm
    baseHTML=webutiljpi.htm
    archive=frmall.jar
    lookAndFeel=oracle
    NOW while I run form from RuntimeSettings=default
    http://rana-adnan.umarine.local:8889/forms90/f90servlet?userid=docsys/docsys@orauma
    Form runs successfully on browser but while pressing button for File Open OR Save As
    It shows the error
    Oracle.forms.webutil.file.FileFunctions bean not found.
    WEBUTIL_FILE.FILE_SELECTION_DIALOG_INT will not work.
    AND while I run form from RuntimeSettings=webutil or webutilie or webutiljpi
    http://rana-adnan.umarine.local:8889/forms90/f90servlet?config=webutil&userid=docsys/docsys@orauma
    Form does not run and browser gives the error
    500 Internal Server Error
    Forms Servlet Error.
    Missing or invalid value for baseHTML parameter.
    Please check the servlet configuration to make sure this value specifies a valid file.
    I get stuck here.
    Kindly help me to use webutil1.0.6
    Thanks
    Rana Adnan

    Dear,
    Now I have Installed the Jinitiator1.3.1.22 in C:\Program Files\Oracle\JInitiator 1.3.1.22
    and edit the configuration in formsweb.cfg
    Now it looks
    # $Id: formsweb.cfg,v 1.24 2003/08/22 01:07:35 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (f90servlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overriden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/servlet/f90servlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: base HTML file for use with Microsoft Internet Explorer
    # (when using the native JVM)
    baseHTMLie=baseie.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms90 if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # System parameter: JVM option for Microsoft Internet Explorer.
    # This parameter specifies how to execute the Forms applet under
    # Microsoft Internet Explorer 5.x or above. Put IE=native if you want
    # the Forms applet to run in the browser's native JVM.
    IE=JInitiator
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms90/l90servlet
    # Forms applet parameter
    codebase=/forms90/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=f90all_jinit.jar,invsysicons.jar,frmwebutil.jar,jacob.jar
    # webutil....
    WebUtilArchive=frmwebutil.jar,jacob.jar
    # Forms applet archive setting for Microsoft Internet Explorer native JVM
    archive_ie=f90all.cab
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=f90all.jar;invsysicons.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms90/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,22
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/plugin/1.3/plugin-install.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;version=1.3
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=D:\DS10g
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/servlet/f90servlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration affecting users of MicroSoft Internet Explorer 5.x.
    # Forms applet will run under the browser's native JVM rather than using Oracle JInitiator.
    [ienative]
    IE=native
    # Example Named Configuration Section
    # Example 3: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    baseHTMLie=basejpi.htm
    # Example Named Configuration Section
    # Example 4: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms90/l90servlet/debug
    # Trying own applications
    [itsys]
    form=frm_sline.fmx
    userid=docsys/docsys@orauma
    separateFrame=True
    lookandfeel=Generic
    # Inventory system UMA, applications
    [invsys]
    form=FRM_LOGIN.fmx
    userid=docsys/docsys@orauma
    lookandfeel=Generic
    # Sample configuration for deploying WebUtil.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=on
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=AllWebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTML=webutilbase.htm
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=f90all_jinit.jar
    archive=f90all.jar
    lookAndFeel=oracle
    [webutilie]
    IE=native
    webUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTML=webutilbase.htm
    baseHTMLie=webutilbase.htm
    archive=f90all.jar
    lookAndFeel=oracle
    [webutiljpi]
    webUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljpi.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTMLie=webutiljpi.htm
    baseHTML=webutiljpi.htm
    archive=f90all.jar
    lookAndFeel=oracle
    Now when I run the form then browser shows Jinitiator Security Warning dialog and I clicked on "Grant this Session" and it show nothing
    and java console showing this..
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\rana.adnan
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\rana.adnan\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://rana-adnan.umarine.local:8889/forms90/java/frmwebutil.jar from JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6
    Is there any signing jar files problem or any other?
    Please help
    Thanks
    Rana adnan

  • Logout, restart, shutdown all get stuck

    After Quicksilver G4 has been idle for a few hours and I come along to shut it down or log out, it starts the process but gets stuck at the blue screen and spinning doohickey. (not the beachball). I've let it sit for over a half hour.
    I can SSH into it and there are no stuck processes, no CPU overload, no memory overruns. It's just sitting there drooling.
    The only other symptom is that the eject key doesn't function sometimes. If it is one of those times, I can be sure it will hang on reboot. Other times the eject key works fine regardless of whether there is a disc in there or not.
    Happened with 10.5, 10.5.1, 10.5.2, but never with 10.4.x
    Strange huh?

    Open Activity Monitor (/Applications/Utilities/Activity Monitor.app), and see if you can spot any thing to do with Safari or Firefox in there.

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • OVM Server takes long time to boot up - gets stuck for minutes after joining domain

    Server takes a long time to reboot. Seems to get stuck for 8-10 minutes every time after joining domain.
    See below extract from /var/log/messages:-
    Feb 1 16:39:49 svrshir441 kernel: OCFS2 1.8.0
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB0000050000E5144BF336A244A4 ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,4) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB00000500000328DE591E03F0DB ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,2) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB000005000024F2772BB88DAA6A ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,5) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB0000050000B8721C8850D2C515 ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,1) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB0000050000EE77A2D3C8C7383B ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,0) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain 0004FB0000050000B96BA1B4B79D765E ( 0 1 2 ) 3 nodes
    Feb 1 16:39:49 svrshir441 kernel: ocfs2: Mounting device (252,3) on (node 1, slot 2) with ordered data mode.
    Feb 1 16:39:49 svrshir441 kernel: o2dlm: Joining domain ovm ( 0 1 2 ) 3 nodes
    Feb 1 16:47:22 svrshir441 kernel: mpt2sas0: _ctl_BRM_status_show: BRM attribute is only forwarpdrive
    Feb 1 16:47:22 svrshir441 kernel: mpt2sas0: _ctl_host_trace_buffer_show: host_trace_buffer is not registered
    Feb 1 16:47:22 svrshir441 kernel: mpt2sas0: _ctl_host_trace_buffer_size_show: host_trace_buffer is not registered
    Feb 1 16:47:22 svrshir441 kernel: qla2xxx [0000:30:00.0]-1020:7: **** Failed mbx[0]=4006
    No idea why it seems to pause for 8 minutes.

    [2015-02-01 16:38:23 9555] DEBUG (ocfs2:162) cluster debug: {'/sys/kernel/debug/o2dlm': [], '/sys/kernel/debug/o2net': ['connected_n
    odes', 'stats', 'sock_containers', 'send_tracking'], '/sys/kernel/debug/o2hb': ['0004FB0000050000E5144BF336A244A4', 'failed_regions'
    , 'quorum_regions', 'live_regions', 'livenodes'], 'service o2cb status': 'Driver for "configfs": Loaded\nFilesystem "configfs": Moun
    ted\nStack glue driver: Loaded\nStack plugin "o2cb": Loaded\nDriver for "ocfs2_dlmfs": Loaded\nFilesystem "ocfs2_dlmfs": Mounted\nCh
    ecking O2CB cluster "8cd10008859eaf59": Online\n  Heartbeat dead threshold: 61\n  Network idle timeout: 60000\n  Network keepalive d
    elay: 2000\n  Network reconnect delay: 2000\n  Heartbeat mode: Global\nChecking O2CB heartbeat: Active\n  0004FB0000050000E5144BF336
    A244A4 /dev/dm-4\nNodes in O2CB cluster: 0 1 2 \n'}
    [2015-02-01 16:38:23 9555] DEBUG (ocfs2:162) cluster debug: {'/sys/kernel/debug/o2dlm': [], '/sys/kernel/debug/o2net': ['connected_n
    odes', 'stats', 'sock_containers', 'send_tracking'], '/sys/kernel/debug/o2hb': ['0004FB0000050000E5144BF336A244A4', 'failed_regions'
    , 'quorum_regions', 'live_regions', 'livenodes'], 'service o2cb status': 'Driver for "configfs": Loaded\nFilesystem "configfs": Moun
    ted\nStack glue driver: Loaded\nStack plugin "o2cb": Loaded\nDriver for "ocfs2_dlmfs": Loaded\nFilesystem "ocfs2_dlmfs": Mounted\nCh
    ecking O2CB cluster "8cd10008859eaf59": Online\n  Heartbeat dead threshold: 61\n  Network idle timeout: 60000\n  Network keepalive d
    elay: 2000\n  Network reconnect delay: 2000\n  Heartbeat mode: Global\nChecking O2CB heartbeat: Active\n  0004FB0000050000E5144BF336
    A244A4 /dev/dm-4\nNodes in O2CB cluster: 0 1 2 \n'}
    [2015-02-01 16:38:23 9555] DEBUG (ocfs2:270) Trying to mount /dev/mapper/360080e500036115200000b315294458d to /poolfsmnt/0004fb00000
    50000e5144bf336a244a4
    [2015-02-01 16:38:23 9555] DEBUG (ocfs2:295) /dev/mapper/360080e500036115200000b315294458d mounted to /poolfsmnt/0004fb0000050000e51
    44bf336a244a4
    [2015-02-01 16:38:24 10441] INFO (notificationserver:213) NOTIFICATION SERVER STARTED
    [2015-02-01 16:38:24 10443] INFO (remaster:140) REMASTER SERVER STARTED
    [2015-02-01 16:38:24 10444] INFO (monitor:23) MONITOR SERVER STARTED
    [2015-02-01 16:38:24 10447] INFO (ha:89) HA SERVER STARTED
    [2015-02-01 16:38:24 10448] INFO (stats:26) STAT SERVER STARTED
    [2015-02-01 16:38:24 10451] INFO (xmlrpc:307) Oracle VM Agent XMLRPC Server started.
    [2015-02-01 16:38:24 10451] INFO (xmlrpc:316) Oracle VM Server version: {'release': '3.2.8', 'date': '201404161506', 'build': '736'}
    , hostname: svrshir441, ip: 10.90.17.41
    [2015-02-01 16:38:24 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:38:24 10441] DEBUG (notificationserver:239) Connected to manager.
    [2015-02-01 16:38:25 10441] INFO (notificationserver:267) Service started.
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdb-7:0:0:0 (unde
    f:0x20470080e5361152:360080e500036115200000b315294458d)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdh-9:0:0:0 (acti
    ve:0x20460080e5361152:360080e500036115200000b315294458d)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdd-7:0:0:2 (unde
    f:0x20470080e5361152:360080e500036115200000b36529447cb)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdj-9:0:0:2 (acti
    ve:0x20460080e5361152:360080e500036115200000b36529447cb)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdf-7:0:0:4 (unde
    f:0x20470080e5361152:360080e500036115200000b39529448ba)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdl-9:0:0:4 (acti
    ve:0x20460080e5361152:360080e500036115200000b39529448ba)
    [2015-02-01 16:38:25 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdc-7:0:0:1 (acti
    ve:0x20470080e5361152:360080e500037683a00000b1652944694)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdi-9:0:0:1 (unde
    f:0x20460080e5361152:360080e500037683a00000b1652944694)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sde-7:0:0:3 (acti
    ve:0x20470080e5361152:360080e500037683a00000b18529448bf)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdk-9:0:0:3 (unde
    f:0x20460080e5361152:360080e500037683a00000b18529448bf)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdg-7:0:0:5 (acti
    ve:0x20470080e5361152:360080e500037683a00000b1a529449ac)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_SD] sdm-9:0:0:5 (unde
    f:0x20460080e5361152:360080e500037683a00000b1a529449ac)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-5 (360080e5000
    36115200000b39529448ba)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-1 (360080e5000
    36115200000b36529447cb)
    [2015-02-01 16:38:26 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-0 (360080e5000
    37683a00000b1652944694)
    [2015-02-01 16:38:27 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-2 (360080e5000
    37683a00000b18529448bf)
    [2015-02-01 16:38:27 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-3 (360080e5000
    37683a00000b1a529449ac)
    [2015-02-01 16:38:27 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:25 {STORAGE} [ADD_DM] dm-4 (360080e5000
    36115200000b315294458d)
    [2015-02-01 16:38:29 10444] DEBUG (monitor:36) Cluster state changed from [Unknown] to [DLM_Ready]
    [2015-02-01 16:38:29 10444] INFO (notification:47) Notification sent: {CLUSTER} {MONITOR} Cluster state changed from [Unknown] to [D
    LM_Ready]
    [2015-02-01 16:38:29 10441] INFO (notificationserver:139) Sending notification: {CLUSTER} {MONITOR} Cluster state changed from [Unkn
    own] to [DLM_Ready]
    [2015-02-01 16:38:33 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:33 {NETWORK} net : ADD : eth4 (1)
    [2015-02-01 16:38:36 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:36 {NETWORK} net : ADD : eth5 (1)
    [2015-02-01 16:38:39 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:39 {NETWORK} net : ADD : eth6 (0)
    [2015-02-01 16:38:42 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:42 {NETWORK} net : ADD : eth7 (1)
    [2015-02-01 16:38:45 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:45 {NETWORK} net : ADD : eth0 (1)
    [2015-02-01 16:38:48 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:48 {NETWORK} net : ADD : eth1 (1)
    [2015-02-01 16:38:51 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:51 {NETWORK} net : ADD : eth2 (0)
    [2015-02-01 16:38:54 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:54 {NETWORK} net : ADD : eth3 (1)
    [2015-02-01 16:38:57 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:38:57 {NETWORK} net : ADD : bond0 (1)
    [2015-02-01 16:39:00 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:39:00 {NETWORK} net : ADD : bond1 (1)
    [2015-02-01 16:39:03 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:39:03 {NETWORK} net : ADD : bond1.590 (1)
    [2015-02-01 16:39:06 10441] INFO (notificationserver:139) Sending notification: Feb  1 16:39:06 {NETWORK} net : ADD : bond1.90 (1)
    [2015-02-01 16:40:56 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) None&c=8&s=
    1422808694292&lb=p&t=2&p=%3Ccom.oracle.odof.OdofIdentifier%3E%3Clong%3E943%3C%2Flong%3E%3C%2Fcom.oracle.odof.OdofIdentifier%3E%2Ccom
    pareTo%2Cjava.lang.Object%2CNone%2C5'
    [2015-02-01 16:41:05 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) https://10.
    90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1767abc
    [2015-02-01 16:41:26 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) https://10.
    90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1767abc
    [2015-02-01 16:41:47 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) https://10.
    90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1767abc
    [2015-02-01 16:42:05 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) https://10.
    90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1767abc
    [2015-02-01 16:42:26 10441] ERROR (notificationserver:124) Error sending stats notification: 'Invalid URL Request (send) https://10.
    90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1767abc
    [2015-02-01 16:42:26 10441] INFO (notificationserver:276) Service stopped.
    [2015-02-01 16:42:26 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:42:29 10441] ERROR (notificationserver:244) Error initializing notification server: 'Invalid URL Request (send) https
    ://10.90.17.43:7002/ovm/core/OVMManagerCoreServlet&c=1&s=-1&lb=p&t=2&p=e02400aa0010ffffffffffffff200008%2Cc58171c45d024e7c9de519aaf1
    767abc'
    [2015-02-01 16:42:45 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:42:59 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:43:05 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:43:25 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:43:32 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:43:45 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:44:02 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:44:05 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:44:25 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:44:32 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:44:46 10448] ERROR (notification:44) Unable to send notification: (111, 'Connection refused')
    [2015-02-01 16:44:53 11242] DEBUG (service:76) call start: discover_server
    [2015-02-01 16:44:54 11242] DEBUG (service:76) call complete: discover_server
    [2015-02-01 16:45:02 10441] DEBUG (notificationserver:237) Trying to connect to manager.
    [2015-02-01 16:45:02 10441] DEBUG (notificationserver:239) Connected to manager.
    [2015-02-01 16:45:03 10441] INFO (notificationserver:267) Service started.
    [2015-02-01 16:47:22 11455] DEBUG (service:76) call start: get_api_version
    [2015-02-01 16:47:22 11455] DEBUG (service:76) call complete: get_api_version
    [2015-02-01 16:47:22 11456] DEBUG (service:76) call start: discover_server
    [2015-02-01 16:47:22 11456] DEBUG (service:76) call complete: discover_server
    [2015-02-01 16:47:22 11470] DEBUG (service:76) call start: discover_hardware
    [2015-02-01 16:47:23 11470] DEBUG (service:76) call complete: discover_hardware
    [2015-02-01 16:47:23 11497] DEBUG (service:76) call start: discover_network
    [2015-02-01 16:47:23 11497] DEBUG (service:76) call complete: discover_network
    [2015-02-01 16:47:24 11498] DEBUG (service:76) call start: discover_storage_plugins
    [2015-02-01 16:47:24 11498] DEBUG (service:76) call complete: discover_storage_plugins
    [2015-02-01 16:47:24 11501] DEBUG (service:74) call start: discover_physical_luns('',)
    [2015-02-01 16:47:25 11501] DEBUG (service:76) call complete: discover_physical_luns
    [2015-02-01 16:47:25 11523] DEBUG (service:74) call start: discover_physical_luns('360080e500036115200000b315294458d 360080e50003611
    5200000b36529447cb 360080e500037683a00000b1652944694 360080e500036115200000b39529448ba 360080e500037683a00000b18529448bf 360080e5000
    36115200000b315294458d 360080e500037683a00000b1a529449ac 360080e500036115200000b36529447cb 360080e500037683a00000b1652944694 360080e
    500036115200000b39529448ba 360080e500037683a00000b18529448bf 360080e500037683a00000b1a529449ac',)
    [2015-02-01 16:47:25 11523] DEBUG (service:76) call complete: discover_physical_luns
    [2015-02-01 16:47:26 11545] DEBUG (service:76) call start: discover_repository_db
    [2015-02-01 16:47:26 11545] DEBUG (service:76) call complete: discover_repository_db
    [2015-02-01 16:47:26 11546] DEBUG (service:74) call start: storage_plugin_listMountPoints('oracle.ocfs2.OCFS2.OCFS2Plugin', {'status
    ': '', 'admin_user': '', 'admin_host': '', 'uuid': '0004fb000009000090ee9ab5a5966c67', 'total_sz': 0, 'admin_passwd': '******', 'fre
    e_sz': 0, 'name': '0004fb000009000090ee9ab5a5966c67', 'access_host': '', 'storage_type': 'FileSys', 'alloc_sz': 0, 'access_grps': []
    , 'used_sz': 0, 'storage_desc': ''})
    [2015-02-01 16:47:26 11546] INFO (storageplugin:109) storage_plugin_listMountPoints(oracle.ocfs2.OCFS2.OCFS2Plugin)
    [2015-02-01 16:47:27 11546] DEBUG (service:76) call complete: storage_plugin_listMountPoints
    [2015-02-01 16:47:27 11573] DEBUG (service:76) call start: get_yum_config
    [2015-02-01 16:47:27 11573] DEBUG (service:76) call complete: get_yum_config
    [2015-02-01 16:47:27 11574] DEBUG (service:76) call start: discover_cluster
    [2015-02-01 16:47:27 11574] DEBUG (service:76) call complete: discover_cluster
    [2015-02-01 16:48:53 11703] DEBUG (service:76) call start: discover_network
    [2015-02-01 16:48:53 11703] DEBUG (service:76) call complete: discover_network
    [2015-02-01 16:48:53 11704] DEBUG (service:74) async call start: start_vm('0004fb00000300001e5b01d4a4cb6426', '0004fb0000060000eff93
    af0676e8c83')
    [2015-02-01 16:48:53 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-eff9-3af0676e8c83 {START
    [2015-02-01 16:48:54 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-eff9-3af0676e8c83 {VNC}
    5900
    [2015-02-01 16:48:54 11706] DEBUG (base:269) async call complete: func: start_vm pid: 11706 status: 0 output:
    [2015-02-01 16:48:54 11706] INFO (notification:47) Notification sent: {ASYNC_PROC} exit PID 11706
    [2015-02-01 16:48:54 10441] INFO (notificationserver:139) Sending notification: {ASYNC_PROC} exit PID 11706
    [2015-02-01 16:48:55 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb0000060000eff93af0676e8c83 {SSLVNC} 6
    900
    [2015-02-01 16:48:55 11958] DEBUG (service:74) call start: configure_vm_ha('0004fb00000300001e5b01d4a4cb6426', '0004fb0000060000eff9
    3af0676e8c83', True)
    [2015-02-01 16:48:56 11958] DEBUG (service:76) call complete: configure_vm_ha
    [2015-02-01 16:48:56 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb0000060000eff93af0676e8c83 {SSLTTY} 7
    900
    [2015-02-01 16:50:01 12075] DEBUG (service:76) call start: discover_network
    [2015-02-01 16:50:01 12075] DEBUG (service:76) call complete: discover_network
    [2015-02-01 16:50:01 12076] DEBUG (service:74) async call start: start_vm('0004fb0000030000ba5b6d02faa88c44', '0004fb0000060000fd7d7
    ad27e9d7b63')
    [2015-02-01 16:50:02 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-fd7d-7ad27e9d7b63 {START
    [2015-02-01 16:50:02 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-fd7d-7ad27e9d7b63 {VNC}
    5901
    [2015-02-01 16:50:02 12078] DEBUG (base:269) async call complete: func: start_vm pid: 12078 status: 0 output:
    [2015-02-01 16:50:02 12078] INFO (notification:47) Notification sent: {ASYNC_PROC} exit PID 12078
    [2015-02-01 16:50:03 10441] INFO (notificationserver:139) Sending notification: {ASYNC_PROC} exit PID 12078
    [2015-02-01 16:50:03 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb0000060000fd7d7ad27e9d7b63 {SSLVNC} 6
    901
    [2015-02-01 16:50:04 12516] DEBUG (service:74) call start: configure_vm_ha('0004fb0000030000ba5b6d02faa88c44', '0004fb0000060000fd7d
    7ad27e9d7b63', True)
    [2015-02-01 16:50:04 12516] DEBUG (service:76) call complete: configure_vm_ha
    [2015-02-01 16:50:04 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb0000060000fd7d7ad27e9d7b63 {SSLTTY} 7
    902
    [2015-02-01 16:50:54 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-fd7d-7ad27e9d7b63 {VMAPI
    } VMAPIEvent {"VMAPIEvent":{"severity":5,"subsystem":"OVMSvcSS","process":"OVMSvc","type":"system","payload":{"type":"alive","alive"
    :{"hostname":"GIS-DB-SVR1","domainName":"gloscc.gov.uk","osType":"Windows","osVersion":"Windows Server 2008 R2 Service Pack 1","kern
    elVersion":"6.1.7601.18700","arch":"AMD64","guestType":"PVHVM","guestDriverVersion":"3.2.2.0","vmapiVersion":"100"}}}}
    [2015-02-01 16:50:54 10441] INFO (notificationserver:139) Sending notification: {DOMAIN} 0004fb00-0006-0000-fd7d-7ad27e9d7b63 {VMAPI
    } VMAPIEvent {"VMAPIEvent":{"severity":5,"subsystem":"OVMSvcSS","process":"OVMSvc","type":"system","payload":{"type":"IPChange","IPC
    hange":{"intrface":"Oracle VM Virtual Ethernet Adapter","mac":"0021f6000001","ipv4info":{"ipinfo":[{"address":"10.90.0.66","netmask"
    :"255.255.255.0","gateway":"","mtu":1500,"speed":1000000000}]},"ipv6info":{"ipinfo":[{"address":"fe80::993f:d5f4:599d:fa4%14","netma
    sk":"255.255.255.0","gateway":"","mtu":1500,"speed":1000000000}]}}}}}

  • My Phone is getting stuck in App mode and I have to reboot to get back to the regular screen? What ever app I'm in works but I cant exit?

    My Iphone 4 is getting stuck in what ever App or screen I have open. I have to reboot to get back to the normal screen. I have done a reset with no change. Any advice?

    I'm assuming your iPhone is not jailbroken?
    You likely have an app that's misbehaving.  Try restoring as new and see how it runs factory fresh.
    Also, maybe your Home button is not functioning correctly.  This has been a widely reported problem.  Try cleaning under it with a vacuum or compressed air.
    Note that you have a 1 year warranty - you may need to use it.

  • W510 Solid State Drive (SSD) Gets Stuck Causing BSoD. Why?

    Hey guys, this has been a problem for a while now, and it is really mind boggling ... I have a Lenovo ThinkPad W510 laptop with a 256GB Crucial M4 SSD drive. Ever so randomly the drive just hangs, the LED light that the drive is trying to load something stays "ON" for up to 5 minutes or so before it finally goes into a Blue Screen of Death (BSoD). Once it goes into BSoD the laptop reboots and it gets stuck on the ThinkPad motherboard logo, eventually it will display "ERROR 2100: HDD0 (Hard Disk Drive) initialization error (X)" Where X is usually 1 or 2, sometimes 3 but rarely. It will not function again until I physically turn it off and back on using the power button.
    A little bit of background about the problem, this is my 3rd Crucial 256GB M4 SSD, Crucial has been very helpful and they went as far as replacing the drive twice, i am starting to highly doubt its a drive issue, I think it could be something from the laptop itself. To be more clear, my laptop has also been serviced back in March (Motherboard was swapped as well as keyboard), parts failure. It was all done in very timely manner and everything was OK after the swap.
    A representative from Crucial told me that this is a classical problem with the SATA controller driver handling TRIM, he said the drive is getting stuck in an infinite TRIM state which causes the BSoD, after that the drive goes into some sort of a "panic" mode to protect itself and doesn't function again until a full power cycle. (thus the need to turn off and then on the laptop) he also added it could be fixed by installing the correct SATA controller driver.
    I have tried to use the default windows SATA controller driver, and I have tried to use the Intel one too, and it seems to happen less often with the windows drivers, but overall, it happens at least once a day. It is really frustrating and I am not able to get anywhere with it.
    Any help or advice is highly appreciated. I am considering getting rid of the Crucial SSD altogether and just using Intel SSD instead, but I am really doubtful that it is the SSD's fault especially that its the 3rd one I use. I also know a couple of friends who own ThinkPads with Crucial M4 SSD inside them, and they seem to be working very well for them.
    Thanks in advance,
    Al.

    Hi again,
    Ok so I have applied the fix you have mentioned above, and it did improve (lower) the frequency of the problem happening. It really improved a lot significantly when I uninstalled the Intel drivers and used the Windows 7 built in SATA controller drivers.
    However, ... it still happens ... less frequent, but it still takes place, my SSD still gets stuck at least once in 3 days now, or once in 2 days (after severe testing) and the same scenario happens. I am really stuck at this point, and not sure which direction to take.
    Any help would really be appreciated, if you have / know any method to debug the BSoD's I get and a way to locate the source of the problem I am willing to go through it 1 by 1 and solve this problem before deciding to finally just giving up on the drive altogether.
    Sincerely,
    Al.

  • Failover Cluster creation fails 2012R2

    Create Cluster
    Cluster: FailoverCluster
    Node: WS2012R2-2.yottabyte.inc
    Node: WS2012R2-1.yottabyte.inc
    IP Address: DHCP address on 192.168.136.0/24
    Started 3/31/2015 11:48:52 PM
    Completed 3/31/2015 11:52:13 PM
    Beginning to configure the cluster FailoverCluster. 
    Initializing Cluster FailoverCluster. 
    Validating cluster state on node WS2012R2-2.yottabyte.inc. 
    Find a suitable domain controller for node WS2012R2-2.yottabyte.inc. 
    Searching the domain for computer object 'FailoverCluster'. 
    Bind to domain controller \\WS2012R2-1.yottabyte.inc. 
    Check whether the computer object FailoverCluster for node WS2012R2-2.yottabyte.inc exists in the domain. Domain controller \\WS2012R2-1.yottabyte.inc. 
    Computer object for node WS2012R2-2.yottabyte.inc does not exist in the domain. 
    Creating a new computer account (object) for 'FailoverCluster' in the domain. 
    Check whether the computer object WS2012R2-2 for node WS2012R2-2.yottabyte.inc exists in the domain. Domain controller \\WS2012R2-1.yottabyte.inc. 
    Creating computer object in organizational unit CN=Computers,DC=yottabyte,DC=inc where node WS2012R2-2.yottabyte.inc exists. 
    Create computer object FailoverCluster on domain controller \\WS2012R2-1.yottabyte.inc in organizational unit CN=Computers,DC=yottabyte,DC=inc. 
    Check whether the computer object FailoverCluster for node WS2012R2-2.yottabyte.inc exists in the domain. Domain controller \\WS2012R2-1.yottabyte.inc. 
    Configuring computer object 'FailoverCluster in organizational unit CN=Computers,DC=yottabyte,DC=inc' as cluster name object. 
    Get GUID of computer object with FQDN: CN=FAILOVERCLUSTER,CN=Computers,DC=yottabyte,DC=inc 
    Validating installation of the Network FT Driver on node WS2012R2-2.yottabyte.inc. 
    Validating installation of the Cluster Disk Driver on node WS2012R2-2.yottabyte.inc. 
    Configuring Cluster Service on node WS2012R2-2.yottabyte.inc. 
    Validating installation of the Network FT Driver on node WS2012R2-1.yottabyte.inc. 
    Validating installation of the Cluster Disk Driver on node WS2012R2-1.yottabyte.inc. 
    Configuring Cluster Service on node WS2012R2-1.yottabyte.inc. 
    Waiting for notification that Cluster service on node WS2012R2-2.yottabyte.inc has started. 
    Forming cluster 'FailoverCluster'. 
    Unable to successfully cleanup. 
    An error occurred while creating the cluster and the nodes will be cleaned up. Please wait... 
    An error occurred while creating the cluster and the nodes will be cleaned up. Please wait... 
    There was an error cleaning up the cluster nodes. Use Clear-ClusterNode to manually clean up the nodes. 
    There was an error cleaning up the cluster nodes. Use Clear-ClusterNode to manually clean up the nodes. 
    An error occurred while creating the cluster.
    An error occurred creating cluster 'FailoverCluster'.
    This operation returned because the timeout period expired
    To troubleshoot cluster creation problems, run the Validate a Configuration wizard on the servers you want to cluster.
    While creating cluster I am getting this error? Any solution please.
    Thank You

    Did you follow the instruction "To troubleshoot cluster creation problems, run the Validate a Configuration wizard on the servers you want to cluster"?  Any warnings/errors?
    . : | : . : | : . tim

  • IDVD problem burning and multiplexing - gets stuck but ejects the DVD and the DVD doesn't play

    I am having trouble burning DVDs.  Everything seems to be working fine during the iDVD project creation.  I can watch the movie and select scenes within iDVD.  Then, when I go to burn the DVD, it gets stuck at the burning/multiplexing stage - the wheel just keeps spinning and says there is about a minute left.  Yet it ejects the DVD and the DVD won't play when inserted into a DVD player.  It will show the intro and the scene selection pages but when you click on one of the scenes, it gets stuck and doesn't play.  I have already uninstalled and reinstalled iDVD.  The problem persists.  It seems like the burner itself is the problem.  What can I do to fix it?  I have Mac OS X Version 10.6.8 with a 2.8 GHzintel Core 2 Duo and iDVD version 7.0.4.

    Hi
    Multiplexing error is a very complex problem due to many things (long long list following) - one common but not obvious reason is that material on the iDVD menu goes outside the TV-Safe area (or just touching it).
    So first - turn on TV-Safe area and move any object well inside of this.
    Wide screen stretched - usually (as I think) it is due to making a 4x3 movie in a 16x9 wide-screen project OR the other way around. This forces one to on flat-screen TV (or other) set the presenting view right - My has 4x3, wide-screen, zoom and auto-wide-screen and I have to switch this by my remote for some DVD I've made "wrong" way.
    Now my long long list on Multiplex Error
    LONG LONG LONG LIST
    Multiplexing Error
    PART One.
    Use of strange video/audio material e.g. .avi, .wmv, .mp3 etc.
    I only use.
    Video - StreamingDV (miniDV tape via FireWire) and
    Audio - .aiff (as on audio-CDs) (else converted to this .aiff 48KHz)
    Photo - .jpg (.bmp known problematic)
    Chapters !
    A.    Using strange letters in video project name e.g. +,/; etc. keep to a-z and 0-9 strange letters in project name e.g. +
    as described by Donnyboy69.  Does the title of your project have any symbols or decimal points in it. If so, that is why you are getting the error. I had a project that had a + sign which caused the same problem. I renamed it without the symbol and low and behold, it worked.
    B.    Location of Chapters
    • Can’t be at start or end of movie (Skip first/start one - iDVD sets this by it self. At the End - no need)
    • Not in a transition (or within 2-3 seconds from it)
    Important when from iMovie HD6 or previous - Now also observed when using FCE 4
    PART Two.
    from Robert Modero.
    "Multiplexing Error. Problem during initialization of tracks"
    Simply remember to add subtitles to your Quicktime files and menu buttons.
    Once I did that, I was back in business.
    from Boise Jim
    Do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    I always makes a DiskImage first and test this so that it runs OK
    I use only - Verbatim DVDs
    I use only - DVD-R
    I burn at an as slow speed possibly e.g. x1
    This gives good DVDs
    PART Three.
    Multiplex Error
    Chuck, Chicago 2/7/2009.
    Back again. Here is what I have found to work. I also have and use a LaCie DVD-R/RW DL external drive and a LaCie external hard drive as well. Since yesterday I have tried a few ways to burn a themed iDVD project having four 56 minute movies on it, amounting to 226 minutes onto a DVD DL disc, capacity 240 minutes. Apple tech support really didn't know what to do but gave me a very good tip. I had two options left. Apple tech support's tip was to try disc image. One of the replies on a thread with this subject said not to, but my experience today is good. Put your project onto "Burn to disc image," under "iDVD, file." Yesterday encoding took me 23 1/2 hours. Overnight for iDVD disc image, encoding took 21 1/2 hours (again) while I slept. This morning I tried to copy/burn disc image to a DVD with Roxio Toast 7, and it stopped near the end of the burn with some kind of "error" message. So then I tried Utilities> Disc Utility> Burn icon, and followed it through. Be sure to click the DVD DL drive in the window "Burn disc in.". I had one other problem though. At the end of a 46 minute copy, it started to verify, and at the end of verify it rejected the burn. So I tried again, and when "verify" appeared, I clicked on "Skip." The disc finished burning and is doing fine and well. A long and tortuous process, but at last something works. I made several additional copies using Disc Utility. Best wishes. Chuck, Chicago.
    2. Disconnect any other external devices not absolutely needed.
    e.g. external USB/USB2 hard disks, other FW hard disks etc.
    3 Chapter marks in transitions - minimum 2 sec from
    FROM Bev.
    (Not a 'guy' but I will answer!)
    First, I do not think that mixing wide-screen and standard makes a difference in iDVD.
    Second, you should use a better brand of DVD disk. Also, many of us have experienced fewer problems on playback with DVD-R disks. Recommended brands here are Verbatim, Maxell and Taiyo Yuden. Memorex and TDK are not consistent and may not give you a correct burn. They apparently have fewer layers in the composition of the disk. I have always used Verbatim DVD-R disks and have not had any burn problems.
    Also, choose a slower burn speed, 4x or less.
    Third, to determine if the iDVD project will burn properly, create a disk image file (from within iDVD, go File->Save as Disk Image) and test it. Mount the disk image and then open DVD Player (in Applications) and view your project. If it plays correctly, you can then burn the actual DVD disk from the disk image file using Disk Utility.
    From. Boise, Idaho
    I did everything I've seen suggested, but a friend (who used to be an Apple Genius) suggested that I do a safe reboot (by holding down the shift key until you see the spinning gear on gray background, then release, then restart when your start-up screen appears).
    It worked, and I got a clean burn from iDVD.
    Hopefully this can help other people.
    by dheb0422
    Well, I finally got it, and it was odd enough to post here incase anyone looks this topic up again. Many things were tried, including burning the unedited film, the edited film without titles and chapter markers, abbreviating the chapter markers in case length was the issue (remember the old iMovie used to truncate them when moving to iDVD?). In the process, I noticed that one, and only one, chapter marker was on the same line as the title marker. All the others were on the line above. The only way I seemed able to change that was to clip a few seconds of film. After that last clip, the offending marker took a place on the line above, as were all the others. That run published, compiled completely and burned. That's one for the books.
    One user more writes
    To add my experience with Multiplex Errors using iDVD (7.0.4), I recently created two iDVD projects
    Video from both passed from FCE 4.01 with chapters
    One project worked fine in creating disk image file
    The other gave Multiplex Errors
    I tried suggestions to remove special characters and no chapter marks at beginning, but nothing worked
    Note that I've used iDVD for dozens of projects and this is first time I've run into Multiplex Errors
    Anyway, for problem project, I tried an experiment where I removed all chapters in FCE and passed to new iDVD project
    This time multiplex errors gone
    So had something to do with chapters
    So now I tried numerous experiments to remove individual chapters and try again creating disk image with new iDVD project
    After numerous tries, I was able to narrow problem down to 1 "Bad" chapter mark
    That is, when I left the "bad" chapter in my FCE project and passed to iDVD, iDVD gave multiplex error
    When I removed "bad" chapter mark (and others in), no multiplex error
    As a final experiment, I moved "bad" chapter mark about 5-10 sec's beyond original point and passed to iDVD, the multiplex errors now magically went away and I was able to finally create my disk image.
    I have no idea why this worked, but thought I'd mention here in case someone else runs into similar problem.
    Rich839
    In addition to Bengt's fine advice, burning errors can occur if you have located any of your menu buttons wholly or partly outside of the safe TV viewing area. Go to your main project menu, then click on View/Show TV Safe Area, to check. Drag into the safe viewing area any buttons that are outside the safe viewing area.
    Russ One - suggest this
    Multiplex Error-There was an error during muxing preparation
    One thing that worked for me was to export the video w/o chapter markers as a self contained movie (thereby not loosing the edits & etc). Then make a new FCE project and import that movie into a new sequence and add the chapter markers. I've used "-", "&" and "," with no problem in the chapter names. Removing the markers or exporting without them did solve the problem but renaming them with just numbers 1,2,3....5, did not solve the problem and since this problem seems to happen with with iMovie as well, it would suggest the problem is in the video or audio and in combination with the chapter markers iDVD just can't handle it. The only other possibility is that both iMovie and FCE share the same or similar chapter marker code that some how is corrupting the markers.
    Summary - What to try
    1. Chapters
    • Only A to Z and 0 to 9 in chapter title
    • No Chapter mark at very beginning of movie
    • No Chapter mark in or within 2 seconds from any transition in movie
    2. TV-safe area for buttons (no one outside this)
    3. Safe re-boot
    4. No other external devices connected - that are not needed
    SDMacuser adds to this
    • On #4 ... No ext. devices. Some think this applies mainly to ext. FW. Not the case. Also applies to ext. USB2 as well (not to mention flash drives too).
    Do not leave 3rd party devices / camera / camcorder plugged in unless it is being used with iDvd's One Step process. Certain web cams can trigger this also (especially ones with added features like LED light/s that draw additional power from the FW or USB bus).
    5. Minimum of 25Gb free space on Start-up hard disk
    6. Make a DiskImage first - reduces where problem originates
    7. Trash iDVD pref. file
    8. Make a new iDVD project
    9. Movies in project with same aspect ratio e.g. 4x3 or 16x9
    10. No other programs/applications running during iDVD process. e.g. Internet, screen & energy savers
    Yours Bengt W

Maybe you are looking for

  • Printing a noted item

    Hi, all! We have a problem with printing a noted item. In transaction FB03 I request correspondence (custom correspondence type ZZZ) for the customer downpayment request (a noted item), and the system creates the request. When I try to print the requ

  • Over 12 minutes required to merely OPEN a .rpt file in Crystal Reports version 8.5

    Post Author: Rob Kramar CA Forum: General Background: Our division has 3 networked, but geographically dispersed, plants; each plant runs MS SQL Server and Crystal Reports on local servers.  A rather complex (version 8.5) Crystal Reports .rpt file (m

  • Going on my nerf with Invalid cursor state

    Hi all, It's going to make me mad : i can't retrieve value from resultset for(int t=0;t<Integer.parseInt(request.getParameter("ResList"));t++) ran=(int)(Math.random()*(maximum-minimum))+(minimum+1); System.out.println("Voici le chiffre randomiser : "

  • Itunes/Ipod update nuked my Nano - all songs GONE.

    Update locked up my Dell laptop - and my wife's laptop. finally got my ipod back (after reset) her's CROAKED and required a master clear to get it to come back up. problem: NOW HER MUSIC IS GONE. She just switched computers because her old one crashe

  • Unable to connect to opmn in opmn status after opmnctl startall

    I have a problem when starting the OAS. After running opmnctl startall everything seems to be OK, but opmn status gives me Unable to connect to opmn. Opmn may not be up. It's OAS 10.1.3.4 on Windows 7 proffesional. opmn.log is OK, at the end of defau