Hostaname changed after restart of the  application servers

Hi all,
We have an issue in our production systems and the system got
restarted , we have observed there was a change in Hostnames where
previously it was in "LOWER CASE" and after the restart all the apps
servers showing as in "UPPER CASE".
We have checked the profile parameters, hostfile in the windows all are
in lower case only.
Please suggest  from where the SAP picks the hostname entry ?
We are on 4.6c any DNS issue caused the hostname entry to be changed?
We have restarted the servers  lot of times and the issue occured this time only.
Thanks,
Subhash.G

Hi,
Only the apps servers having this issue, i have checked the profiles  and SAPLOCALHOST defined in "lowe case" only.
We have outage last weekend and failover to another cluster node 2 ,  all the names of the apps servers are showing as lower case in SM51 again.
Not sure why the hostnames are changing ..
Thanks,
Subhash.G

Similar Messages

  • How do the application servers connect the new database after failing over from primary DB to standby DB

    How do the application servers connect the new database after failing over from primary DB to standby DB?
    We have setup a DR environment with a standalone Primary server and a standalone Physical Standby server on RHEL Linux 6.4. Now our application team would like to know:
    When the primary DB server is crashed, the standy DB server will takeover the role of primary DB through the DataGuard fast failover. As the applications are connected by the primary DB IP before,currently the physical DB is used as a different IP or listener. If this is happened, they need to stop their application servers and re-configure their connection so the they coonect the new DB server, they cannot tolerate these workaround. 
    Whether does oracle have the better solution for this so that the application can automatically know the role's transition and change to the new IP without re-confige any connection and shutdown their application?
    Oracle support provides us the answer as following:
    ==================================================================
    Applications connected to a primary database can transparently failover to the new primary database upon an Oracle Data Guard role transition. Integration with Fast Application Notification (FAN) provides fast failover for integrated clients.
    After a failover, the broker publishes Fast Application Notification (FAN) events. These FAN events can be used in the following ways:
    Applications can use FAN without programmatic changes if they use one of these Oracle integrated database clients: Oracle Database JDBC, Oracle Database Oracle Call Interface (OCI), and Oracle Data Provider for .NET ( ODP.NET). These clients can be configured for Fast Connection Failover (FCF) to automatically connect to a new primary database after a failover.
    JAVA applications can use FAN programmatically by using the JDBC FAN application programming interface to subscribe to FAN events and to execute event handling actions upon the receipt of an event.
    FAN server-side callouts can be configured on the database tier.
    FAN events are published using Oracle Notification Services (ONS) and Oracle Streams Advanced Queuing (AQ).
    =======================================================================================
    Who has the experience and the related documentation or other solutions? we don't have the concept of about FAN.
    Thank very much in advance.

    Hi mesbeg,
    Thanks alot.
    For example, there is an application JBOSS server connecting the DB, we just added another datasource and put the standby IP into the configuration file except adding a service on DB side like this following:
            <subsystem xmlns="urn:jboss:domain:datasources:1.0">
            <datasources>
                    <datasource jta="false" jndi-name="java:/jdbc/idserverDatasource" pool-name="IDServerDataSource" enabled="true" use-java-context="true">
                        <connection-url>jdbc:oracle:thin:@<primay DB IP>:1521:testdb</connection-url>
                        <connection-url>jdbc:oracle:thin:@<standby DB IP>:1521:testdb</connection-url>
                        <driver>oracle</driver>
                        <pool>
                            <min-pool-size>2</min-pool-size>
                            <max-pool-size>10</max-pool-size>
                            <prefill>true</prefill>
                        </pool>
                        <security>
                            <user-name>TEST_USER</user-name>
                            <password>Password1</password>
                        </security>
                        <validation>
                            <valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.oracle.OracleValidConnectionChecker"/>
                            <validate-on-match>false</validate-on-match>
                            <background-validation>false</background-validation>
                            <use-fast-fail>false</use-fast-fail>
                            <stale-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.oracle.OracleStaleConnectionChecker"/>
                            <exception-sorter class-name="org.jboss.jca.adapters.jdbc.extensions.oracle.OracleExceptionSorter"/>
                        </validation>
                    </datasource>
                    <drivers>
                        <driver name="oracle" module="com.oracle.jdbc">
                            <xa-datasource-class>oracle.jdbc.OracleDriver</xa-datasource-class>
                        </driver>
                    </drivers>
                </datasources>
            </subsystem>
    If the failover is occurred, the JBOSS will automatically be pointed to the standby DB. Additional actions are not needed.

  • I have a Mac Pro using OSX 10.7.4.  When using apple mail I click on the address icon to obtain email address and nothing happens.  I've restarted both the application and the Mac but still won't open address book.  Any ideas please.

    I have a Mac Pro using OSX 10.7.4.  When using apple mail I click on the address icon to obtain email address and nothing happens.  I've restarted both the application and the Mac but still won't open address book.  Any ideas please.

    Assuming you have these accounts set up in Mail, open preferences and under Accounts tab, edit the SMTP outgoing server list. Do you have a .mac address in the list? If so, delete it.
    Are you using iCloud?
    For the troubled account, select the correct SMTP server for that account in the box and check the box to use only that server with that account.

  • Prompt user to save change before abnormally closing the application

    Hi,
    I've some trouble prompting user to save change before abnormally closing the application (logging off, shutdownding machine...). I tried to use Runtime.getRuntime().addShutdownHook() and it doesn't seem to work. Here's part of my code. Help please!!!
    program print out "1" and stays in a "dead-lock" mode...
    private void shutdown() {
    boolean saveConfig = true;
    if (saveConfig) {
    System.out.println("1 ");
    int answer = JOptionPane.showConfirmDialog(null,
    "Configuration has been changed. Do you want to save
    configuration before exit?",
    "Save Config"
    JOptionPane.
    YES_NO_CANCEL_OPTION);
    JOptionPane.showMessageDialog(this, "Can't connect to unit. Error in Heal unit!", "Error", JOptionPane.INFORMATION_MESSAGE);
    System.out.println("2 ");
    if (answer == 0) {
    savefileButton_actionPerformed();
    jMenuFileExit_actionPerformed();
    else if (answer == 1) {
    jMenuFileExit_actionPerformed();
    else {
    return;
    else {
    int answer = JOptionPane.showConfirmDialog(itself,
    "Are you sure you want to exit? ",
    "Exit",
    JOptionPane.YES_NO_OPTION);
    if (answer == 0) {
    jMenuFileExit_actionPerformed();
    else {
    return;
    private class MyShutdownHook extends Thread {
    public void run() {
    shutdown();
    // add shutdown hook
    MyShutdownHook shutdownHook = new MyShutdownHook();
    Runtime.getRuntime().addShutdownHook(shutdownHook);

    doesn't much matter. shutdown hooks are not guaranteed to run or be able to finish.

  • AWR snapsohots not generating after restart of the instance

    oracle : 10.2.0.3
    OS : Linux 64-bit
    Issue : AWR snapshots are being generated after restart of the instance.
    I restarted the instance at 31.01.2010 8 AM CST.
    SQL> select STARTUP_TIME from  v$instance;
    STARTUP_T
    31-JAN-10
    SQL> select max(begin_interval_time)   from DBA_HIST_SNAPSHOT
      2  /
    MAX(BEGIN_INTERVAL_TIME)
    31-JAN-10 08.00.04.996 AMto my surprise the AWR reports are not being generated from 8 AM till now 8PM.
    What could be the reason ? Do I need to do any thing manual initiation ?
    Edited by: [email protected] on Feb 1, 2010 8:41 AM

    SELECT STARTUP_TIME     FROM DBA_HIST_SNAPSHOT WHERE STARTUP_TIME > TRUNC(SYSDATE);
    post results from SQL above

  • Acrobat 8 Professional crashes 10 seconds after you start the application xp

    Acrobat 8 Professional crashes 10 seconds after you start the application. I have adobe acrobat 8.1 running on a dell vostro 1400 vista.

    Are you sure it's crashed and not 'temporarily-frozen'?
    I'm having this issue with Acrobat 9, in which it launches and runs long enough to page down two times and then stops responding for about 30 seconds.

  • CS6 now not supported after i updated the applications.

    CS6 is now not working after i updated the applications. They were working minutes before i decided to update.  i keep getting this pop up when im trying to open one of the applications
    is there anyone that could help me resolve this problem?

    Run the Creative Cloud Cleaner Tool, reinstall from scratch.
    Mylenium

  • FTP adapter deployment failed after restart of the server

    Hi,
    I have a single node 11g server. I had created some outbound connection pools for the ftp adapter. When I created them they were working fine.
    But after the restart of the server the FTP Adapter state in the summary of deployment page is showing failed. The error I am getting is below
    <Unable to set the activation state to true for the application 'FtpAdapter'.
    java.lang.NoClassDefFoundError: oracle/tip/adapter/file/FileLogger
         at oracle.tip.adapter.ftp.FTPManagedConnectionFactory.createConnectionFactory(FTPManagedConnectionFactory.java:154)
         at weblogic.connector.security.layer.AdapterLayer.createConnectionFactory(AdapterLayer.java:787)
         at weblogic.connector.outbound.ConnectionPool.getConnectionFactory(ConnectionPool.java:2013)
         at weblogic.connector.outbound.RAOutboundManager.activatePool(RAOutboundManager.java:1076)
         at weblogic.connector.outbound.RAOutboundManager.activate(RAOutboundManager.java:183)
         at weblogic.connector.common.RAInstanceManager.activate(RAInstanceManager.java:437)
         at weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.java:303)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:227)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:541)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:175)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:167)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    ####<Apr 6, 2011 4:02:24 PM IST> <Error> <Deployer> <inhysu01> <osb_server1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000IweNRSu8TsO8mjGNtn1Db43e000001> <1302085944811> <BEA-149250> <Unable to unprepare application 'FtpAdapter'.
    weblogic.application.ModuleException: Error occurred while trying to rollback the module: weblogic.connector.exception.RAException:
    There are 1 nested errors:
    There are 1 nested errors:
    ObjectLifeCycleException: weblogic.common.resourcepool.ObjectLifeCycleException: Attempted to shutdown the pool eis/Ftp/FtpAdapter when it is currently not in SUSPENDED state (Running)
         at weblogic.common.resourcepool.ResourcePoolImpl.shutdown(ResourcePoolImpl.java:299)
         at weblogic.connector.outbound.ConnectionPool.shutdown(ConnectionPool.java:355)
         at weblogic.connector.outbound.RAOutboundManager.internalShutdownPool(RAOutboundManager.java:346)
         at weblogic.connector.outbound.RAOutboundManager.rollback(RAOutboundManager.java:305)
         at weblogic.connector.common.RAInstanceManager.rollbackRAOutboundMgr(RAInstanceManager.java:623)
         at weblogic.connector.common.RAInstanceManager.rollback(RAInstanceManager.java:566)
         at weblogic.connector.deploy.ConnectorModule.unprepare(ConnectorModule.java:268)
         at weblogic.application.internal.flow.ModuleListenerInvoker.unprepare(ModuleListenerInvoker.java:285)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.previous(DeploymentCallbackFlow.java:523)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.unprepare(DeploymentCallbackFlow.java:211)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.unprepare(DeploymentCallbackFlow.java:202)
         at weblogic.application.internal.BaseDeployment$1.previous(BaseDeployment.java:619)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:223)
         at weblogic.application.utils.StateMachineDriver.previousState(StateMachineDriver.java:215)
         at weblogic.application.internal.BaseDeployment.unprepare(BaseDeployment.java:248)
         at weblogic.application.internal.SingleModuleDeployment.unprepare(SingleModuleDeployment.java:43)
         at weblogic.application.internal.DeploymentStateChecker.unprepare(DeploymentStateChecker.java:205)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.unprepare(AppContainerInvoker.java:117)
         at weblogic.deploy.internal.targetserver.BasicDeployment.unprepare(BasicDeployment.java:287)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:363)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Can anyone please help me with this.
    Thanks in advance

    The solution is either change the order of deployment or copy the FileAdapter.rar file in $ORACLE_HOME/lib location and restart the server as mentioned here.
    http://soa-bpel-esb.blogspot.com/2011/04/javalangnoclassdeffounderror.html

  • Window size always changes after restart in 10.9.2. How can I fix it- as in older OS-Versions?

    Hi,
    I'm using OSX for a long time. Now I bought a new MBA 10' with Mavericks 10.9.2. I'm really tired about ever changing window sizes after restarting my MBA, espacialy the sidebar is skipping to a wider size, then the window, I used before turning the mac of. No window opens, in exact that size I used before. Of course, I used to fix it, but never menaged to do so.
    Have you any idea to solve my problem?

    Do you uncheck the "Reopen windows when logging back in?" box? If so, does the issue occur when you leave the box checked?
    That might be the culprit.
    I hope I solved your question.
    Austin

  • Problem related to the start of the application servers

    Hello,
    I have a WebLogic 12c domain composed of an administration server, an soa/bpm managed server and an OSB managed server. They aren't clustered. In order to start the servers I'm using Node Manager. So, I thought to start the admin server and, after that, to start the two managed servers via the admin console. But the administration server doesn't start properly as it raises the following exception:
    [2015-01-22T11:47:26.892+01:00] [AdminServer] [WARNING] [WSM-02141] [oracle.wsm.resources.policymanager] [tid: [STANDBY].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 156d9db7-12ff-4bb1-b281-b853d957d118-00000004,0] [APP: Service Bus Kernel] Impossible de se connecter au service d'accès aux stratégies.[[
    oracle.wsm.policymanager.PolicyManagerException: WSM-02141 : Impossible de se connecter au service daccès aux stratégies.
    at oracle.wsm.policymanager.BeanFactory.getInitialContext(BeanFactory.java:810)
    at oracle.wsm.policymanager.BeanFactory.getJndiObj(BeanFactory.java:844)
    at oracle.wsm.policymanager.BeanFactory.lookupJndiObj(BeanFactory.java:1175)
    at oracle.wsm.policymanager.BeanFactory.getUsageTrackerBeanEJB(BeanFactory.java:1019)
    at oracle.wsm.policymanager.BeanFactory.getBeanEJB(BeanFactory.java:544)
    at oracle.wsm.policymanager.BeanFactory.getBean(BeanFactory.java:451)
    at oracle.wsm.config.ConfigurationManager$2.run(ConfigurationManager.java:1589)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.wsm.config.ConfigurationManager.getBean(ConfigurationManager.java:1585)
    at oracle.wsm.config.ConfigurationManager.access$1400(ConfigurationManager.java:169)
    at oracle.wsm.config.ConfigurationManager$ContextualAccessor.configureBean(ConfigurationManager.java:600)
    at oracle.wsm.config.ConfigurationManager$ContextualAccessor.configure(ConfigurationManager.java:541)
    at oracle.wsm.config.ConfigurationManager$ContextualAccessor.<init>(ConfigurationManager.java:487)
    at oracle.wsm.config.ConfigurationManager$ContextualAccessor.<init>(ConfigurationManager.java:375)
    at oracle.wsm.config.ConfigurationManager.initializeAccessors(ConfigurationManager.java:1902)
    at oracle.wsm.config.ConfigurationManager.reset(ConfigurationManager.java:2251)
    at oracle.wsm.config.ConfigurationManager.getRepositoryAccessor(ConfigurationManager.java:1803)
    at oracle.wsm.policyaccess.PolicyAccessPoint$1.run(PolicyAccessPoint.java:333)
    at oracle.wsm.policyaccess.PolicyAccessPoint$1.run(PolicyAccessPoint.java:330)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.wsm.policyaccess.PolicyAccessPoint.getInstance(PolicyAccessPoint.java:329)
    at oracle.wsm.policyaccess.PolicyAccessPoint.getInstance(PolicyAccessPoint.java:271)
    at com.bea.wli.sb.security.wss.wsm.WsmPAPHelper.getPAP(WsmPAPHelper.java:34)
    at com.bea.wli.sb.security.wss.wsm.OWSMServicesListener.loadCommitted(OWSMServicesListener.java:236)
    at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadCommittedInContext(ResourceListenerNotifier.java:179)
    at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadNotifications(ResourceListenerNotifier.java:164)
    at com.bea.wli.config.impl.ResourceListenerNotifier.sendLoadNotifications(ResourceListenerNotifier.java:135)
    at com.bea.wli.config.impl.ConfigServiceImpl.startListeners(ConfigServiceImpl.java:531)
    at com.bea.wli.sb.init.AppListener.__postStart(AppListener.java:350)
    at com.bea.wli.sb.init.AppListener.access$100(AppListener.java:94)
    at com.bea.wli.sb.init.AppListener$3.run(AppListener.java:310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.security.Security.runAs(Security.java:61)
    at com.bea.wli.sb.util.security.SecurityUtils.executeAs(SecurityUtils.java:70)
    at com.bea.wli.sb.init.AppListener.postStart(AppListener.java:307)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PostStartAction.run(BaseLifecycleFlow.java:309)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.application.utils.SecurityUtils$WLSSecurityProvider.invokePrivilegedAction(SecurityUtils.java:177)
    at weblogic.application.utils.SecurityUtils.invokePrivilegedAction(SecurityUtils.java:80)
    at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:200)
    at weblogic.application.internal.flow.BaseLifecycleFlow.postStart(BaseLifecycleFlow.java:67)
    at weblogic.application.internal.flow.TailLifecycleFlow.activate(TailLifecycleFlow.java:26)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:729)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:42)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:258)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:61)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:165)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:226)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:418)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:210)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:118)
    at weblogic.server.AbstractServerService.postConstruct(AbstractServerService.java:78)
    at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.glassfish.hk2.utilities.reflection.ReflectionHelper.invoke(ReflectionHelper.java:1017)
    at org.jvnet.hk2.internal.ClazzCreator.postConstructMe(ClazzCreator.java:388)
    at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:430)
    at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
    at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
    at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
    at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
    at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
    at org.jvnet.hk2.internal.ServiceLocatorImpl.getService(ServiceLocatorImpl.java:606)
    at org.jvnet.hk2.internal.ThreeThirtyResolver.resolve(ThreeThirtyResolver.java:77)
    at org.jvnet.hk2.internal.ClazzCreator.resolve(ClazzCreator.java:231)
    at org.jvnet.hk2.internal.ClazzCreator.resolveAllDependencies(ClazzCreator.java:254)
    at org.jvnet.hk2.internal.ClazzCreator.create(ClazzCreator.java:413)
    at org.jvnet.hk2.internal.SystemDescriptor.create(SystemDescriptor.java:456)
    at org.glassfish.hk2.runlevel.internal.AsyncRunLevelContext.findOrCreate(AsyncRunLevelContext.java:225)
    at org.glassfish.hk2.runlevel.RunLevelContext.findOrCreate(RunLevelContext.java:82)
    at org.jvnet.hk2.internal.Utilities.createService(Utilities.java:2488)
    at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:98)
    at org.jvnet.hk2.internal.ServiceHandleImpl.getService(ServiceHandleImpl.java:87)
    at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.oneJob(CurrentTaskFuture.java:1162)
    at org.glassfish.hk2.runlevel.internal.CurrentTaskFuture$QueueRunner.run(CurrentTaskFuture.java:1147)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:548)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    Caused by: javax.naming.CommunicationException: t3://localhost:7003,localhost:7004: Destination 127.0.0.1, 7003 unreachable; nested exception is:
    java.net.ConnectException: Connection refused: no further information; No available router to destination [Root exception is java.net.ConnectException: t3://localhost:7003,localhost:7004: Destination 127.0.0.1, 7003 unreachable; nested exception is:
    java.net.ConnectException: Connection refused: no further information; No available router to destination]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:808)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:365)
    at weblogic.jndi.Environment.getContext(Environment.java:319)
    at weblogic.jndi.Environment.getContext(Environment.java:288)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:684)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:307)
    at javax.naming.InitialContext.init(InitialContext.java:242)
    at javax.naming.InitialContext.<init>(InitialContext.java:216)
    at oracle.wsm.policymanager.BeanFactory.getInitialContext(BeanFactory.java:801)
    ... 87 more
    So, it seems that the admin server is trying to connect to the soabpm and the osb managed servers. Then, I'm starting first the managed servers which, in my opinion, it doesn't make much sense as, even if the managed servers may start without the admin server running, this is only exceptional. Starting the managed servers first, they will try to connect to the admin server, which is normal, as they need to get the configuration. And since there is no admin server running, they will wait until the timeout expires, meaning that the managed server take several minutes (even 10 minutes) to start.
    So, my question is: how is one supposed to start the servers in this case ?
    Many thanks in advance.
    Nicolas

    Have a look at the following Note :
    Warning "Unable to connect to the policy access service" During Admin Server Startup. (Doc ID 1948727.1)
    CAUSE
    The Admin Server is trying to reach wsm-pm during startup. As wsm-pm is targeted only to Managed Servers which have not been started yet, this must fail.
    The connection to wsm-pm will be retried, and will be established once wsm-pm is available in the domain.
    SOLUTION
    Start up at least one Managed Server to which wsm-pm is targeted. This Managed Server can be started up after the Admin Server is RUNNING.
    Once at least one Managed Server to which wsm-pm is targeted is up, verify that OWSM related functionality is available.
    1.) After starting up at least one such managed server, verify that no additional such OWSM related warnings
    are logged into the Admin Server log.
    2.) If you have Fusion Middleware Control in your domain, try the following after starting up at least one such managed server:
    https://docs.oracle.com/middleware/1213/owsm/security/manage-owsm-policies.htm#OWSMS5557https://docs.oracle.com/middleware/1213/owsm/security/manage-owsm-policies.htm#OWSMS5557
    3) In the Target Navigation pane, expand WebLogic Domain and select the domain for which you want to see the policies.
    4.) From the WebLogic Domain menu, select Web Services, then WSM Policies.
    5.) Do you get a list of policies there?
    If yes, then the setup should be working.
    If after starting up at least one Managed Server to which wsm-pm is targeted you still get "Unable to connect to the policy access service" and "No available router to destination" in the Admin Server logs, see DOCUMENT: 1569900.1

  • Input sources change after restart

    Hello!
    I changed my hard disk, and after reinstalling the system, I noticed that after restart the input source changes to US layout, when my and computer is set to Spanish ISO. I cloned my disk using SuperDuper! and everything went fine.
    What can I do so the computer starts already in Spanish ISO, not US keyboard layout?
    It is an iMac Late 2009, with Fusion Drive and 12 GB memory running Mavericks 10.9.5

    I don't know how to fix it, but it's not just you. I've been seeing it for a couple weeks on a fresh install of Yosemite from a wiped SSD.
    A little extra info, from my situation: when I installed Yosemite I incorrectly selected "US Extended" as the input source to use. Once installed I corrected it to the regular US keyboard, and added my usual Japanese input source. When I restart, both of those disappear and it reverts to US Extended.
    So it's apparently storing the input source used during OS installation somewhere, and hauling that out when I restart. Why and where would it do that, I wonder?
    Remember to give Apple feedback so they they can add you to their count of people that it's affecting!
    https://www.apple.com/feedback/macosx.html

  • Change Start-Page for the Application

    Hallo,
    how can I change the Start-Page for the Application ?
    Thanks
    I. Schult transcoject Neumünster

    Another action you can take is to change the page ID in the p_flow_page argument to the wwv_flow_custom_auth_std.login call in the login process on the login page (if you have one), e.g., change P_FLOW_PAGE => :APP_ID||':1' to FLOWPAGE => :APP_ID||':99' to change the 'after login' page from 1 to 99. This will be the page (in the current application) redirected to after authentication, absent a deep link.
    The home link application attribute has limited use, e.g., for determining which page to show when you use the Run Application icon in the builder.
    Scott

  • The paste feature in Safari tells me Mozilla Firefox settings won't allow it even after I deleted the application. How can I fix this?

    I have been using Safari on my iMac although I had Firefox installed. I tried using a paste function and the error message said that Mozilla Firefox is prohibiting this. I tried to follow the guide to fix that in Firefox and couldn't even find the application folder it talked about. So I tried to uninstall the application, following the instructions given (move it to the trash). I restarted Safari but got exactly the same results.
    How can I get rid of the impact Firefox has had on Safari?

    See this forum thread about "Version 15 no longer allows copy to clipboard":
    *[[/questions/936323]]

  • Changing my volume causes the application to minimize!!! How i can solve this???

    Dear Friends,
    I purchased a HP Pavilion dv6-2180us and I'm having this problem. Whenever I'm gaming or watching a movie on full screen and try to change the volume (my volume is touch sensitive) sliding to increase or decrease the sound, the application minimize and the screen display of the volume pops up. How can i change the setting of the display to don't minimize the programs??
    Thanks for the help.
    Igor Brant

    That is a function of MediaSmart Menu coming into action...The Volume On-screen display part of MediaSmart Menu...If you are ok with not happening Volume On-Screen Display, you can uncheck if from Startup...
    Although I am an HP employee, I am speaking for myself and not for HP.
    Make it easier for other people to find solutions, by marking my answer with 'Accept as Solution', if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"

  • When I select 'Print as an Image' from Print-Advanced, it hold the setting after I exit the application. Is there a way to reset this in Adobe Reader XI?

    Adobe Reader 11.0.09

    This is not the case with Acrobat Professional so it should behave the same way on Reader as a setting like this should be held as long as the application is open, not permanently as it's a workaround when you have issues printing the PDF normally.  In a business with thousands of different PDF's and thousands of users, sometimes you have to use 'Print as an Image' but it's a workaround for a very small number of PDF's and it's hard to get users to remember to uncheck it the next time they go use Reader.  I would say this behavior should be changed but not sure how I can let someone at Adobe know as the forums is the only contact location I can find for the Reader product online.

Maybe you are looking for