Workflow Assistant command

Hi guys,
I'm looking for the correct Workflow Assistant command to copy Universes from a source UnvFolder to a target UnvFolder I tried the following command
Activate(boxi,CrystalEnterprise.SessionMgr,,,,,)
Logon(Administrator,Bobjisp,boxir2, )
Object(CCMV0,CPC_UNV,copy,<PAR><par id="properties"><type>Universe</type><target><type>UniverseFolder</type><name>SIS - UNV</name></target></par></PAR>)
'Logoff and close session
Logoff()
as you can see from the WFA log
(1)[ok][Activate][appId=boxi,application=CrystalEnterprise.SessionMgr,visibleOrHost=,user=,pass=*******,offline=,repository=]
(2)[ok][Logon][Username=Administrator,password=*******,CMSname=boxir2,Authentication=Enterprise]
(5)[ok][Object][object=CCMV0,folder=CPC_UNV,method=COPY,xml=<par id="properties"><type>Universe</type><target><type>universefolder</type><name>SIS - UNV</name></target></par>]
(11)[ok][Logoff][]
It seems work fine but it doesn't do nothing.....
Do you have any suggestions?
Thank you in advance
Ciao
Germano

Sorry Guys, Command is like this, please Ignore the previous
WFLOAD APPS/$APPS_PASS 0 Y DOWNLOAD date '+REQAPPRV.wft.%y%m%d.%H%M%S' REQAPPRV
Thanks

