EPMA Server 11.1.2.2 not starting

Hi All!!
I've installed a EPM 11.1.2.2 environment in Windows 2008 Server with Oracle Database 11.2.0.1. The install and configuration was smoothly, but when I start the services the EPMA Server services does no start and I've seen this outut in the Event Viewer :
Service cannot be started. Hyperion.DimensionServer.Interface.Exceptions.EPMAServiceException: was not possible to start the session manager. ---> System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize ---> System.Configuration.ConfigurationErrorsException: Unrecognized configuration section system.serviceModel. (C:\Oracle\Middleware\EPMSystem11R1\products\Foundation\BPMA\AppServer\DimensionServer\ServerEngine\bin\EPMA_Server.exe.Config line 3)
at System.Configuration.ConfigurationSchemaErrors.ThrowIfErrors(Boolean ignoreLocal)
at System.Configuration.BaseConfigurationRecord.ThrowIfInitErrors()
at System.Configuration.ClientConfigurationSystem.EnsureInit(String configKey)
--- End of inner exception stack trace ---
at System.Configuration.ConfigurationManager.GetSection(String sectionName)
at System.Configuration.PrivilegedConfigurationManager.GetSection(String sectionName)
at System.Net.Configuration.SettingsSectionInternal.get_Section()
Where can I find what is happening with it ?
Does someone could help me on that ?
Thanks