Similar Messages

  • Change access to workflow from command

    Is it possible to change the access to a workflow from a command instead of Server Admin GUI? I am trying to script the creation of workflow but only want the workflows seen by a group of users. I want to be able to in my script to create the workflow to add the group to that workflow in Server Admin - Podcast Producer so that I don't have to touch every workflow that is created.
    I have come across the serveradmin command but it requires way more information than I have in order to setup the group to have permissions to the workflow.

    Gavin,
    There is a script wfuignt.sql which created the public synonym. You will have to grant execute privileges to the schema which is calling the engine APIs.
    Cheers,
    Raja

  • Workflow assistance needed

    So I've got a new SLR camera (Canon T1I), that takes HD video, which is fabulous, but is causing some workflow issues in FCE, due to the size of the files. They playback very slow and gittering, using the apple Intermediate codec in FCE.
    The video files are 1280x720 at 30 fps. The file type says "quicktime file", but I'm sure this is just saying what plays the file. I'm a little ignorant in this area. I thought if I imported into Imovie first it would automatically convert them to a MPEG4 or something easier to work with. This didn't seem to help.
    It does seem weird that Imovie can play these back better than FCE 4.
    Any help would be greatly appreciated.

    Thank you for the help on the subject you have provided. I know I'm under educated in this area. I've been forced to learn more when I switched to a Mac and decided to get FCE instead of the Proshow Producer, which I was using for years on a PC.
    Right now I was looking for a quick way to the basics so I could stay on top of some editing for a ton of HD family videos.
    In addition, your book has been on my list of these to get to long. Do you except Paypal or have a link to the book you recommend the most?
    Thanks

  • Workflow assistance

    Trying to setup a workflow rule to add a Book to an account if created by a particular group of users. All these users are part of a Public Sharing Group.
    The Workflow Rule Condition is set as follows:
    GetGroupId() = "Group Name"
    Trigger Event is When new record saved
    The Book is not being added when a new account is created.
    Is GetGroupId() not the correct function to use to obtain the desired results?
    Any ideas or suggestions?
    Thanks

    Here's what we found out ...
    I was able to use the UserGroup WSDL to get the GroupID that I needed. To verfiy this I also took your suggestion and embedded the GetGroupID() in an email. Nothing was coming across in the email. Strange.
    Upon further hunting and pecking, noticed that the Default Group Assignment box was not checked on our Company Profile. Once this was checked I was able to embed GetGroupID in the email as well as use it successfully in the workflow rule criteria.
    Thanks for leading me down the path !!

  • How to schedule a workflow for recurring executions: The solution

    Scheduling a workflow for recurring execution has been long awaited in WFA, perhaps from 2.0 time. The following document shows how to get it done. I've also explained the logic behind it. It’s very simple to use, meets every requirement which one can have from a scheduler and of course highly flexible. Let's go!! The Real stuff. What is this? Is this actually a scheduler? No. This is actually a command in your workflow, but a special 'magical' command. This 'magical' command logic is built using the answers for the following questions: Can a workflow be scheduled for a delayed execution in a future time? Yes, but only one execution instance. If you want the next execution, execute the workflow again providing the same set of inputs and the execution date/time.During workflow execution, can a command inside a workflow get to know what is the  name of the workflow? YesDuring workflow execution, can the command know what is the job execution id? YesIs there any programmatic interface available to know what are the user input provided or a particular job execution? YesCan a command inside a workflow trigger another workflow? Yes.Can a command inside the same workflow trigger itself? Absolutely yes. I've ticked all boxes needed to build such a solution. The solution is to make the workflow a smart workflow, so smart that it can schedule itself for the next execution. It no longer needs any other task scheduler to tigger it. WFA provides a large set of REST APIs for other 3rd part SW integration. But I  also can make  good use of these APIs to make smart workflows. I have always believed that WFA should not only be seen as a framework for automating Storage boxes or server, but just about any task( inside a computer of course) which is done manually. WFA is an awesome product indeed.  So this is a command called "Workflow Scheduler" which  you can put in your workflow as another command. Prerequisites: You need PowerShell 3.0 on your WFA server. I certainly could have done it for PoSH2.0 as well, but life for web interfaces  using PowerShell is so much easier with Posh3.0. Posh3.0 is a big jump from 2.0. WFA is fully supported to work on Posh3.0. Its available by default in Win2012, Win2008 can be upgraded, Win2003 users can't use it. Add credentials of a WFA Admin/Architect in you WFA itself with Name/IP: localhost Match: ExactType: OtherName/IP: localhostUsername: <WFA Admin/Architect Username>Password: <User Password>   3.  Minimum WFA version 2.2. This is only needed for Importing the dar. I've provided the command code in text too. The command code is the real deal. How to use it? If you have a workflow which you want for recurring executions, just add this command "Workflow Scheduler" in it. The command takes parameters for the workflow execution intervals. For example minsInterval for executing this workflow every x minutes, or daysInterval for executing the workflow etc.Now just like a normal workflow execution execute this workflow deciding what is the trigger time. Example: Suppose you want the execution every day at 10:00 PM.So provide daysInterval = 1 And execute the workflow for a delayed execution at 10:00 PM. You can pick the day to start as you wish. The workflow will execute at 10:00 PM and when this execution reaches our magical command "workflow scheduler", this command will trigger the same workflow  with same set of inputs for the next execution at 10:00 PM tomorrow. And so on an so forth. I’ve attached a very simple example workflow here to help you understand. An Example of a workflow scheduled for recurring execution Daily at 11:30 PM starting 10-March-2015     How to stop/suspend this recurring execution? Easy. You just abort the next scheduled job execution in Execution=> Execution Status. The cycle will stop. How to resume it? Easy again. Just resume the same aborted job. The cycle restarts. Can I change the schedule execution time? Yes. After aborting the current execution, you can resume the same workflow at a new time. Execution interval can't be modified as you can't change the command parameters. But the recurring execution now can occur at a new time. Where or which position to place this “workflow scheduler” command in your workflow? At the beginning ? At the end? Or somewhere in the middle. This completely depends on your choice. See some below cases. You don't want the next job execution scheduling to happen if any of the commands in my current workflow execution fails: Put command “workflow scheduler” in the end. It will trigger the schedule of the next job execution only when all real original commands of your workflow have passed. else not.     You want continuous job executions irrespective of the workflow command failures: Put it in the beginning. It will trigger the schedule for next execution before any of the actual command begin executing.     You want an approval before the next execution job is scheduled: Add an approval point before the comamnd.           So it’s all left to you.      Can an operator decide the execution schedule? Yes, but which workflows will be available to him/her for this recurring execution will have to be decided by the designer. This is a good thing to have as it serves for access control in a way. The Architect/Admin can now restrict which workflow can be put for recurring executions. Operators can’t execute just any workflow available to him for automatic recurring execution. And the workflow designer can also choose which scheduling parameter is to be made a variable for the operator. For example the designer want the operator to schedule a given workflow only for weeks Interval and not months or days i.e. he/she can only chose to schedule for weekly, biweekly etc. executions and  nothing else. For this the designer can define a User-Input variable only for weeksInterval parameter. It’s Done. You want workflow execution to be scheduled either for daily or once in 2 days but not any other. You can restrict this. Or he/she wants to give full freedom to the operator make his/her own decision about scheduling, he defined user-input variable for all scheduling parameters. The workflow designer wants weekly schedule but the day should not be a weekday: You can even do this. Is this flexible enough for my requirements? I’ve attached the very command code. You can modify the command as per your requirements. Suppose you want daily execution of a certain workflow at 10:00 PM but skip a day of execution if the day is a Monday. Modify the code check for the day and add another day if it’s a Monday. Its posh code and highly readable. So you can see how this can be used in a  variety of ways. This is the beauty of a programmatic solution. Its highly flexible, it allows users to design solution based on their requirements. Flexibility is the heart & soul of WFA. Thats why I like it. I have a workflow but I don't want to modify it by adding a new command in it. Can I still use this solution? Yes but with WFA 3.0 on wards. WFA3.0 allows to create modular workflows. Create a parent workflow with you actual workflow as a child workflow in it. Add our “workflow scheduler” command too. So now you don't need to touch your existing workflow. I've attached a workflow example here.   Have fun!! sinhaa  

    Providing a new version 1.1.0 of the command "WFA Schedular" Changes made: Added conditional String Representation based on the Scheduling parameter provided. Provided check for the right number of parameters passed into the command.Added a new parameter "Expiry Date" to automatically stop the recurring execution upon expiry.Check for Posh3.0 version in code.Have Fun!! sinhaa Below example for:Schedule a workflow for recurring execution every alternate day i.e. once in 2 days at 10:30 PM starting 06-Jul-2015 (Today's date is 02-Jul-2015) . The recurring workflow execution  should expire on 31-Dec-2015 and stop.  

  • Problem during installation oracle database configuration assistant FAILED

    Hi Dear,
    The Configurations are :
    VM OS : Oracle enterprise linux 5
    Trying to install : Oracle 11g R1
    I'm having a real problem , so i can't continue my installation during the configuration assistant, oracle net configuration assistant was succeeded but oracle database configuration assistant FAILED
    Here is the long message showed by console :
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = /u01/app/oracle/product/11.1.0/db_1/bin/netca /orahome /u01/app/oracle/product/11.1.0/db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /u01/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = /u01/app/oracle/product/11.1.0/db_1
    Parameter "orahnam" = OraDb11g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = /u01/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    Profile configuration complete.
    Listener started at port:1521
    Oracle Net Listener Startup:
    Running Listener Control:
    /u01/app/oracle/product/11.1.0/db_1/bin/lsnrctl start LISTENER
    Listener Control complete.
    Listener started successfully.
    Listener configuration complete.
    Oracle Net Services configuration successful. The exit code is 0
    Configuration assistant "Oracle Net Configuration Assistant" succeeded
    Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 2):
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 3):
    Command = oracle.assistants.server.DbcaCfgPlugIn /u01/app/oracle/product/11.1.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -sid DB11G -gdbName DB11G.WORLD -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/11.1.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema false -oratabLocation /u01/app/oracle/product/11.1.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE -totalMemory 403 -automaticMemoryManagement true -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Configuration assistant "Oracle Database Configuration Assistant" failed
    The "/u01/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    Please help me it's urgently

    Please help me i can't find any solution to resolve this trouble
    Should i uninstall this version or what exactly, could you please suggest to me something like another release who matches that configuration
    Sorry but i have no idea
    Waiting for the response

  • Workflow Manager 1.0 will install but NOT configure.

    Hello everyone,
         I have successfully installed Workflow Manager 1.0 (and its prerequisites) on my Server 2008 R2 SP1 machine
    that is hosting Sharepoint 2013.  I attempt to go into the Workflow Manager Configuration.  That comes up and asks me if I want to Create new farm with Default Settings, New Farm with custom settings, or existing farm.  I've tried both Default
    settings AND Custom settings.
        When the configuration wizard comes up, I attempt to fill out the necessary information.  It seems to connect
    to the SQL server without a problem.  I only run into an issue when setting the USER ID.  The program totally freezes up and force closes. 
        I have verified that the USERID is in the correct format and tried multiple different formats.  The problem
    is that the moment I move the cursor from the USERID field to ANY other field, the program force closes.  I'm not able to hit submit, I'm not able to change any other options.  The moment USERID is manipulated or the cursor LEAVES the USERID field,
    the program force closes.  It won't even allow me to put in a password before it force closes.
         Customer domain is running in Windows Server 2003 Enterprise Edittion SP2.
    Any ideas?
    Thank you very much!
    I have copied the errors from event viewer below:
    APPLICATION ERROR
    Faulting application name: Microsoft.Workflow.Deployment.ConfigWizard.exe, version: 1.0.20922.0, time stamp: 0x505e1b30
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17965, time stamp: 0x506dcae6
    Exception code: 0xe0434352
    Fault offset: 0x000000000000bccd
    Faulting process id: 0x17f8
    Faulting application start time: 0x01cddee198ece72e
    Faulting application path: C:\Program Files\Workflow Manager\1.0\Microsoft.Workflow.Deployment.ConfigWizard.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 22ab8b69-4ad5-11e2-af8f-005056965915
    .NET Runtime Error
    Application: Microsoft.Workflow.Deployment.ConfigWizard.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Runtime.InteropServices.COMException
    Stack:
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoLDAPDirectoryInitNoContainer()
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoDomainInit()
       at System.DirectoryServices.AccountManagement.PrincipalContext.Initialize()
       at System.DirectoryServices.AccountManagement.PrincipalContext.get_QueryCtx()
       at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithTypeHelper(System.DirectoryServices.AccountManagement.PrincipalContext, System.Type, System.Nullable`1<System.DirectoryServices.AccountManagement.IdentityType>, System.String,
    System.DateTime)
       at System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsUserValid(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsDomainUserValid(System.String, System.String)
       at Microsoft.ServiceBus.Commands.Common.ValidateUserAttribute.Validate(System.String)
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsViewModel.ValidateDomainUser()
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsControl.UserIdTextBox_LostFocus(System.Object, System.Windows.RoutedEventArgs)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.Controls.Primitives.TextBoxBase.OnLostFocus(System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.IsFocused_Changed(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.Controls.TextBox.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.ClearValueCommon(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata)
       at System.Windows.DependencyObject.ClearValue(System.Windows.DependencyPropertyKey)
       at System.Windows.Input.FocusManager.OnFocusedElementChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
       at System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty, System.Object)
       at System.Windows.FrameworkElement.OnGotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
       at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.RaiseTrustedEvent(System.Windows.RoutedEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.KeyboardDevice.ChangeFocus(System.Windows.DependencyObject, Int32)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.DependencyObject, Boolean, Boolean, Boolean)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.IInputElement)
       at System.Windows.UIElement.Focus()
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.TraversalRequest, System.Windows.Input.ModifierKeys, System.Windows.DependencyObject)
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.Key, System.Windows.Input.ModifierKeys)
       at System.Windows.Input.KeyboardNavigation.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Input.InputManager.RaiseProcessInputEventHandlers(System.Windows.Input.ProcessInputEventHandler, System.Windows.Input.ProcessInputEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Interop.HwndKeyboardInputProvider.ReportInput(IntPtr, System.Windows.Input.InputMode, Int32, System.Windows.Input.RawKeyboardActions, Int32, Boolean, Boolean, Int32)
       at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(System.Windows.Interop.MSG ByRef, System.Windows.Input.ModifierKeys)
       at System.Windows.Interop.HwndSource.OnPreprocessMessage(System.Object)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
       at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
       at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
       at System.Windows.Threading.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority, System.Delegate, System.Object)
       at System.Windows.Interop.HwndSource.OnPreprocessMessageThunk(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
       at System.Windows.Application.RunInternal(System.Windows.Window)
       at System.Windows.Application.Run()
       at Microsoft.Workflow.Deployment.ConfigWizard.App.Main()

    Hi Scott, 
    Thank you very much.. Now I am able to run wizard.. but at the end of wizard step I am getting below error
    [Info] [1/23/2014 5:48:47 PM]: Endpoint=sb://MSPAPPS.psu.edu.sa/WorkflowDefaultNamespace;StsEndpoint=https://MSPAPPS.psu.edu.sa:9355/WorkflowDefaultNamespace;RuntimePort=9354;ManagementPort=9355
    [Info] [1/23/2014 5:48:47 PM]: Processing completed
    [Verbose] [1/23/2014 5:48:47 PM]: Validating input and configuration parameters.
    [Verbose] [1/23/2014 5:48:49 PM]: Installing auto-generated certificate.
    [Progress] [1/23/2014 5:48:49 PM]: Installing auto-generated certificate.
    [Verbose] [1/23/2014 5:48:51 PM]: Granting 'Log on as Service' privilege to the RunAs account.
    [Progress] [1/23/2014 5:48:51 PM]: Granting 'Log on as Service' privilege to the RunAs account.
    [Verbose] [1/23/2014 5:48:52 PM]: Workflow Manager configuration starting.
    [Progress] [1/23/2014 5:48:52 PM]: Workflow Manager configuration starting.
    [Verbose] [1/23/2014 5:48:55 PM]: Configuring Workflow Manager runtime settings.
    [Progress] [1/23/2014 5:48:55 PM]: Configuring Workflow Manager runtime settings.
    [Error] [1/23/2014 5:48:55 PM]: System.Management.Automation.CmdletInvocationException: The token provider was unable to provide a security token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'. Token provider returned
    message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.UnauthorizedAccessException: The token provider was unable to provide a security token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'.
    Token provider returned message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.IdentityModel.Tokens.SecurityTokenException: The token provider was unable to provide a security
    token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'. Token provider returned message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.Net.WebException:
    The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
       at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
       at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
       at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
       at System.Net.ConnectStream.WriteHeaders(Boolean async)
       --- End of inner exception stack trace ---
       at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
       --- End of inner exception stack trace ---
       at Microsoft.ServiceBus.TokenProviderHelper.ThrowException(Uri requestUri, WebException exception)
       at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
       at Microsoft.ServiceBus.WindowsTokenProvider.OnBeginGetWebToken(String appliesTo, String action, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProvider.GetWebTokenAsyncResult..ctor(TokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProvider.BeginGetWebToken(String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingWebToken(ITokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace: 
       at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingWebToken(ITokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
       at Microsoft.ServiceBus.Messaging.HttpWebRequestExtensions.AddAuthorizationHeader(HttpWebRequest request, ITokenProvider tokenProvider, Uri baseAddress, String action)
       at Microsoft.ServiceBus.Messaging.ServiceBusResourceOperations.GetAsyncResult`1.<GetAsyncSteps>d__11.MoveNext()
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.EnumerateSteps(CurrentThreadType state)
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.Start()
    Exception rethrown at [0]: 
       at Microsoft.ServiceBus.Common.AsyncResult.End[TAsyncResult](IAsyncResult result)
       at Microsoft.ServiceBus.NamespaceManager.OnEndTopicExists(IAsyncResult result)
       at Microsoft.ServiceBus.NamespaceManager.TopicExists(String path)
       at Microsoft.Workflow.Deployment.Commands.WorkflowServiceConfigHelper.SetWFRuntimeSettings(String resourceDBConnectionString, String config)
       at Microsoft.Workflow.Deployment.Commands.AddWFHost.CallWFRuntimeSettings(Service wfserviceInfo, String unencryptedResourceConnectionString)
       --- End of inner exception stack trace ---
       at System.Management.Automation.PowerShell.EndInvoke(IAsyncResult asyncResult)
       at Microsoft.Workflow.Deployment.ConfigWizard.CommandletHelper.InvokePowershell(Command command, Action`3 updateProgress)
       at Microsoft.Workflow.Deployment.ConfigWizard.ProgressPageViewModel.AddWFNode(FarmCreationModel model, Boolean isFirstCommand)

  • Setup Windows Azure Workflow - Add-WFHost error "WF_Management/WFTOPIC" and token provider service

    Hi,
    i want to install the new windows azure workflow manager and service bus on my sharepoint 2013 server.
    All works fine in setup. I got the Powershell-Script from the wizard and configured it to meet my requierments.
    I start it and get to the last point "add-wfhost".
    Here i got following error:
    VERBOSE: [12.12.2012 09:30:13]: Validating input and configuration parameters.
    VERBOSE: [12.12.2012 09:30:14]: Installing auto-generated certificate.
    VERBOSE: [12.12.2012 09:30:16]: Granting 'Log on as Service' privilege to the RunAs account.
    VERBOSE: [12.12.2012 09:30:16]: Workflow Manager configuration starting.
    VERBOSE: [12.12.2012 09:30:19]: Configuring Workflow Manager runtime settings.
    Add-WFHost : Could not successfully create management Service Bus entity 'WF_Management/WFTOPIC' with multiple retries within a timespan of 00:02:05.7914488.. The exception of the last retry is: The
    token provider service was not avaliable when obtaining a token for 'https://myServer.sps2013.local:9355/WorkflowDefaultNamespace/$STS/Windows/'..
    At C:\Users\wawsrv\Documents\workflowconfiguration.ps1:42 char:1
    + Add-WFHost -WFFarmDBConnectionString 'Data Source=myServer.sps2013.local;Initia ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : OperationStopped: (:) [Add-WFHost], TimeoutException
    + FullyQualifiedErrorId : WFRuntimeSettingFailed,Microsoft.Workflow.Deployment.Commands.AddWFHost
    I installed it on a sharepoint 2013 box server (AD, DNS, SQL and SP on one maschin).
    I know this is not supported, but it should work. Im loged in as the service account for the workflow. I've granted the domain admin rights and sql sysadmin /dbowner rights.
    Now my answer is:
    It is not the "normal" error with the wf_management/WFTOPIC. What is this token provider service and why he tries the port 9355. I dont use ssl, so how can i change the request url or how do i have to set it up correct?
    Thx alot on this!

    When you say 'setup gateway correctly' what do you mean?
    How was your gateway setup and what did you change?
    I have the same problem, and despite removing all proxy settings, i am still having this issue. I can navigate fine to the 'WorkflowDefaultNamespace' and get a RSS Feed type of page, but when i add the $STS/Windows Virtual Directories, i get a 400 Bad Request. 

  • Oracle Net Configuration Assistant failed  Error - installing Oracel 11g

    Hi
    I am getting the following error while installing Oracle 11g database.Could you please tell me what can be the issue.I tried it two times by cleaning up but still the same error.
    utput generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = C:\Windows\system32\cmd /c call C:\Installed_Software\product\11.1.0\db_1/bin/netca.bat /orahome C:\Installed_Software\product\11.1.0\db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile C:\Installed_Software\product\11.1.0\db_1\network\install\netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = C:\Installed_Software\product\11.1.0\db_1
    Parameter "orahnam" = OraDb11g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp,nmp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = C:\Installed_Software\product\11.1.0\db_1\network\install\netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c342849, pid=4284, tid=5436
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [MSVCR71.dll+0x2849]
    # An error report file with more information is saved as hs_err_pid4284.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "C:\Installed_Software\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = C:\Windows\system32\cmd /c call C:\Installed_Software\product\11.1.0\db_1/bin/netca.bat /orahome C:\Installed_Software\product\11.1.0\db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile C:\Installed_Software\product\11.1.0\db_1\network\install\netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = C:\Installed_Software\product\11.1.0\db_1
    Parameter "orahnam" = OraDb11g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp,nmp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = C:\Installed_Software\product\11.1.0\db_1\network\install\netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c342849, pid=4076, tid=4048
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [MSVCR71.dll+0x2849]
    # An error report file with more information is saved as hs_err_pid4076.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "C:\Installed_Software\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    Thanks
    Praveena

    Hi
    I installed JDK 1.5 and tried installing again. It failed again at the same point.
    I ran netca.bat file individually. It gave the below error in the command line.And I am pasting the log also here. It looks like something to do with my JDK.
    Could you please tell me what can be the problem.
    ===========================================================================
    C:\Installed_Software\product\11.1.0\db_1\BIN>netca.bat
    IOException: Can not save NetProperties: C:\Installed_Software\product\11.1.0\db
    _1\network\tools\NetProperties (Access is denied)
    Oracle Net Services Configuration:
    C:\Installed_Software\product\11.1.0\db_1\network\admin\sqlnet0902066AM5338.bak
    (Access is denied)
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c342849, pid=324, tid=772
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [MSVCR71.dll+0x2849]
    # An error report file with more information is saved as C:\Users\praveena\AppDa
    ta\Local\Temp\hs_err_pid324.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    C:\Installed_Software\product\11.1.0\db_1\BIN>
    ====================================================================
    hs_err_pid324.log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c342849, pid=324, tid=772
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [MSVCR71.dll+0x2849]
    --------------- T H R E A D ---------------
    Current thread (0x0013bef0): JavaThread "main" [_thread_in_native, id=772]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x00002e2e, EBX=0x2e2e2e2e, ECX=0x0d5e8c70, EDX=0x00000000
    ESP=0x0006f848, EBP=0x0006f990, ESI=0x07d85f48, EDI=0x0013bef0
    EIP=0x7c342849, EFLAGS=0x00210206
    Top of Stack: (sp=0x0006f848)
    0x0006f848: 07d85f48 0013bef0 07d85f48 626da08c
    0x0006f858: 00000000 0000002e 61636f6c 736f686c
    0x0006f868: 00130074 0013cbdc 0006f82c 0006f850
    0x0006f878: 00000002 00000008 00000000 0006f8fc
    0x0006f888: 6d815daa 0006f8ec 0013cbe0 6d8c3174
    0x0006f898: 6d8c3270 0013cbdc 0013cbf4 6d815d4e
    0x0006f8a8: 0013cbd8 0013bef0 0006f988 6d8748d8
    0x0006f8b8: 0013c8c8 6d74d68d 00000001 0000000c
    Instructions: (pc=0x7c342849)
    0x7c342839: 00 00 00 75 eb 0b d8 57 8b c3 c1 e3 10 56 0b d8
    0x7c342849: 8b 0a bf ff fe fe 7e 8b c1 8b f7 33 cb 03 f0 03
    Stack: [0x00030000,0x00070000), sp=0x0006f848, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [MSVCR71.dll+0x2849]
    j oracle.net.common.NetGetEnv.getDNSDomain()Ljava/lang/String;+0
    j oracle.net.ca.ConfigureProfile.setDefaultProfileParams()V+0
    j oracle.net.ca.InitialSetup.setupConfigObjects()V+204
    j oracle.net.ca.InitialSetup.<init>([Ljava/lang/String;)V+879
    j oracle.net.ca.NetCA.main([Ljava/lang/String;)V+676
    v ~StubRoutines::call_stub
    V [jvm.dll+0x871a8]
    V [jvm.dll+0xdf462]
    V [jvm.dll+0x87079]
    V [jvm.dll+0x8e0d5]
    C [java.exe+0x14c5]
    C [java.exe+0x69cd]
    C [kernel32.dll+0x44911]
    C [ntdll.dll+0x3e4b6]
    C [ntdll.dll+0x3e489]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.net.common.NetGetEnv.getDNSDomain()Ljava/lang/String;+0
    j oracle.net.ca.ConfigureProfile.setDefaultProfileParams()V+0
    j oracle.net.ca.InitialSetup.setupConfigObjects()V+204
    j oracle.net.ca.InitialSetup.<init>([Ljava/lang/String;)V+879
    j oracle.net.ca.NetCA.main([Ljava/lang/String;)V+676
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x01a52730 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2192]
    0x01a54d90 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4208]
    0x01a525a8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2424]
    0x01a467c8 JavaThread "Finalizer" daemon [_thread_blocked, id=1392]
    0x01a45180 JavaThread "Reference Handler" daemon [_thread_blocked, id=4784]
    =>0x0013bef0 JavaThread "main" [_thread_in_native, id=772]
    Other Threads:
    0x01a428f8 VMThread [id=1244]
    0x0013fb98 WatcherThread [id=5392]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 273K [0x03a70000, 0x03b10000, 0x03f50000)
    eden space 512K, 40% used [0x03a70000, 0x03aa4510, 0x03af0000)
    from space 64K, 100% used [0x03b00000, 0x03b10000, 0x03b10000)
    to space 64K, 0% used [0x03af0000, 0x03af0000, 0x03b00000)
    tenured generation total 1408K, used 946K [0x03f50000, 0x040b0000, 0x07a70000)
    the space 1408K, 67% used [0x03f50000, 0x0403c8a8, 0x0403ca00, 0x040b0000)
    compacting perm gen total 8192K, used 7599K [0x07a70000, 0x08270000, 0x0ba70000)
    the space 8192K, 92% used [0x07a70000, 0x081dbd58, 0x081dbe00, 0x08270000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\java.exe
    0x76f50000 - 0x77077000      C:\Windows\system32\ntdll.dll
    0x760f0000 - 0x761cb000      C:\Windows\system32\kernel32.dll
    0x75a60000 - 0x75b26000      C:\Windows\system32\ADVAPI32.dll
    0x770e0000 - 0x771a3000      C:\Windows\system32\RPCRT4.dll
    0x75f10000 - 0x75fba000      C:\Windows\system32\MSVCRT.dll
    0x6d740000 - 0x6d8dd000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\client\jvm.dll
    0x76320000 - 0x763bd000      C:\Windows\system32\USER32.dll
    0x757e0000 - 0x7582b000      C:\Windows\system32\GDI32.dll
    0x73d90000 - 0x73dc2000      C:\Windows\system32\WINMM.dll
    0x75cf0000 - 0x75e34000      C:\Windows\system32\ole32.dll
    0x75940000 - 0x759cd000      C:\Windows\system32\OLEAUT32.dll
    0x73d50000 - 0x73d89000      C:\Windows\system32\OLEACC.dll
    0x758c0000 - 0x758de000      C:\Windows\system32\IMM32.DLL
    0x75e40000 - 0x75f08000      C:\Windows\system32\MSCTF.dll
    0x75600000 - 0x7562c000      C:\Windows\system32\apphelp.dll
    0x757d0000 - 0x757d9000      C:\Windows\system32\LPK.DLL
    0x75830000 - 0x758ad000      C:\Windows\system32\USP10.dll
    0x6d300000 - 0x6d308000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\hpi.dll
    0x757c0000 - 0x757c7000      C:\Windows\system32\PSAPI.DLL
    0x6d710000 - 0x6d71c000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\zip.dll
    0x6d070000 - 0x6d1da000      C:\Installed_Software\product\11.1.0\db_1\jdk\jre\bin\awt.dll
    0x722d0000 - 0x72312000      C:\Windows\system32\WINSPOOL.DRV
    0x626d0000 - 0x626e6000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranjni11.dll
    0x62740000 - 0x627a3000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranl11.dll
    0x60960000 - 0x60d32000      C:\Installed_Software\product\11.1.0\db_1\BIN\oran11.dll
    0x62670000 - 0x6268b000      C:\Installed_Software\product\11.1.0\db_1\BIN\orancrypt11.dll
    0x60870000 - 0x6095b000      C:\Installed_Software\product\11.1.0\db_1\BIN\oracore11.dll
    0x0c290000 - 0x0c35e000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranls11.dll
    0x63690000 - 0x636a8000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraunls11.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x60eb0000 - 0x60eb7000      C:\Installed_Software\product\11.1.0\db_1\BIN\orauts.dll
    0x762f0000 - 0x7631d000      C:\Windows\system32\WS2_32.dll
    0x770d0000 - 0x770d6000      C:\Windows\system32\NSI.dll
    0x62920000 - 0x6296d000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranro11.dll
    0x62530000 - 0x6266d000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraldapclnt11.dll
    0x627f0000 - 0x62905000      C:\Installed_Software\product\11.1.0\db_1\BIN\orannzsbb11.dll
    0x60000000 - 0x60133000      C:\Installed_Software\product\11.1.0\db_1\BIN\orazt11.dll
    0x72e00000 - 0x72e07000      C:\Windows\system32\WSOCK32.dll
    0x75030000 - 0x75049000      C:\Windows\system32\iphlpapi.dll
    0x74ff0000 - 0x75025000      C:\Windows\system32\dhcpcsvc.DLL
    0x752a0000 - 0x752cc000      C:\Windows\system32\DNSAPI.dll
    0x75660000 - 0x75674000      C:\Windows\system32\Secur32.dll
    0x74fe0000 - 0x74fe7000      C:\Windows\system32\WINNSI.DLL
    0x74fb0000 - 0x74fd1000      C:\Windows\system32\dhcpcsvc6.DLL
    0x0c360000 - 0x0ce27000      C:\Installed_Software\product\11.1.0\db_1\BIN\orageneric11.dll
    0x63430000 - 0x6345d000      C:\Installed_Software\product\11.1.0\db_1\BIN\orasnls11.dll
    0x60fa0000 - 0x61158000      C:\Installed_Software\product\11.1.0\db_1\BIN\oracommon11.dll
    0x61c20000 - 0x61f81000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraclient11.dll
    0x636b0000 - 0x636b6000      C:\Installed_Software\product\11.1.0\db_1\BIN\oravsn11.dll
    0x0ce30000 - 0x0d20a000      C:\Installed_Software\product\11.1.0\db_1\BIN\orapls11.dll
    0x63420000 - 0x63429000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraslax11.dll
    0x63080000 - 0x63296000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraplp11.dll
    0x63520000 - 0x635c2000      C:\Installed_Software\product\11.1.0\db_1\BIN\orasql11.dll
    0x10000000 - 0x1025c000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraxml11.dll
    0x71ba0000 - 0x71bb1000      C:\Windows\system32\MSVCIRT.dll
    0x62980000 - 0x629b1000      C:\Installed_Software\product\11.1.0\db_1\BIN\orantcp11.dll
    0x0d210000 - 0x0d2bd000      C:\Installed_Software\product\11.1.0\db_1\BIN\orahasgen11.dll
    0x62ab0000 - 0x62b2f000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraocr11.dll
    0x0c1e0000 - 0x0c23e000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraocrb11.dll
    0x754c0000 - 0x75535000      C:\Windows\system32\NETAPI32.dll
    0x6f710000 - 0x6f7ec000      C:\Windows\system32\dbghelp.dll
    0x76440000 - 0x76f4f000      C:\Windows\system32\SHELL32.dll
    0x758e0000 - 0x75938000      C:\Windows\system32\SHLWAPI.dll
    0x0d2c0000 - 0x0d307000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranldap11.dll
    0x626b0000 - 0x626b9000      C:\Installed_Software\product\11.1.0\db_1\BIN\oranhost11.dll
    0x00120000 - 0x00126000      C:\Installed_Software\product\11.1.0\db_1\BIN\orancds11.dll
    0x629c0000 - 0x629cd000      C:\Installed_Software\product\11.1.0\db_1\BIN\orantns11.dll
    0x0d310000 - 0x0d390000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraztkg11.dll
    0x74520000 - 0x746be000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
    0x01940000 - 0x0195b000      C:\Installed_Software\product\11.1.0\db_1\oui\lib\win32\oraInstaller.dll
    0x74e60000 - 0x74e68000      C:\Windows\system32\VERSION.dll
    0x0d420000 - 0x0d476000      C:\Installed_Software\product\11.1.0\db_1\oui\lib\win32\msvcr71.dll
    0x0c240000 - 0x0c247000      C:\Installed_Software\product\11.1.0\db_1\oui\lib\win32\orauts.dll
    0x0c250000 - 0x0c258000      C:\Installed_Software\product\11.1.0\db_1\oui\lib\win32\orawsec11.dll
    0x635d0000 - 0x635ed000      C:\Installed_Software\product\11.1.0\db_1\oui\lib\win32\orasrvm11.dll
    0x0d8d0000 - 0x0da08000      C:\Installed_Software\product\11.1.0\db_1\BIN\oraldapjclnt11.dll
    0x748f0000 - 0x748ff000      C:\Windows\system32\NLAapi.dll
    0x71e80000 - 0x71e8f000      C:\Windows\system32\napinsp.dll
    0x71e40000 - 0x71e52000      C:\Windows\system32\pnrpnsp.dll
    0x74df0000 - 0x74e2b000      C:\Windows\System32\mswsock.dll
    0x71e70000 - 0x71e78000      C:\Windows\System32\winrnr.dll
    0x762a0000 - 0x762ea000      C:\Windows\system32\WLDAP32.dll
    0x71e60000 - 0x71e6c000      C:\Windows\system32\wshbth.dll
    0x75b30000 - 0x75cba000      C:\Windows\system32\SETUPAPI.dll
    0x74e50000 - 0x74e55000      C:\Windows\System32\wship6.dll
    VM Arguments:
    jvm_args: -Dsun.java2d.noddraw=true -Dice.pilots.html4.ignoreNonGenericFonts=true
    java_command: oracle.net.ca.NetCA
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=C:\Installed_Software\product\11.1.0\db_1\network\jlib\netcam.jar;C:\Installed_Software\product\11.1.0\db_1\network\jlib\netca.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\jndi.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\netcfg.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\ldapjclnt9.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\ldapjclnt11.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\;C:\Installed_Software\product\11.1.0\db_1\jlib\ewt3.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\help4.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\jewt4.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\oracle_ice.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\share.jar;C:\Installed_Software\product\11.1.0\db_1\jdk\jre\lib\rt.jar;C:\Installed_Software\product\11.1.0\db_1\jdk\jre\lib\i18n.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\ewtcompat-3_3_15.jar;C:\Installed_Software\product\11.1.0\db_1\network\tools;C:\Installed_Software\product\11.1.0\db_1\jlib\srvm.jar;C:\Installed_Software\product\11.1.0\db_1\jlib\srvmhas.jar;C:\Installed_Software\product\11.1.0\db_1\oui\jlib\OraInstaller.jar;C:\Installed_Software\product\11.1.0\db_1\lib\xmlparserv2.jar;C:\Installed_Software\product\11.1.0\db_1\emdw\lib\emca.jar
    PATH=C:\Installed_Software\product\11.1.0\db_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Java\jdk1.5.0_17
    USERNAME=praveena
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Vista Build 6001 Service Pack 1
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2097151k(1328884k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for windows-x86, built on Dec 15 2006 01:16:12 by "java_re" with MS VC++ 6.0

  • Oracle Net Configuration Assistant  Failed(see details...) 11g on Fedora 7

    I am a newbie in a Linux and Oracle ,so
    can somebody help me to solve this problem, i've done everything from
    this site : http://www.oracle-base.com/articles/11g/OracleDB11gR1InstallationOnFedora7.php
    and i've got this error :
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = /home/oracle/app/oracle/product/11.1.0/db_1/bin/netca /orahome /home/oracle/app/oracle/product/11.1.0/db_1 /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /home/oracle/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = /home/oracle/app/oracle/product/11.1.0/db_1
    Parameter "orahnam" = OraDb11g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = /home/oracle/app/oracle/product/11.1.0/db_1/network/install/netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x00b6fdd3, pid=7312, tid=3086751952
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [libc.so.6+0x6ddd3] index+0x63
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "/home/oracle/app/oracle/product/11.1.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    thx

    Let's assume your software installation was successful. Even if no database was created at this time. Check the Oracle Universal Installer inventory to verify this. At this time you should verify your connectivity, as previously suggested, verify the hosts file properly describes the hostname.domainname and the simple hostname. Verify the security is disabled, according to the install guide you have referred to.
    Then check the environment variables PATH, ORACLE_HOME, ORACLE_SID, LD_LIBRARY_PATH are properly set and issue the commands:
    1) netmgr, this will be used to configure the listener and the tnsnames.ora file, you could use the netca if you want, this is a subset of netmgr.
    2) dbca, this will assist you in creating the database. there you will find an option to setup enterprise manager, ensure you have it selected so the EM repository is created.
    3) You won't find isqlplus on 11g, but the regular sqlplus CLI is available
    ~ Madrid

  • Configuration assistant "Oracle Net Configuration Assistant" failed

    I was installing Oracle 10g Enterprise and received the following failure notificaiton. How can I resolve this?
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\bin -classpath ";C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\lib\rt.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ldapjclnt10.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ewt3.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ewtcompat-3_3_15.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\jlib\NetCA.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\jlib\netcam.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\netcfg.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\help4.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\jewt4.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\oracle_ice.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\share.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\swingall-1_1_1.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\lib\i18n.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\srvmhas.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\srvm.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\oui\jlib\OraInstaller.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\lib\xmlparserv2.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\tools" oracle.net.ca.NetCA /orahome C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2 /orahnam OraDb10g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\install\netca_typ.rsp
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    Edited by: BenS on May 20, 2009 6:05 PM
    The following information was found in the installActions...log file.
    INFO: cf session hashcode: 13785219
    INFO: cf session saved with key: OraDb10g_home1 oracle.server
    INFO: cf session is ok
    INFO: created and saved cf session for oh: OraDb10g_home1
    INFO: passing params to cf
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: ORACLE_HOME is not settable, hence not setting the value
    INFO: {Parameter:TOPLEVEL_COMPONENT in {Aggregate:OuiConfigVariables:1.0.0.0.0:common}}: Parameter data type is not compatible with the provided String Array.
    INFO: passing params to cf done
    INFO: done saving info by cf
    INFO: This is a shared oracle home or remote nodes are null. No copy required.
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: cf session retrieved for key: OraDb10g_home1 oracle.server
    INFO: RUN_RECOMMENDED_TOOLS FIRST is set to false
    INFO: No of Recommended Tools3
    INFO: plugin-list is created
    INFO: pluginlist is updated for: Oracle Database 10g current size: 1
    INFO: No of ExitOnly Tools in this session: 1
    INFO: cf session for perform has hashcode: 13785219
    INFO: detached tool list getting prepared fo comp: Oracle Database 10g
    INFO: cfsession hashcode for exit only tools: 13785219
    INFO: hashcode for action: 8813601
    INFO: No of ExitOnly Tools: 1
    INFO: exit-tool: Launch browser
    INFO: saving exit only tools ...
    INFO: no detached only tools in this session
    INFO: exit-only tools are created in single installation
    INFO: no. of sets of tools to be run: 1
    INFO: ca page to be shown: true
    INFO: exitonly tools to be excuted passed: 1
    INFO: Starting to execute configuration assistants
    INFO: Command = C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\bin -classpath ";C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\lib\rt.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ldapjclnt10.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ewt3.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\ewtcompat-3_3_15.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\jlib\NetCA.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\jlib\netcam.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\netcfg.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\help4.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\jewt4.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\oracle_ice.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\share.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\swingall-1_1_1.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\lib\i18n.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\srvmhas.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jlib\srvm.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\oui\jlib\OraInstaller.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\lib\xmlparserv2.jar;C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\tools" oracle.net.ca.NetCA /orahome C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2 /orahnam OraDb10g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\network\install\netca_typ.rsp
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Command = C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\jdk\jre\bin/java.exe has failed
    INFO: Configuration assistant "Oracle Net Configuration Assistant" failed
    INFO: The "C:\oraclexe\app\oracle;\oracle\product\10.2.0\db_2\cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    SEVERE: OUI-25031:Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK

    I had Oracle 10g XE (Express installed but uninstalled it in case it was causing conflicts with the installation of 10 Enterprise). It appeared to have uninstalled cleanly.
    However, I was looking at my Environment variables and noticed the following:
    Oracle in OraDb10g_home1 points to a directory that doesn't exists since the uninstall.  I deleted this variable.
    I also receive the following warning during prerequiste check (but I appeared to have a solution according ot the documentation)
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses; However, before you can do this, you must configure the Microsoft LoopBack Adapter to be the primary network adapter on the system. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    After delete the environment variable I restarted the Install and it installed fine.
    Thank you for the help...

  • Error in Configuration Assistant

    Hi
    While installing OUI in Windows, i completed all the steps till Configuration Assistant then i found the below error :-
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = G:\OEL on Windows\jdk\jre\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=G:\OEL on Windows\bin -classpath ";G:\OEL on Windows\jdk\jre\lib\rt.jar;G:\OEL on Windows\jlib\ldapjclnt10.jar;G:\OEL on Windows\jlib\ewt3.jar;G:\OEL on Windows\jlib\ewtcompat-3_3_15.jar;G:\OEL on Windows\network\jlib\NetCA.jar;G:\OEL on Windows\network\jlib\netcam.jar;G:\OEL on Windows\jlib\netcfg.jar;G:\OEL on Windows\jlib\help4.jar;G:\OEL on Windows\jlib\jewt4.jar;G:\OEL on Windows\jlib\oracle_ice.jar;G:\OEL on Windows\jlib\share.jar;G:\OEL on Windows\jlib\swingall-1_1_1.jar;G:\OEL on Windows\jdk\jre\lib\i18n.jar;G:\OEL on Windows\jlib\srvmhas.jar;G:\OEL on Windows\jlib\srvm.jar;G:\OEL on Windows\oui\jlib\OraInstaller.jar;G:\OEL on Windows\lib\xmlparserv2.jar;G:\OEL on Windows\network\tools" oracle.net.ca.NetCA /orahome G:\OEL on Windows /orahnam OraDb10g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile G:\OEL on Windows\network\install\netca_typ.rsp
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "G:\OEL on Windows\cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = G:\OEL on Windows\jdk\jre\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=G:\OEL on Windows\bin -classpath ";G:\OEL on Windows\jdk\jre\lib\rt.jar;G:\OEL on Windows\jlib\ldapjclnt10.jar;G:\OEL on Windows\jlib\ewt3.jar;G:\OEL on Windows\jlib\ewtcompat-3_3_15.jar;G:\OEL on Windows\network\jlib\NetCA.jar;G:\OEL on Windows\network\jlib\netcam.jar;G:\OEL on Windows\jlib\netcfg.jar;G:\OEL on Windows\jlib\help4.jar;G:\OEL on Windows\jlib\jewt4.jar;G:\OEL on Windows\jlib\oracle_ice.jar;G:\OEL on Windows\jlib\share.jar;G:\OEL on Windows\jlib\swingall-1_1_1.jar;G:\OEL on Windows\jdk\jre\lib\i18n.jar;G:\OEL on Windows\jlib\srvmhas.jar;G:\OEL on Windows\jlib\srvm.jar;G:\OEL on Windows\oui\jlib\OraInstaller.jar;G:\OEL on Windows\lib\xmlparserv2.jar;G:\OEL on Windows\network\tools" oracle.net.ca.NetCA /orahome G:\OEL on Windows /orahnam OraDb10g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile G:\OEL on Windows\network\install\netca_typ.rsp
    Configuration assistant "Oracle Net Configuration Assistant" failed
    what is mean by this? what i need to do for rectification?
    Please let me know, as i am new to Oracle.
    Regards

    >
    While installing OUI in Windows, ...
    >
    Pl post full version of which software you are installing, along with full version of Windows. Pl be aware that Windows Home versions are not certified/supported - if you are using Home version, things may or may not work.
    HTH
    Srini

  • Fail to run Oracle Net Configuration Assistant

    I was installing 64 bits Oracle 10.2.0 on Red Hat Linux 2.6.9-89.ELsmp.
    I did not encounter any problem of upgrading and linking Oracle libraries, and building the Oracle executables.
    But when it tried to build the database, it ran into problem with Oracle Net Configuration Assistant.
    Can any one tell me what would cause the following problem with Net Configuration Assistant?
    I would really appreciate your help.
    Thanks,
    Andrew K
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = /opt/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java -Duser.dir=/opt/app/oracle/product/10.2.0/db_1/network/jlib -classpath /opt/app/oracle/product/10.2.0/db_1/jdk/jre//lib/i18n.jar:/opt/app/oracle/product/10.2.0/db_1/jdk/jre//lib/rt.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/ewt3.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/ewtcompat-3_3_15.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/netcfg.jar:/opt/app/oracle/product/10.2.0/db_1/network/jlib/netcam.jar:/opt/app/oracle/product/10.2.0/db_1/network/jlib/netca.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/help4.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/jewt4.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/oracle_ice.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/share.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/swingall-1_1_1.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/srvmhas.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/srvm.jar:/opt/app/oracle/product/10.2.0/db_1/network/tools:/opt/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt9.jar:/opt/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt10.jar:/opt/app/oracle/product/10.2.0/db_1/oui/jlib/OraInstaller.jar:/opt/app/oracle/product/10.2.0/db_1/lib/xmlparserv2.jar oracle.net.ca.NetCA /orahome /opt/app/oracle/product/10.2.0/db_1 /orahnam OraDb10g_home1 /instype custom /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /opt/app/oracle/product/10.2.0/db_1/network/install/netca_typ.rsp
    Parsing command line arguments:
    Parameter "orahome" = /opt/app/oracle/product/10.2.0/db_1
    Parameter "orahnam" = OraDb10g_home1
    Parameter "instype" = custom
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = /opt/app/oracle/product/10.2.0/db_1/network/install/netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0xA35B03
    Function=index+0x63
    Library=/lib/tls/libc.so.6
    Current Java thread:
         at oracle.net.common.NetGetEnv.getDNSDomain(Native Method)
         at oracle.net.ca.ConfigureProfile.setDefaultProfileParams(Unknown Source)
         at oracle.net.ca.InitialSetup.setupConfigObjects(Unknown Source)
         at oracle.net.ca.InitialSetup.<init>(Unknown Source)
         at oracle.net.ca.NetCA.main(Unknown Source)
    Dynamic libraries:
    009b2000-009c8000 r-xp 00000000 08:03 66327 /lib/ld-2.3.4.so
    009c8000-009c9000 r-xp 00015000 08:03 66327 /lib/ld-2.3.4.so
    009c9000-009ca000 rwxp 00016000 08:03 66327 /lib/ld-2.3.4.so
    009cc000-00af5000 r-xp 00000000 08:03 65550 /lib/tls/libc-2.3.4.so
    00af5000-00af7000 r-xp 00129000 08:03 65550 /lib/tls/libc-2.3.4.so
    00af7000-00af9000 rwxp 0012b000 08:03 65550 /lib/tls/libc-2.3.4.so
    00afd000-00aff000 r-xp 00000000 08:03 65628 /lib/libdl-2.3.4.so
    00aff000-00b00000 r-xp 00001000 08:03 65628 /lib/libdl-2.3.4.so
    00b00000-00b01000 rwxp 00002000 08:03 65628 /lib/libdl-2.3.4.so
    00b03000-00b24000 r-xp 00000000 08:03 65630 /lib/tls/libm-2.3.4.so
    00b24000-00b25000 r-xp 00020000 08:03 65630 /lib/tls/libm-2.3.4.so
    00b25000-00b26000 rwxp 00021000 08:03 65630 /lib/tls/libm-2.3.4.so
    00b3a000-00b48000 r-xp 00000000 08:03 65626 /lib/tls/libpthread-2.3.4.so
    00b48000-00b49000 r-xp 0000d000 08:03 65626 /lib/tls/libpthread-2.3.4.so
    00b49000-00b4a000 rwxp 0000e000 08:03 65626 /lib/tls/libpthread-2.3.4.so
    00b5a000-00b6d000 r-xp 00000000 08:03 65563 /lib/libnsl-2.3.4.so
    00b6d000-00b6e000 r-xp 00012000 08:03 65563 /lib/libnsl-2.3.4.so
    00b6e000-00b6f000 rwxp 00013000 08:03 65563 /lib/libnsl-2.3.4.so
    00c3b000-00c88000 r-xp 00000000 08:03 2744731 /usr/X11R6/lib/libXt.so.6.0
    00c88000-00c8c000 rwxp 0004c000 08:03 2744731 /usr/X11R6/lib/libXt.so.6.0
    00cb8000-00cc5000 r-xp 00000000 08:03 2744022 /usr/X11R6/lib/libXext.so.6.4
    00cc5000-00cc6000 rwxp 0000c000 08:03 2744022 /usr/X11R6/lib/libXext.so.6.4
    00d35000-00d3d000 r-xp 00000000 08:03 2744016 /usr/X11R6/lib/libSM.so.6.0
    00d3d000-00d3e000 rwxp 00007000 08:03 2744016 /usr/X11R6/lib/libSM.so.6.0
    00d40000-00d55000 r-xp 00000000 08:03 2744048 /usr/X11R6/lib/libICE.so.6.3
    00d55000-00d56000 rwxp 00014000 08:03 2744048 /usr/X11R6/lib/libICE.so.6.3
    00d7f000-00d8e000 r-xp 00000000 08:03 65538 /lib/libresolv-2.3.4.so
    00d8e000-00d8f000 r-xp 0000f000 08:03 65538 /lib/libresolv-2.3.4.so
    00d8f000-00d90000 rwxp 00010000 08:03 65538 /lib/libresolv-2.3.4.so
    08048000-08056000 r-xp 00000000 08:03 3402878 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/bin/java
    08056000-08059000 rwxp 0000d000 08:03 3402878 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/bin/java
    e917c000-e9180000 r-xp 00000000 08:03 65582 /lib/libnss_dns-2.3.4.so
    e9180000-e9181000 r-xp 00003000 08:03 65582 /lib/libnss_dns-2.3.4.so
    e9181000-e9182000 rwxp 00004000 08:03 65582 /lib/libnss_dns-2.3.4.so
    e91e8000-e93c4000 r-xp 00000000 08:03 3396951 /opt/app/oracle/product/10.2.0/db_1/lib32/libnnz10.so
    e93c4000-e93ea000 rwxp 001dc000 08:03 3396951 /opt/app/oracle/product/10.2.0/db_1/lib32/libnnz10.so
    e93ec000-ea115000 r-xp 00000000 08:03 3393845 /opt/app/oracle/product/10.2.0/db_1/lib32/libclntsh.so.10.1
    ea115000-ea176000 rwxp 00d29000 08:03 3393845 /opt/app/oracle/product/10.2.0/db_1/lib32/libclntsh.so.10.1
    ea18a000-ea19f000 r-xp 00000000 08:03 3396950 /opt/app/oracle/product/10.2.0/db_1/lib32/libnjni10.so
    ea19f000-ea1a3000 rwxp 00014000 08:03 3396950 /opt/app/oracle/product/10.2.0/db_1/lib32/libnjni10.so
    ea1a3000-ea2cb000 r-xs 00000000 08:03 3398159 /opt/app/oracle/product/10.2.0/db_1/lib/xmlparserv2.jar
    ea2cb000-ea3a6000 r-xp 00000000 08:03 2743489 /usr/X11R6/lib/libX11.so.6.2
    ea3a6000-ea3aa000 rwxp 000db000 08:03 2743489 /usr/X11R6/lib/libX11.so.6.2
    ea3aa000-ea3ae000 r-xp 00000000 08:03 2747234 /usr/X11R6/lib/libXtst.so.6.1
    ea3ae000-ea3af000 rwxp 00003000 08:03 2747234 /usr/X11R6/lib/libXtst.so.6.1
    ea3af000-ea3b6000 r-xp 00000000 08:03 2746794 /usr/X11R6/lib/libXp.so.6.2
    ea3b6000-ea3b7000 rwxp 00006000 08:03 2746794 /usr/X11R6/lib/libXp.so.6.2
    ea3c5000-ea3d2000 r-xp 00000000 08:03 3397034 /opt/app/oracle/product/10.2.0/db_1/lib32/libldapjclnt10.so
    ea3d2000-ea3d4000 rwxp 0000c000 08:03 3397034 /opt/app/oracle/product/10.2.0/db_1/lib32/libldapjclnt10.so
    ea3d4000-ea427000 r-xp 00000000 08:03 3402824 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libmlib_image.so
    ea427000-ea428000 rwxp 00052000 08:03 3402824 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libmlib_image.so
    ea428000-ea6f9000 r-xp 00000000 08:03 3402807 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libawt.so
    ea6f9000-ea70f000 rwxp 002d0000 08:03 3402807 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libawt.so
    ea734000-eaad1000 r-xs 00000000 08:03 3400824 /opt/app/oracle/product/10.2.0/db_1/oui/jlib/OraInstaller.jar
    eaad1000-eab16000 r-xs 00000000 08:03 3395440 /opt/app/oracle/product/10.2.0/db_1/ldap/oidadmin/dasnls.jar
    eab16000-eab22000 r-xs 00000000 08:03 3395716 /opt/app/oracle/product/10.2.0/db_1/jlib/jssl-1_1.jar
    eab22000-eabba000 r-xs 00000000 08:03 3396625 /opt/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt10.jar
    eabba000-eac81000 r-xs 00000000 08:03 3395557 /opt/app/oracle/product/10.2.0/db_1/jlib/srvm.jar
    eac81000-eac8f000 r-xs 00000000 08:03 3395559 /opt/app/oracle/product/10.2.0/db_1/jlib/srvmhas.jar
    eac8f000-eac9d000 r-xs 00000000 08:03 3398543 /opt/app/oracle/product/10.2.0/db_1/jlib/share.jar
    eac9d000-ead52000 r-xs 00000000 08:03 3398463 /opt/app/oracle/product/10.2.0/db_1/jlib/oracle_ice.jar
    ead52000-eaef9000 r-xs 00000000 08:03 3398461 /opt/app/oracle/product/10.2.0/db_1/jlib/jewt4.jar
    eaef9000-eaf5e000 r-xs 00000000 08:03 3398144 /opt/app/oracle/product/10.2.0/db_1/jlib/help4.jar
    eaf5e000-eaf90000 r-xs 00000000 08:03 3395277 /opt/app/oracle/product/10.2.0/db_1/network/jlib/netca.jar
    eaf90000-eafb6000 r-xs 00000000 08:03 3395278 /opt/app/oracle/product/10.2.0/db_1/network/jlib/netcam.jar
    eafb6000-eafff000 r-xs 00000000 08:03 3398533 /opt/app/oracle/product/10.2.0/db_1/jlib/netcfg.jar
    eafff000-eb00d000 r-xs 00000000 08:03 3395350 /opt/app/oracle/product/10.2.0/db_1/jlib/ewtcompat-3_3_15.jar
    eb00d000-eb292000 r-xs 00000000 08:03 3398465 /opt/app/oracle/product/10.2.0/db_1/jlib/ewt3.jar
    eb292000-eb2d7000 r-xs 00000000 08:03 3402978 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/mail.jar
    eb2d7000-eb2e5000 r-xs 00000000 08:03 3402981 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/activation.jar
    eb2e5000-eb2e8000 r-xs 00000000 08:03 3402980 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/smtp.jar
    eb2e8000-eb2f5000 r-xs 00000000 08:03 3402796 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/ldapsec.jar
    eb2f5000-eb3b1000 r-xs 00000000 08:03 3402797 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/localedata.jar
    eb3b1000-eb3cd000 r-xs 00000000 08:03 3402798 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/sunjce_provider.jar
    eb3cd000-eb3d0000 r-xs 00000000 08:03 3402977 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/jta.jar
    eb3d0000-eb3f6000 r-xs 00000000 08:03 3402979 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/mailapi.jar
    eb3f6000-eb3f9000 r-xs 00000000 08:03 3402795 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/ext/dnsns.jar
    eb5fd000-eb7fd000 r-xp 00000000 08:03 2739444 /usr/lib/locale/locale-archive
    f5aa8000-f6048000 r-xs 00000000 08:03 3402343 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/charsets.jar
    f6048000-f6059000 r-xs 00000000 08:03 3402381 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/jce.jar
    f6059000-f6136000 r-xs 00000000 08:03 3402382 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/jsse.jar
    f6136000-f614c000 r-xs 00000000 08:03 3402390 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/sunrsasign.jar
    f6196000-f7b41000 r-xs 00000000 08:03 3402389 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/rt.jar
    f7b41000-f7b55000 r-xp 00000000 08:03 3402830 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libzip.so
    f7b55000-f7b58000 rwxp 00013000 08:03 3402830 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libzip.so
    f7b58000-f7b78000 r-xp 00000000 08:03 3402815 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libjava.so
    f7b78000-f7b7a000 rwxp 0001f000 08:03 3402815 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libjava.so
    f7b7a000-f7b83000 r-xp 00000000 08:03 65585 /lib/libnss_files-2.3.4.so
    f7b83000-f7b84000 r-xp 00008000 08:03 65585 /lib/libnss_files-2.3.4.so
    f7b84000-f7b85000 rwxp 00009000 08:03 65585 /lib/libnss_files-2.3.4.so
    f7b8c000-f7b9c000 r-xp 00000000 08:03 3402829 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libverify.so
    f7b9c000-f7b9e000 rwxp 0000f000 08:03 3402829 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libverify.so
    f7b9e000-f7ba2000 rwxs 00000000 08:03 2441590 /tmp/hsperfdata_oracle/16276
    f7ba2000-f7baa000 r-xp 00000000 08:03 3402837 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/native_threads/libhpi.so
    f7baa000-f7bab000 rwxp 00007000 08:03 3402837 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/native_threads/libhpi.so
    f7bab000-f7fb1000 r-xp 00000000 08:03 3402836 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/client/libjvm.so
    f7fb1000-f7fcc000 rwxp 00405000 08:03 3402836 /opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/client/libjvm.so
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 367K [0xeba00000, 0xebaa0000, 0xebee0000)
    eden space 512K, 65% used [0xeba00000, 0xeba53a60, 0xeba80000)
    from space 64K, 51% used [0xeba90000, 0xeba984e0, 0xebaa0000)
    to space 64K, 0% used [0xeba80000, 0xeba80000, 0xeba90000)
    tenured generation total 1408K, used 551K [0xebee0000, 0xec040000, 0xefa00000)
    the space 1408K, 39% used [0xebee0000, 0xebf69f10, 0xebf6a000, 0xec040000)
    compacting perm gen total 4096K, used 3566K [0xefa00000, 0xefe00000, 0xf3a00000)
    the space 4096K, 87% used [0xefa00000, 0xefd7b958, 0xefd7ba00, 0xefe00000)
    Local Time = Mon Sep 28 16:54:01 2009
    Elapsed Time = 1
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid16276.log.
    # Please refer to the file for further information.
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "/opt/app/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------

    Looking at the stack trace
    Current Java thread:
    at oracle.net.common.NetGetEnv.getDNSDomain(Native Method)
    at oracle.net.ca.ConfigureProfile.setDefaultProfileParams(Unknown Source)
    at oracle.net.ca.InitialSetup.setupConfigObjects(Unknown Source)
    at oracle.net.ca.InitialSetup.<init>(Unknown Source)
    at oracle.net.ca.NetCA.main(Unknown Source)it might be your host or domain name settings are incorrect. Could you check this?
    Ronny Egner

  • Blackberry Assistant, function and features

    When using the blackberry Assistant to dictate a E-mail or message, is it possible to insert a line break?
    Also is it possible to control or adjust the punctuation being inserted/use? For example, when you say double quote the assistant inserts the HTML #quote; tag verses simply the " symbol.
    Also, is there a reference document of the possible Assistant commands that can be used? Its impossible to click or tap on the info "?" icon when you can't see it.

    Go to Options > Advanced Options > Application and delete the Blackberry Messenger.
    Then open your BB broswer > Go to www.blackberry.com/messenger
    If someone give you helpful hints, please click on Kudos.
    If you issue is resolved, mark Accept Solution next to the resolution post.
    Feel free to search www.blackberry.com/btsc to find your answers.

  • Oracle 10g2 installation stucks at Oracle Database Configuration Assistant

    Hi,
    I was trying to install Oracle 10g2 on a remote server. The linux version is FC5. The installation stoped at Oracle Database Configuration Assistant. How can I fix it?
    Thanks a lot
    Lu

    Thanks for the reply. The details are as follows. I was trying to install Oracle Database 10g Release 2(10.2.0.1) on Linux Fedora Core 5. So I downloaded 10201_database_linux32.zip. The cksum was correct. I completely followed the steps in this article: http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnFedora5.php
    Everything was fine until it got to Oracle Database Configuration Assistant. It hung indefinitely without moving. The message on the screening was:
    Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Command = /u01/app/oracle/product/10.2.0/db_1/bin/dbca -progress_only -createDatabase -templateName General_Purpose.dbc -gdbName csci585.usc.edu -sid csci585 -sysPassword 051e421f15d524e2fb763a340793d33c1c594d87e6c0773f71 -systemPassword 05f8ff2a15958d237280c14aa0cfc26a7e23ffc20d70c6e080 -sysmanPassword 0558a50d15b50780caf748645c350d92581789988d719ede4b -dbsnmpPassword 05ca6bea1475cdbb6780d96cc4fb00a6ad0921b9eaf66a01dd -emConfiguration LOCAL -datafileJarLocation /u01/app/oracle/product/10.2.0/db_1/assistants/dbca/templates -datafileDestination /u01/app/oracle/oradata/ -responseFile NO_VALUE -characterset WE8ISO8859P1 -obfuscatedPasswords true -sampleSchema false -oratabLocation /u01/app/oracle/product/10.2.0/db_1/install/oratab -recoveryAreaDestination NO_VALUE
    Actually, at the beginning It stucked at Oracle Net Configuration Assistant. I searched the Internet and found an article saying "If scp and ssh are not in the path /usr/local/bin, then create a symbolic link in /usr/local/bin to the location where scp and ssh are found", I did that and it passed Oracle Net Configuration Assistant, but then stopped at the next step Oracle Database Configuration.
    One thing I think is helpful to know is that the server was previously installed with Oracle10g1. It worked for three years as the server for the students doing projects in a database class. But recently the JDBC to spatial database connection had some problem so we decided to install Oracle10g2. We deinstalled the previous Oracle10g1 with OUI but we are not sure if the deinstallation is clean and complete.
    Any help will be highly appreciated!
    Lu

Maybe you are looking for

  • Apps wont download / sync

    I received my iPhone 4 today. Backed up my 3GS, Activated and synced 4 without issues but iTunes didn't download all the apps I've purchased to the new phone. I unplugged the USB and synced again but that diet work. Any ideas?

  • NO RADIO OPTION ON MY IPOD!!

    I have a 30gb 5th gen ipod video and i jus brought the radio remote. after what seemed like a million resets and turnin the option off and on, i still dont see the radio option on the main or in the music screen can some1 tell me what im doin wrong,

  • Block outgoing payment for a vendor

    Hi, How we can Block outgoing payment for a vendor. Thanks in advance. Regards, Goutam

  • How do I view connection status of attendees in version 9

    I have tried Pod options but there is no option to view connection status as described in this article:http://www.connectusers.com/tutorials/2009/03/voip_best_practices/index.php

  • Error in transaction SFP

    hello. when i create a form in SFP and go to the LAYOUT tab to create layout. it throw's me an error that 'no layout exist in language EN'. what does it mean? how to fix it?