The following doc in Oracle Support might be helpful - "EPMA Error "EPMAServiceException: Cannot initialize the Session Manager. System.Configuration.ConfigurationErrorsException: Configuration system failed to initialize" [ID 1464564.1]"
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • SQL Server 2012 DB Engine does not start (clean install with server 2012 and 2008 R2)

    I'm trying to do clean installation of SQL server 2012 on Server 2012 (which is runnning as a VM on ESX server) and getting this "wait on the DB engine recovery failed" message. Initially, I though this issue was related to some permission issues
    but changing the permission or service accounts didn't help. I'm not seeing any "denied" messages in the log files either. Even with Server 2008 R2 (clean built VM), the installation gives the exactly the same error messages. 
    My setup is purely for test purpose; so, the security is not a concern. Can someone help or give me a clue where to look? 
    (Summary)
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2061893606
      Start time:                    2014-05-28 17:12:12
      End time:                      2014-05-28 17:19:47
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for SQLEngine:       Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
    Machine Properties:
      Machine name:                  WIN-1V3VKPV5Q19
      Machine processor count:       1
      OS version:                    Future Windows Version
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
    Package properties:
      Description:                   Microsoft SQL Server 2012 Service Pack 1
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      Installation location:         E:\x64\setup\
      Installation edition:          Evaluation
      Slipstream:                    True
      SP Level                       1
      Patch Level:                   11.1.3128.0
    Product Update Status:
      Success: KB 2674319, KB 2793634
    Product Updates Selected for Installation:
      Title:                         Service Pack 1
      Knowledge Based Article:       KB 2674319
      Version:                       11.1.3000.0
      Architecture:                  x64
      Language:                      1033
      Title:                         SQL Server 2012 SP1 GDR Product Update
      Knowledge Based Article:       KB 2793634
      Version:                       11.1.3128.0
      Architecture:                  x64
      Language:                      All
      Update Source:                 MU
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      false
      AGTSVCACCOUNT:                 NT Service\SQLAgent$TESTDB
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Automatic
      CLTCTLRNAME:                   <empty>
      CLTRESULTDIR:                  <empty>
      CLTSTARTUPTYPE:                0
      CLTSVCACCOUNT:                 <empty>
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 <empty>
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\ConfigurationFile.ini
      CTLRSTARTUPTYPE:               0
      CTLRSVCACCOUNT:                <empty>
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     <empty>
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                false
      FEATURES:                      SQLENGINE
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    TESTDB
      INSTANCENAME:                  TESTDB
      ISSVCACCOUNT:                  NT AUTHORITY\Network Service
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          <empty>
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              DefaultSharePointMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT Service\MSSQL$TESTDB
      SQLSVCPASSWORD:                <empty>
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           WIN-1V3VKPV5Q19\Administrator
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  false
      TCPENABLED:                    1
      UIMODE:                        Normal
      UpdateEnabled:                 true
      UpdateSource:                  MU
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A001A
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026
      Feature:                       SQL Browser
      Status:                        Passed
      Feature:                       SQL Writer
      Status:                        Passed
      Feature:                       SQL Client Connectivity
      Status:                        Passed
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140528_170909\SystemConfigurationCheck_Report.htm
    (Error Log)
    2014-05-28 17:17:26.64 spid8s      0 transactions rolled back in database 'msdb' (4:0). This is an informational message only. No user action is required.
    2014-05-28 17:17:26.73 spid9s      Starting up database 'model'.
    2014-05-28 17:17:28.24 spid9s      Error: 9004, Severity: 23, State: 6.
    2014-05-28 17:17:28.24 spid9s      An error occurred while processing the log for database 'model'.  If possible, restore from backup. If a backup is not available, it might be necessary to rebuild the log.
    2014-05-28 17:17:28.24 spid9s      SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    (Details)
    (01) 2014-05-28 17:17:28 Slp: Exception type: Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException
    (01) 2014-05-28 17:17:28 Slp:     Message: 
    (01) 2014-05-28 17:17:28 Slp:         Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
    (01) 2014-05-28 17:17:28 Slp:     HResult : 0x851a001a
    (01) 2014-05-28 17:17:28 Slp:         FacilityCode : 1306 (51a)
    (01) 2014-05-28 17:17:28 Slp:         ErrorCode : 26 (001a)
    (01) 2014-05-28 17:17:28 Slp:     Data: 
    (01) 2014-05-28 17:17:28 Slp:       SQL.Setup.FailureCategory = ConfigurationFailure
    (01) 2014-05-28 17:17:28 Slp:       WatsonConfigActionData = INSTALL@CONFIGRC@SQL_ENGINE_CORE_INST
    (01) 2014-05-28 17:17:28 Slp:       WatsonExceptionFeatureIdsActionData = System.String[]
    (01) 2014-05-28 17:17:28 Slp:     Stack: 
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart(Process processSql)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceSCM.StartSqlServer(String[] parameters)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineDBStartConfig.ConfigSQLServerSystemDatabases(EffectiveProperties properties, Boolean isConfiguringTemplateDBs, Boolean useInstallInputs)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineDBStartConfig.DoCommonDBStartConfig(ConfigActionTiming timing)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlConfigBase.SlpConfigAction.ExecuteAction(String actionId)
    (01) 2014-05-28 17:17:28 Slp:         at Microsoft.SqlServer.Configuration.SqlConfigBase.SlpConfigAction.Execute(String actionId, TextWriter errorStream)
    (01) 2014-05-28 17:17:28 Slp: Watson Bucket 1 
     Original Parameter Values 
    (01) 2014-05-28 17:17:28 Slp: Parameter 0 : SQL Server 2012@RTM@ 
    (01) 2014-05-28 17:17:28 Slp: Parameter 1 : Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart 
    (01) 2014-05-28 17:17:28 Slp: Parameter 2 : Microsoft.SqlServer.Configuration.SqlEngine.SqlServerServiceBase.WaitSqlServerStart 
    (01) 2014-05-28 17:17:28 Slp: Parameter 3 : Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 4 : Microsoft.SqlServer.Configuration.SqlEngine.SqlEngineConfigException@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 5 : SqlEngineDBStartConfigAction_install_configrc 
    (01) 2014-05-28 17:17:28 Slp: Parameter 6 : INSTALL@CONFIGRC@SQL_ENGINE_CORE_INST 
    (01) 2014-05-28 17:17:28 Slp: 
     Final Parameter Values 
    (01) 2014-05-28 17:17:28 Slp: Parameter 0 : SQL Server 2012@RTM@ 
    (01) 2014-05-28 17:17:28 Slp: Parameter 1 : 0xD15B4EB2 
    (01) 2014-05-28 17:17:28 Slp: Parameter 2 : 0xD15B4EB2 
    (01) 2014-05-28 17:17:28 Slp: Parameter 3 : 0x4BDAF9BA@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 4 : 0x4BDAF9BA@1306@26 
    (01) 2014-05-28 17:17:28 Slp: Parameter 5 : SqlEngineDBStartConfigAction_install_configrc 
    (01) 2014-05-28 17:17:28 Slp: Parameter 6 : 0x9C5770A6 

    Hi Nababoya:
    As you are telling this is a test installation process...
    In the logs i m seeing the error message "An error occurred while processing the log for database 'model'.  If possible, restore from backup. If a backup is not available, it might be necessary to rebuild the log.".
    1) If the SQL Services was installed successfully and SQL Service was not able to start because of model database issue...
        1.1) If you have model database SQL back file, start the SQL Server in single user mode with minimum configuration and try to restore MODEL database
    http://blogs.msdn.com/b/sqlserverfaq/archive/2011/05/11/inf-hey-my-sql-server-service-is-not-starting-what-do-i-do.aspx
        1.2) If you don't have backups., try to rebuild the system databases but make sure that you are not losing any data critical data on master and SQL Jobs on MSDB
    http://msdn.microsoft.com/en-us/library/dd207003%28v=sql.110%29.aspx#RebuildProcedure
    2) As if this is a new installation try to repair the instance with the help of setup media file
    3) If the repair option fails., the last option wipe out the complete SQL Server components from Services.msc and Registries and start new installation.
    4) Make sure when you are doing un-installation all the required SQL Server components on services.msc should be in stop state.
    Hope this helps and let me know any questions...
    Thanks,
    Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)

  • Hyperion EPM server - web application service does not start

    Hi All,
    I installed and configured epm 11.1.2.2 on windows 2008 server. I was able to start all the services except "Hyperion EPM server - web application" everytim I start the service I am getting an error "some services start and stop as they are not used by any other programs and applications'.
    I reconfigured the web server and deployed the application server again but still I am having the same issue.
    I was not able to see planning from the navigate of workspace and I am getting errors while trying to start the web analysis.
    Can anyone please let me know where I am doing wrong..
    Thanks a lot!

    Hi John,
    we deployed workspace, financial reporting, web analysis, shared services, planning web applications. we were able to access most of them except "web analysis".
    we are getting an error while trying to login Web analysis "when starting web anaysis an error occured while initalizing startup options".
    I have HP BL480 32 gb of RAM.
    I am not getting any error while configuring but I am getting the error when trying toi start the service.
    here are the log files for web analysis
    [2012-07-20T15:51:20.714-04:00] [WebAnalysis0] [WARNING] [] [oracle.webanalysis] [tid: 192] [userId: <anonymous>] [ecid: 0000JY_wS67DoYdpxc4EyW1G2Qia000028,0] [SRC_CLASS: com.hyperion.analyzer.utils.general.HYAURLParamHandler] [APP: WEBANALYSIS#11.1.2.0] [SRC_METHOD: getAnalyzerBaseURL] AnalyzerBaseURL=http://ftldhyptest1.citrite.net:28080/WebAnalysis
    [2012-07-20T15:51:20.718-04:00] [WebAnalysis0] [WARNING] [] [oracle.webanalysis] [tid: 192] [userId: <anonymous>] [ecid: 0000JY_wS67DoYdpxc4EyW1G2Qia000028,0] [SRC_CLASS: com.hyperion.analyzer.utils.general.HYAURLParamHandler] [APP: WEBANALYSIS#11.1.2.0] [SRC_METHOD: getAnalyzerBaseURL] AnalyzerBaseURL=http://ftldhyptest1.citrite.net:28080/WebAnalysis
    Thanks a lot!
    Edited by: user608296 on Jul 20, 2012 12:54 PM

  • Admin Server Shows Singleton Services Manager not started

    Hi,
    I have an environment with 1 Admin Server and 2 Managed Servers in the cluster.
    I am using Migration basis as database for the cluster. I checked by installing one singleton service that it is working fine in cluster.
    Then I created one migratable target having auto migration as the migration policy and migratable target is also working as expected.
    Now the problem is whenever I start my Admin Server it is throwing exception:
    Cannot add Singleton Service <Migratable Target Name> as Singleton not started.  Check if MigrationBasis for cluster is configured.
    Anyone is having any idea about this problem, what can be the issue is?
    Thanks in Advance

    Hi Ramprakash Arun,
    To prevent the java.net.BindException, use a unique combination of the IP:port as the listen address for every channel configured on the server. No other process should be listening on that address (IP:port).
    Using netstat, verify whether the port specified is already in use by another process or not. Also check if the listen address is valid (using ipconfig/ifconfig).
    Regards,
    Vijaya

  • Oracle application server 10g enterprise manager is not starting

    Hi all,
    Pls. help me, our OAS 10g's enterprise manager is not starting whereas AS is up & opmn is also running.
    Can anybody has idea?.Thanks in advance.

    hi Kamran,
    Please remember to always give some details about what product/ type/ version/ platform are you working with. this does not leave others to wait for divine revelation or mortal guessing;
    also on reporting errors, please provide exact error(s) with error codes as you see and not the error described in your words. that helps clearly understand the problem.
    about current problem, please tell us what did you expect to see and what did you exactly get.
    and Roberto is right, check the version in %ORACLE_HOME%\config\ias.properties.
    regards,
    AMN

  • Exchange Server 2013- Information Store Service not starting

    Hi Everyone,
    We are having an issue with one of our Exchange Servers that is running Exchange Mailbox server role.
    Server : Exchange 2013 CU3 , Windows Server 2012 R2
    We noticed on Friday that its "Information Store Service" has stopped working and we try to manually run it (Services->Microsoft
    Exchange Information Store Service -> Start) 
    Service didn't start and gave : Error 0x80004005 Unspecified Error
    Trying to start the service using the command line using:  net start MSexchangeIS gave us a different error:
    System Error 16389 has Occurred
    The system can not find message text for message number 0x4005 in the message file for BASE
    Event viewer has  (Event ID : 7031):
    The Microsoft Exchange Information Store service terminated unexpectedly.  It has done this 1 time(s).  The following corrective action will be taken in 5000 milliseconds: Restart the service.
    Since we have got this error we have tried some fixes such as  Checking Time synchronisation  and IPv6 issues. But nothing
    seems to have caused this. We have rebuild the windows server from scratch and used the recover server switch to  rebuild the Exchange server. Still the same issue.
    Any help would be greatly appreciated.

    Hi Tiraj,
    Any update? Does the issue still occur after install Exchange server on Windows Server 2012?
    I wonder if the issue occurs suddenly or did you configured something on database.
    In addition, overload on server could also cause the issue.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Sql 2012 server for SCCM 2012 - Agent not starting

    Hi ,
      In our environment we have a Sql 2012, and it was working fine till now.  but after installation of RDP role and subsequent installation of certificates for remote desktop in the SCCM server ( SQL 2012 is
    installed in it) 
    we are facing the issue - Sql server management studio not connecting ( windows authenticaltion)
    1) A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)A
    2) I tried starting the sql agent service in services.msc  and the below error came 
    The SQL Server Agent (MSSQLSERVER) service on Local Computer started and then stopped. 
    Some services stop automatically if they are not in use by other services or programs.
    3) In the Sql Server configuration manager also tried starting the sql agent but 
    The request failed or the service did not respond in a timely fashion. 
    Consult the event log or other applicable error logs for details.
    The widows event logs show this error
    A fatal alert was generated and sent to the remote endpoint. This may result in termination of the connection. 
    The TLS protocol defined fatal error code is 20. The Windows SChannel error state is 960.
    We have removed the certificate and the RDP role in that . 
    Can anyone please help on this
    Anand M

    I would check for error messages in the SQL Server ERROLOG file and also Agent's SQLAGENT.OUT file.
    Tibor Karaszi, SQL Server MVP |
    web | blog

  • Using StandAlone Hyper V Server 2008 R2 - clustering service not start - with error code 2 when you try to start the service

    Dear All,
    Kindly help me for the above.
    I have tried out the following:
    time sync with DC - checked
    Re-install the feature and restart the servers
    check registry key value winreg - local service account read only and added domain admin account
    2 days googling, no luck
    Generate cluster report and error error_mod_not_found (126) reported.
    Thanks

    Hi,
    Now that you have a cluster in place and you installed a VM on this but is the VM HA enabled ?
    even on a cluster your VM can still be single server. For creating a HA VM you need shared storage or shared VHDX.  and you will need the broker services with out this there is no-way the VM will failover.
    Check on teched on how to do this or my blog:
    http://blogs.msdn.com/b/clustering/
    http://robertsmit.wordpress.com/?s=shared+vhdx
    http://robertsmit.wordpress.com/2014/01/14/virtual-hard-disk-sharing-shared-vhdx-storage-pool-usage-in-failover-clustering-windows-server-2012-r2/
    http://robertsmit.wordpress.com/2013/06/12/windows-server-2012-configure-deploy-hyper-v-replica-broker-how-to-tee13-msteched/
    Greetings, Robert Smit Follow me @clustermvp http://robertsmit.wordpress.com/ “Please click "Vote As Helpful" if it is helpful for you and Proposed As Answer” Please remember to click “Mark as Answer” on the post that helps you

  • EPMA Windows Services not starting

    Before you all jump on me, I've read almost all of the threads and documentation concerning this issue that are out there. I've checked the databases and they are configured appropriately, I've checked the IPv6 settings and they are ok. this EPMA installation is on a windows server 2008 r2 platform, Planning and other components are installed in a LINUX environment. I've got everything just about working except for the Dimension Server. The service will not start:
    Log Name: Application
    Source: Hyperion EPMA DimensionServer
    Date: 8/23/2012 11:59:52 AM
    Event ID: 0
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: my-server-name
    Description:
    Service cannot be started. Hyperion.DimensionServer.Interface.Exceptions.EPMAServiceException: Cannot initialize the Session Manager. ---> Hyperion.CommonServices.Exceptions.SessionManagerException: Session Manager could not start because database connectivity could not be established. ---> Oracle.DataAccess.Client.OracleException at Hyperion.DimensionServer.SessionManager.SessionManager.InitializeSqlConnectionString()
    --- End of inner exception stack trace ---
    at Hyperion.DimensionServer.SessionManager.SessionManager.InitializeSqlConnectionString()
    at Hyperion.DimensionServer.SessionManager.SessionManager.Initialize(String configFileName, Boolean restorePastInstanceSessions, Boolean enableCaching)
    --- End of inner exception stack trace ---
    at Hyperion.DimensionServer.Service.Main.InitializeSessionManager()
    at Hyperion.DimensionServer.Service.Main.Start()
    at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Hyperion EPMA DimensionServer" />
    <EventID Qualifiers="0">0</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2012-08-23T15:59:52.000000000Z" />
    <EventRecordID>4404</EventRecordID>
    <Channel>Application</Channel>
    <Computer>my-server-name</Computer>
    <Security />
    </System>
    <EventData>
    <Data>Service cannot be started. Hyperion.DimensionServer.Interface.Exceptions.EPMAServiceException: Cannot initialize the Session Manager. ---&gt; Hyperion.CommonServices.Exceptions.SessionManagerException: Session Manager could not start because database connectivity could not be established. ---&gt; Oracle.DataAccess.Client.OracleException at Hyperion.DimensionServer.SessionManager.SessionManager.InitializeSqlConnectionString()
    --- End of inner exception stack trace ---
    at Hyperion.DimensionServer.SessionManager.SessionManager.InitializeSqlConnectionString()
    at Hyperion.DimensionServer.SessionManager.SessionManager.Initialize(String configFileName, Boolean restorePastInstanceSessions, Boolean enableCaching)
    --- End of inner exception stack trace ---
    at Hyperion.DimensionServer.Service.Main.InitializeSessionManager()
    at Hyperion.DimensionServer.Service.Main.Start()
    at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)</Data>
    </EventData>
    </Event>
    Dimension SErver log:
    [2012-08-23T11:58:06.501-04:00] [EPMADIM] [NOTIFICATION:32] [EPMADIM-1] [EPMADIM.Hyperion.NetJNIBridge.Process.Program] [tid: EPMA NetJNIBridge] [ecid: disabled,0] Binding to port: 5255
    [2012-08-23T11:58:06.657-04:00] [EPMADIM] [NOTIFICATION:32] [EPMADIM-1] [EPMADIM.Hyperion.DimensionServer.Utility.ChannelUtility] [tid: EPMA NetJNIBridge] [ecid: disabled,0] Detected pure IPv4 environment. Using default binding.
    [2012-08-23T11:59:52.176-04:00] [EPMADIM] [NOTIFICATION:32] [EPMADIM-1] [EPMADIM.Hyperion.DimensionServer.Global] [tid: EPMA Server Startup] [ecid: disabled,0] Dimension Server terminated.
    [2012-08-23T11:59:52.380-04:00] [EPMADIM] [INTERNAL_ERROR:32] [EPMADIM-1] [EPMADIM.Hyperion.CommonServices.Exceptions.BaseException] [tid: EPMA Server Startup] [ecid: disabled,0] SVR_ERR_PROCESSMGR_CANT_INIT_SESSIONMGR:Cannot initialize the Session Manager. at Hyperion.DimensionServer.Service.Main.InitializeSessionManager()
    at Hyperion.DimensionServer.Service.Main.Start()
    I don't know if this is relevant but here's a snippet from the shared services security log:
    [2012-08-23T11:41:18.958-04:00] [EPMCSS] [TRACE] [] [oracle.EPMCSS.CSS] [tid: 29] [ecid: 0000J_K7LfyComI_mp0FyZ1GD^h3000009,0] Duplicate Entry[[
    com.hyperion.css.dal.DALUniqueConstraintException: ORA-00001: unique constraint (EBASEADM.PK_PROV_INFO) violated
    at com.hyperion.css.dal.jdbc.oracle.OracleExceptionHandler.handle(OracleExceptionHandler.java:20)
    at com.hyperion.css.dal.jdbc.wrapper.CSSPreparedStatement.executeUpdate(CSSPreparedStatement.java:129)
    at com.hyperion.css.store.policy.PolicyStoreImpl.addRolesForEntry(PolicyStoreImpl.java:985)
    at com.hyperion.css.facade.impl.CSSUserProvisioningAPIImpl.setRolesList(CSSUserProvisioningAPIImpl.java:2352)
    at com.hyperion.css.facade.CSSUserProvisioningFacade.setRolesList(CSSUserProvisioningFacade.java:1059)
    at com.hyperion.interop.lib.helper.RegistryHelper.reRegisterApplication(RegistryHelper.java:646)
    at com.hyperion.interop.lib.helper.RegistrationHelper.register(RegistrationHelper.java:565)
    at com.hyperion.interop.lib.CMSClient.register(CMSClient.java:738)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.mozilla.javascript.MemberBox.invoke(MemberBox.java:160)
    at org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:243)
    at org.mozilla.javascript.optimizer.OptRuntime.callN(OptRuntime.java:86)
    at org.mozilla.javascript.gen.c66._c0(D:\Oracle\EPMSystem11R1\common\config\11.1.2.0\resources\repository\product\epmawebtier\58-register-instance-file.js:45)
    at org.mozilla.javascript.gen.c66.call(D:\Oracle\EPMSystem11R1\common\config\11.1.2.0\resources\repository\product\epmawebtier\58-register-instance-file.js)
    at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:401)
    at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:3003)
    at org.mozilla.javascript.gen.c66.call(D:\Oracle\EPMSystem11R1\common\config\11.1.2.0\resources\repository\product\epmawebtier\58-register-instance-file.js)
    at org.mozilla.javascript.gen.c66.exec(D:\Oracle\EPMSystem11R1\common\config\11.1.2.0\resources\repository\product\epmawebtier\58-register-instance-file.js)
    at org.mozilla.javascript.Context.evaluateReader(Context.java:1119)
    at com.hyperion.hit.tool.deploy.script.ProductDeployScriptRunner.runNextScript(ProductDeployScriptRunner.java:187)
    at com.hyperion.cis.config.DeploymentApiAdapter.deploy(DeploymentApiAdapter.java:118)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:804)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:498)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:90)
    at java.lang.Thread.run(Thread.java:619)
    Any insight as to what I can do here will be appreciated!

    You should take a look at the *"Database Installation"* part from the Installation Start here guide since if you are using Oracle Database to configure the EPMA components you need to install the Full Oracle Database Client since the PATH variable includes the path to the /bin folder for the Database client.
    Following is from the installation start here guide for EPM 11.1.2.2
    Install the full Oracle Database client on the following machines before you start your installation of EPM System products:
    Performance Management Architect Dimension server.
    Note:
    1. It is important to install the full database client as part of the installation because the PATH variable is updated to include the path to the /bin folder of the Oracle client.This setting is required for successful configuration.
    2. If you are using Oracle Database 10.2.0.4+, you must use a minimum of Oracle Database client 11.1.0.6.0.
    3. Performance Management Architect and Financial Management both require that a 64-bit Oracle Database client be installed.
    Thanks
    HyperEPM

  • Why does Vine Server not start with this script and work with the other?

    I have the preferences of Vine Server set to start/run automatically when opening the programme.
    If I double click the icon it works. Opens and starts.
    If I use
    activate application "Vine Server"
    it opens but does not start.
    If I use:
    tell application "Finder"
    activate
    open application file "Vine Server.app" of folder "Vine Server 3" of folder "Applications" of startup disk
    end tell
    it opens and starts.
    Anybody any idea as to why?
    This seems to happen since I upgraded form 10.4 to 10.5.

    Hello
    Do you have multiple versions of Vine Server application, perhaps?
    If so, that might cause the described behaviour.
    You may try using full path to the current Vine Server application such as -
    activate application "/Applications/Vine Server 3/Vine Server.app"
    or -
    tell application "/Applications/Vine Server 3/Vine Server.app" to activate
    H

  • SLD server will not start

    Hi, I am having an issue with my SLD server.  The java will not start completely.  This is the log i get:
    If you have any clue that would be great.
    thanks
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/defaultTrace.trc]/>
    <!PATTERN[defaultTrace.trc]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 20, 10485760]/>
    <!PREVIOUSFILE[defaultTrace.19.trc]/>
    <!NEXTFILE[defaultTrace.1.trc]/>
    <!LOGHEADER[END]/>
    #1.5#000BCDEF4B75001E0000000100000B4400046A834059524E#1243011859688#com.sap.di.sdic.srv.java.SDICServiceFrame##com.sap.di.sdic.srv.java.SDICServiceFrame#######SAPEngine_System_Thread[impl:5]_70##0#0#Error#1#/Applications/SDIC/Service#Java###Failed to initialize the SDIC service. An unanticipated error has occured; Error description - #1#com.sap.di.sdic.exception.DiException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"#
    #1.5#000BCDEF4B75001E0000000300000B4400046A8340596B1D#1243011859688#com.sap.engine.core.service630.container.ServiceRunner##com.sap.engine.core.service630.container.ServiceRunner#######SAPEngine_System_Thread[impl:5]_70##0#0#Error#1#/System/Server#Plain###Service tcdisdic~srv error. Nested exception is: com.sap.engine.frame.ServiceException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         at com.sap.di.sdic.srv.java.SDICServiceFrame.start(SDICServiceFrame.java:162)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Caused by: com.sap.di.sdic.exception.DiException: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         at com.sap.di.sdic.srv.java.SDICServiceFrame.start(SDICServiceFrame.java:149)
         ... 5 more
    Caused by: java.lang.Exception: StateStore Initialization requires the values to be specified for the properties"sdic.state.store.storeManager" and "sdic.nwdiservers.admin.user"
         ... 6 more
    #1.5#000BCDEF4B7500260000000000000B4400046A8340A5D8ED#1243011864701#com.sap.caf.um.metadata.imp.MetaDataTools##com.sap.caf.um.metadata.imp.MetaDataTools.MetaDataTools()#######SAPEngine_System_Thread[impl:5]_54##0#0#Info#1#/System/Server#Plain###sap.com caf/um/metadata/imp MAIN_APL70VAL_C 963656#
    #1.5#000BCDEF4B75002F0000000100000B4400046A8340D0C614#1243011867513#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.newProperties(int prcs, int conn)#######SAPEngine_System_Thread[impl:5]_35##0#0#Error#1#/System/Server#Java###enter  newProperties()##
    #1.5#000BCDEF4B75002F0000000300000B4400046A8340D702A6#1243011867919#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.init()#######SAPEngine_System_Thread[impl:5]_35##0#0#Error#1#/System/Server#Java###SNC properties not found ##
    #1.5#000BCDEF4B7500300000000000000B4400046A8340F313F1#1243011869762#com.sap.caf.um.relgroups.imp.persistence.DataSource##com.sap.caf.um.relgroups.imp.persistence.DataSource.DataSource()#######SAPEngine_System_Thread[impl:5]_4##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 963842#
    #1.5#000BCDEF4B7500380000000100000B4400046A83412AA249#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading trusted anchor configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000300000B4400046A83412AAC7B#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading credential configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000500000B4400046A83412AB51D#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading CRL configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    #1.5#000BCDEF4B7500380000000700000B4400046A83412ABDBE#1243011873402#com.adobe.service.sap.configuration##com.adobe.service.sap.configuration#######OrderedChannel for service##0#0#Error#1#/System/Security#Plain###Error while reading password configuration information:
    com.sap.security.core.server.securestorage.exception.ObjectRetrievalException: Could not find clientID servicescomadobeDocumentServicesConfigurationAdobeConfigurationService~jar
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.getClientsStorageLocation(RemoteSecureStorageClientContextImpl.java:231)
         at com.sap.security.core.server.securestorage.remote.RemoteSecureStorageClientContextImpl.retrieveObject(RemoteSecureStorageClientContextImpl.java:724)
         at com.adobe.service.sap.configuration.ConfigurationService.readXML(Unknown Source)
         at com.adobe.service.sap.configuration.ConfigurationService.<init>(Unknown Source)
         at com.adobe.service.sap.configuration.ServiceFrame.start(Unknown Source)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Jean Seguin

    Hi,
    The user SAPJSF is not lock and here is the output of the Stdserver.out
    stdout/stderr redirect
    node name   : server0
    pid         : 5800
    system name : IS1
    system nr.  : 01
    started at  : Fri May 22 14:50:38 2009
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 5756] Fri May 22 14:50:39 2009
    [Thr 5756] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Loading: LogManager ... 6420 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 440 ms.
    Loading: ThreadManager ... 76 ms.
    Loading: IpVerificationManager ... 46 ms.
    Loading: ClassLoaderManager ... 30 ms.
    Loading: ClusterManager ... 638 ms.
    Loading: LockingManager ... 227 ms.
    Loading: ConfigurationManager ... 8136 ms.
    Loading: LicensingManager ... 76 ms.
    Loading: CacheManager ... 410 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service memory started. (45 ms).
      Service cross started. (243 ms).
      Service file started. (289 ms).
      Service runtimeinfo started. (30 ms).
      Service timeout started. (106 ms).
      Service trex.service started. (106 ms).
      Service p4 started. (744 ms).
      Service classpath_resolver started. (30 ms).
      Service userstore started. (243 ms).
      Service jmx_notification started. (532 ms).
      Service log_configurator started. (24331 ms).
      Service locking started. (15 ms).
      Service http started. (759 ms).
      Service naming started. (1775 ms).
      Service appclient started. (228 ms).
      Service failover started. (213 ms).
      Service jmsconnector started. (304 ms).
      Service javamail started. (410 ms).
      Service ts started. (349 ms).
      Service licensing started. (30 ms).
      Service connector started. (380 ms).
      Service iiop started. (652 ms).
      Service webservices started. (1700 ms).
      Service deploy started. (31390 ms).
      Service configuration started. (61 ms).
      Service MigrationService started. (106 ms).
      Service bimmrdeployer started. (30 ms).
      Service dbpool started. (6041 ms).
      Service com.sap.security.core.ume.service started. (7680 ms).
      Service tcdisdic~srv started. (1776 ms).
      Service security started. (4068 ms).
      Service classload started. (228 ms).
      Service applocking started. (228 ms).
      Service shell started. (379 ms).
      Service ejb started. (547 ms).
      Service tceCATTPingservice started. (425 ms).
      Service telnet started. (501 ms).
      Service dsr started. (1062 ms).
      Service servlet_jsp started. (1791 ms).
      Service webdynpro started. (1426 ms).
      Service cafummetadata~imp started. (2095 ms).
      Service keystore started. (2474 ms).
      Service ssl started. (15 ms).
      Service cafruntimeconnectivity~impl started. (50818 ms).
      Service jmx started. (3111 ms).
      Service tcsecsecurestorage~service started. (1199 ms).
      Service tcsecwssec~service started. (835 ms).
      Service cafumrelgroups~imp started. (4099 ms).
      Service CUL started. (2550 ms).
      Service tcsecdestinations~service started. (2824 ms).
      Service apptracing started. (1351 ms).
      Service com.adobe~DataManagerService started. (3187 ms).
      Service pmi started. (1138 ms).
      Service tcsecvsi~service started. (1988 ms).
      Service sld started. (5525 ms).
      Service basicadmin started. (4568 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (1548 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (1624 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (1336 ms).
      Service adminadapter started. (364 ms).
      Service com.adobe~LicenseService started. (470 ms).
      Service monitor started. (1564 ms).
      Service com.adobe~DocumentServicesConfiguration started. (2762 ms).
      Service com.adobe~TrustManagerService started. (182 ms).
      Service com.adobe~PDFManipulation started. (4888 ms).
      Service tc.CBS.Service started. (10564 ms).
      Service com.adobe~FontManagerService started. (10049 ms).
      Service com.sap.aii.af.cpa.svc started. (9821 ms).
      Service com.sap.aii.af.security.service started. (31 ms).
      Service tc.monitoring.logviewer started. (19216 ms).
      Service com.sap.aii.af.svc started. (2808 ms).
      Service com.sap.aii.af.ms.svc started. (1366 ms).
      Service com.adobe~XMLFormService started. (6315 ms).
      Service com.sap.aii.adapter.bc.svc started. (106 ms).
      Service com.sap.aii.adapter.marketplace.svc started. (243 ms).
      Service com.sap.aii.adapter.xi.svc started. (182 ms).
      Service com.sap.aii.adapter.file.svc started. (304 ms).
      Service com.sap.aii.adapter.jdbc.svc started. (288 ms).
      Service com.sap.aii.adapter.rfc.svc started. (122 ms).
      Service jms_provider started. (22373 ms).
      Service com.sap.aii.adapter.mail.svc started. (1442 ms).
      Service com.sap.aii.adapter.jms.svc started. (895 ms).
      Service com.sap.aii.af.ispeak.svc started. (728 ms).
      Service rfcengine started. (73524 ms).
    ServiceManager started for 148445 ms.
    Framework started for 166083 ms.
    SAP J2EE Engine Version 7.00   PatchLevel is running!
    PatchLevel October 23, 2006 07:41 GMT

  • Opmn does not start all processs when server ( windows 2003 is rebooted ).

    There is a startup script which starts every process when run from cmd. But when the server is rebooted it does not start Portal, WebCache.
    The startup Script :
    @ECHO OFF
    REM ---------------------------------------------
    REM 10gAS Rel 2 Midtier startup script
    REM ---------------------------------------------
    date /t
    time /t
    REM ----------------------------------
    REM Set Oracle Home
    REm -----------------------------------
    set ORACLE_HOME=d:\Oracle\Ora10gMid
    set PATH=%ORACLE_HOME%\bin;%ORACLE_HOME%\dcm\bin;%ORACLE_HOME%\opmn\bin;%PATH%;
    REM ----------------------------------
    REM startup ProcessManager (OPMN)
    REM ----------------------------------
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startall
    call %ORACLE_HOME%\opmn\bin\opmnctl start
    call %ORACLE_HOME%\opmn\bin\opmnctl startproc ias-component=WebCache
    call %ORACLE_HOME%\opmn\bin\opmnctl startproc ias-component=OC4J
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc process-type=WebCacheAdmin
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc process-type=home
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc process-type=OC4J_BI_Forms
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc process-type=OC4J_Portal
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc process-type=HTTP_Server
    REM call %ORACLE_HOME%\opmn\bin\opmnctl startproc ias-component=Discoverer
    ======================================================
    I tried starting each process type individually and it does not start OC4J and WebCache components. This does not work only during reboot.
    Thanks in advance for our valuable suggestions
    v

    no bat file is needed for opmn to startall on service restart or system reboot. Opmn remembers the state of the services on a clean shutdown of the service & will bring it back. So just do a opmn startall, then restart the Oracle<OraHome>ProcessManager service & check using opmn status. All services should be in the same state as before the Oracle<OraHome>ProcessManager was restarted.
    where/why are you trying to use a bat file to stopall/startall? It can be done via a script, but the user that starts the bat file MUST be the same user that installed OAS/OID.

  • Node Manager not starting servicess after server reboot

    We have WLS 10.1.3.5 with IDM/OAM(two domains in same server as its TEST environment) on Oracle Linux 5(64bit),when ever server reboots node manger is not starting managed servers.
    I have enabled CrashRecoveryEnabled=true
    Here is nodemanager.properties.
    [oracle@oam nodemanager]$ cat nodemanager.properties
    #Changed NM Listen Port
    #Tue Mar 05 03:12:20 IST 2013
    DomainsFile=/u01/Oracle/Middleware/wlserver_10.3/common/nodemanager/nodemanager.domains
    LogLimit=0
    DomainsDirRemoteSharingEnabled=false
    PropertiesVersion=10.3
    AuthenticationEnabled=true
    NodeManagerHome=/u01/Oracle/Middleware/wlserver_10.3/common/nodemanager
    javaHome=/u01/Oracle/Middleware/jdk160_24
    JavaHome=/u01/Oracle/Middleware/jdk160_24/jre
    LogLevel=INFO
    DomainsFileEnabled=true
    StartScriptName=startWebLogic.sh
    ListenAddress=
    NativeVersionEnabled=true
    ListenPort=5556
    LogToStderr=true
    SecureListener=false
    LogCount=1
    StopScriptEnabled=false
    DomainRegistrationEnabled=false
    QuitEnabled=false
    LogAppend=true
    StateCheckInterval=500
    CrashRecoveryEnabled=true
    StartScriptEnabled=true
    LogFile=/u01/Oracle/Middleware/wlserver_10.3/common/nodemanager/nodemanager.log
    LogFormatter=weblogic.nodemanager.server.LogFormatter
    ListenBacklog=50
    here is my domain information in server.
    =========================
    [oracle@oam nodemanager]$ cat nodemanager.domains
    #Domains and directories created by Configuration Wizard
    #Tue Mar 05 05:24:37 IST 2013
    OAMDomain=/u01/Oracle/Middleware/user_projects/domains/OAMDomain
    IDMDomain=/u01/Oracle/Middleware/user_projects/domains/IDMDomain

    Hi,
    Entries in nodemanager.properties looks fine, but how are you testing this functionality?
    If you will stop servers monitored by nodemanager, stop nodemanager and then reboot physical server, on startup if nodemanager is configured as daemon it will start nm process but will do nothing to managed server process.
    To test "CrashRecoveryEnabled=true" kill the managed server pid and then stop/kill nodemanager process. Then perform physical server reboot, now if nm is configured as daemon process server reboot will start nodemanager. Once NM is up first thing it check is the server it was monitoring earlier and if under directory $WL_HOME/servers/<server>/data/nodemanager it finds "pid" and "lck" file it checks if that pid exists and if not then go for a restart of weblogic server instance.
    This has worked for me...!
    Thanks,
    Ranjan
    http://www.middlewaresupport.wordpress.com

  • RWD Server "could not start the autonomyIDOLServer"

    Dear All
               i have an RWD server. When i try to start services of AutonomyIDOLServer on application server. it gives error
    Could not start the AutonomyIDOLServer services on Local Computer.
    Error 2: The system cannot find the file specified
    Can somebody help me to sort out this issue that what sort of file it is trying to search the services. how can i sort out this issue.
    Thanks in advance.
    Regards
    Ravi Kant Arya
    +9540990385

    Hello Ravi Kant,
    The Uperform application contacts a search engine which searches an index to find documents. Rebuilding the index will find all new and existing documents. You can try the following to troubleshoot the search issue: ->
    1. Stop AutonomyIDOLServer and AutonomyDISH Services on the SearchServer
    2. Stop Vignette Collaboration and VignFileSystemFetch serices on the
    Application Server
    3. On the application server, open a command prompt.
    4. Navigate to <InstallDirectory>\Vignette\Collaboration.
    5. Run the command #bin\stoprmid.bat#
    6. Restart the AutonomyDISH service (this should start AutonomyIDOLServe
    r)
    7.  Open http://<searchservername>:9000/Action=GetStatus in Internet
    Explorer
    8. Confirm that the XML page displays (You may need to refresh the page
    several times)
    9. Restart the Vignette Collaboration service (this should start
    VignFileSystemFetch).
    10.  Login to the uPerform Website using an Admin account.
    11.  Click Administration->Server Administration.
    12.  Click Global Settings.
    13.  Click Administration->Services->Search Services.
    14.  Click the Recreate Search Database button.
    15.  You should begin to see results when searching in 5-10 minutes.
    Let me know how it goes.
    Regards,
    Rafa

Maybe you are looking for

  • Drop down month calendar for iCal

    One thing that annoys me when entering new iCal events is I have to always to type dd/mm/yyyy and can't use a dropdown calendar in Outlook? Ofcourse moving the events by just dragging and dropping is cool, but still there are at times I feel a drop d

  • Usage / down load dashboard

    We have a requirement from our management team to getting a MIS sort of report about 1) List of documents accessed by a user 2) List of documents downloaded by a user 3) Within in given period of time how many documents where accessed/ downloaded and

  • LabVIEW PDA customize boolean control with picture

    For a PDA application, I'm looking for a way to customize a boolean indicator. To do this I went in the customize option of the boolean and then import picture for the false and true state. in programming mode I see the correct picture for the differ

  • Embedding fonts as SWF

    Hi all, I am working on a mobile actionsxcript project and am having trouble embedding some fonts. The fonts are embedded in SWF files as only a small subset is needed and I am trying to embed the SWF files in my AS build and then access the fonts vi

  • Error generating IDOC (Transaction F110) - Segment E1IDIBA is blank

    Hi experts, I'm facing a problem here when trying to generate an IDOC through F110. I'm using PEXR2003 that needs to be sent to a German Bank. On this IDOC Type (which was never used before on this company) I need the new fields (updated from PEX2002