Can not start DAC server

Hi ,
I am getting following error while trying to start the DAC server .
May 3, 2011 11:10:19 PM com.siebel.etl.bootup.DAWUtils checkPermission
SEVERE: Checking the localhost with the values defined in the DAC repository!
May 3, 2011 11:10:19 PM com.siebel.etl.bootup.DAWUtils checkPermission
INFO: Adding server name : SDCHS20N496.CORP.SIEBEL.COM
May 3, 2011 11:10:19 PM com.siebel.etl.bootup.DAWUtils checkPermission
INFO: Adding alternate server name : localhost
May 3, 2011 11:10:19 PM com.siebel.etl.bootup.DAWUtils checkPermission
SEVERE: Unknown host SDCHS20N496.CORP.SIEBEL.COM. Error message: SDCHS20N496.CORP.SIEBEL.COM
May 3, 2011 11:10:19 PM com.siebel.etl.net.QServer bind
INFO: Bound to port 3141
1 SEVERE Tue May 03 23:10:19 IST 2011 Checking the localhost with the values defined in the DAC repository!
2 INFO Tue May 03 23:10:19 IST 2011 Adding server name : SDCHS20N496.CORP.SIEBEL.COM
3 INFO Tue May 03 23:10:19 IST 2011 Adding alternate server name : localhost
4 SEVERE Tue May 03 23:10:19 IST 2011 Unknown host SDCHS20N496.CORP.SIEBEL.COM. Error message: SDCHS20N496.CORP.SIEBEL.COM
5 INFO Tue May 03 23:10:19 IST 2011 Bound to port 3141
Any help is greatly appreciated , my source system is oracle EBS ( R12.1.1) .
I am not sure about SDCHS20N496.CORP.SIEBEL.COM .
Please suggest a solution .
-Anushri

Hi All,
I am having similar issues. when i start DAC server on windows it get a bunch of echo statement and nothing else. when i try to shut it down it gives me errors about unrecognized host etc. So i have gone into the das.properties tab and made changes and it still did not help.
any ideas?
also do you have to provide a name for the Das Repositoty in the das.properties tab?
Thanks for your help!
Biadmin

Similar Messages

  • Can not start Messaging server in Sun Java System Messaging Server 6 2005Q1

    Hi all,
    I installed Sun Java System Messaging Server 6 2005Q1 from Solaris 10 DVD on Solaris 10.
    After the installation, I got directory server, admin server running but messaging server not running. I can not start Messaging server (start smtp, http, pop, imap). I found in directory which I installed messaging server but I could not see script "start-msg" and "stop-msg".
    # pwd
    /opt/SUNWmsgsr/sbin
    # ls
    MoveUser ha_ip_config imquotacheck imsdirmig mkbackupdir
    UpgradeMsg5toMsg6.pl hashdir imsbackup imsexport readership
    configure imexpire imsconnutil imsimport reconstruct
    control-params.txt iminitquota imscripter imsrestore relinker
    deliver immonitor-access imsdaaci mboxutil useconfig
    Any idea what might have gone wrong?
    Thanks.

    Thanks.
    I have a problem when I configure the Messaging Server (by running the /opt/SUNWmsgsr/sbin/configure script):
    Hostname mailtest for this machine is not a fully qualified domain name. Please
    correct this before attempting to configure Messaging Server. Please make sure
    that your DNS is working properly.
    <Press ENTER to continue> {"<" goes back, "!" exits}
    Can you help me fix this problem?
    Thanks.

  • Can not start mysql server

    I recently installed mysql server on my mac os 10.6.8, earlier i had installed XAMPP on my machine but i have uninstalled it(deleted it & ran few commands in terminal), but now when i try to start server from preference pane it doesn't start & not from terminal also, it show " Could not startup MySql sever, Reason: error 255 OR Internal error"
      It seems that the new mysql server settings clash somewhere with old XAMPP files/preferences. I don't even know if XAMPP is completely uninstalled or not
      I'm not a mysql geek, i'm new to this! So, friends please help me with this, i need to get it working on my mac!!

    I appreciate your help.
    I have been offline for a long time since I had a business trip two week ago.
    I can not start the apache http server, so it isn't on running status within NT services manager.
    In fact, there is someting wrong---fail to create FastCGI when startup. Oracle system message tells me that syntax error exists on line 92 of isqlplus.conf but I don't know how to correct it.
    Henry

  • Can not start http server

    start http server powered by apache.I got such message:
    '[alert]<5>...:FastCGI:CreateMUtex()failed
    Syntax error on line 92 of c:/oracle/ora92/sqlplus/admin/isqlplus.conf:
    Failed to create FastCGI application accept mutex'
    my isqlplus.conf:
    # Copyright (c) 2001, 2002, Oracle Corporation. All rights reserved.
    # NAME
    # isqlplus.conf
    # PURPOSE
    # Oracle HTTP Server directives for the iSQL*Plus server
    # USAGE
    # This file should be included in the Oracle HTTP Server
    # "oracle_apache.conf" file.
    # Enable handling of all virtual paths beginning with "/iplus/"
    # Note: only /iplus/ is mapped, /iplus is not being mapped
    <IfModule mod_alias.c>
    Alias /iplus/ "C:\oracle\ora92\sqlplus\admin\iplus/"
    # Disallow users from trying to access /iplus/ directory listing
    <Directory "C:\oracle\ora92\sqlplus\admin\iplus">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Maps all virtual paths beginning with "/isqlplus*" to the iSQL*Plus
    # FastCGI application
    <IfModule mod_alias.c>
    ScriptAliasMatch ^/isqlplus(.*) C:\oracle\ora92\bin\isqlplus
    ScriptAliasMatch ^/isqlplusdba(.*) C:\oracle\ora92\bin\isqlplus
    <Directory "C:\oracle\ora92\bin">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Enable handling of all virtual paths beginning with "/isqlplus"
    <Location /isqlplus>
    SetHandler fastcgi-script
    Order deny,allow
    # Comment "Allow ..." and uncomment the four lines "AuthType ..."
    # to "Require ..." if Oracle HTTP authentication access is required
    # for the http://.../isqlplus URL
    Allow from all
    #AuthType Basic
    #AuthName 'iSQL*Plus'
    #AuthUserFile C:\oracle\ora92\sqlplus\admin\iplus.pw
    #Require valid-user
    </Location>
    # Enable handling of all virtual paths beginning with "/isqlplusdba".
    # Note: Oracle HTTP authentication access must be configured to
    # prevent unauthorized users performing DBA operations on
    # the database
    # Use the HTTP server utility script "htpasswd" to add users to the
    # "iplusdba.pw" file.
    <Location /isqlplusdba>
    SetHandler fastcgi-script
    Order deny,allow
    AuthType Basic
    AuthName 'iSQL*Plus DBA'
    AuthUserFile C:\oracle\ora92\sqlplus\admin\iplusdba.pw
    Require valid-user
    </Location>
    # Setup the iSQL*Plus FastCGI application.
    <IfModule mod_fastcgi.c>
    FastCgiServer C:\oracle\ora92\bin\isqlplus -port 8228 -initial-env iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
    </IfModule>

    I appreciate your help.
    I have been offline for a long time since I had a business trip two week ago.
    I can not start the apache http server, so it isn't on running status within NT services manager.
    In fact, there is someting wrong---fail to create FastCGI when startup. Oracle system message tells me that syntax error exists on line 92 of isqlplus.conf but I don't know how to correct it.
    Henry

  • Urgent: Can not start admin server

    I installed Sun One directory server 5.1 on Solaris 8 01/01 version patched with Solaris 8 patch cluster.
    In installation, there is error message
    Can't start Admin server [home/iplanet/servers/start-admin > /var/tmp/aaax0aOBb 2>&1] (error: No such file or directory)
    idskture only shows one ERROR message:
    ERROR : Patch 111085-02 (SunOS 5.8: /usr/bin/login patch) is required but not installed.
    But it seems fine since I reinstalled Solaris 8 01/01 release and install 5.1sp2 and with the same error message running idsktune, the installation of 5.1 but works fine.
    Do you have any idea why the installation fail before I reinstlall Solaris 8?
    Thanks,
    Iris

    Have you checked the EAS logs, <MIDDLEWARE_HOME>user_projects\epmsystem1\diagnostics\logs\services
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • I can not start management server

    Dear Oracle collegues,
    why I can not start service OracleHomeNameManagementServer?
    message is something about conntacting sys admin (I have german version of Win 2000, and english version of Oracle 8i Enterprise Edition), probably some lack of rights (I am ORA DBA on local system).
    Please help!

    I think, sys admin means a superuser for the Enterprise manager.
    Try sysadm/oem_temp

  • Can not start BI server automatically or manually

    The BI server can not get started either way most of the time, but sometimes it can start. I've reinstalled the server and the same problem still happens. The error I got is:
    Cannot start the Oracle BI Service on local machine
    Error 1053: The service did not respond to the start or control reqest in a timely fasion.
    The NQserver log display some error messages, but I've test my database connections at administrative tools-> data source. They all can connect.
    Thanks,
    Katelyn
    [47038] Warning: The total number of server connections to backend data sources is currently 814 and exceeds the recommended limit of 800.
    2007-12-10 09:42:12
    [nQSError: 43059] Init block 'Current Balance Date Key - AP': Dynamic refresh of repository scope variables has failed.
    [nQSError: 16001] ODBC error state: IM002 code: 0 message: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
    2007-12-10 09:42:12
    [nQSError: 43059] Init block 'Current Balance Date Key - GL': Dynamic refresh of repository scope variables has failed.
    [nQSError: 16001] ODBC error state: IM002 code: 0 message: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
    2007-12-10 09:42:12
    [nQSError: 43059] Init block 'Current Balance Date Key - AR': Dynamic refresh of repository scope variables has failed.
    [nQSError: 16001] ODBC error state: IM002 code: 0 message: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.
    [nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified
    at OCI call OCILogon.
    [nQSError: 17014] Could not connect to Oracle database.

    Check out your NQSCONFIQ.INI (located in OracleBI\sever\config).
    Make sure in that repository section have you given your Repository in correct synatx. (star = Reponame.rpd, DEFAULT;)
    In the Cache section edit ENABLE = NO;

  • Can not start Weblogic server after Reordering the provider

    Dear Geeks
    I have ran into big trouble. I defined a new authentication provider in the weblogic and set the Control Flag to 'Required'.
    I didn't realise that the user weblogic doesn't exist in the AD and because of AD's naming convention, we can not create a user named as weblogic.
    Since, the installation was done using the weblogic user and the authentication provider has been changed, is there a way to start the server back up.
    It is too critical and i am running out of time.
    I would appreciate if anyone out there could help.
    Thanks
    Regards
    ACM

    Hi,
    Goto Domain_home/config directory. Take one backup of config.xml, edit config.xml make Control Flag to SUFFICIENT against authentication provider that you have added. try to restart the server.
    please mark if this helps.
    Regards,
    Kishore

  • Can not start web server after power outage

    Hi All,
    I have a Cisco NSS322 running firmware v1.0.0. I have Web server with MySQL, file sharing on the box. after a power outage this morning, I could not access the web server anymore. I can access filesharing and web GUI management interface (port 8080). I login to the box via ssh, and do netstat -na, and found that the box does not listen on port 80.
    From Web GUI, I tick/untick the "Enable Web Server" number of time but can not turn on the services. The logs say re-lauch apache sucessfully.
    Could someone help please?
    thanks
    Tao Lao

    Also you're running on the engineering build of firmware. You might need to upgrade to latest versions.
    Jasbryan

  • Can not start Weblogic Server Admin

    Hi,
    I am new to Weblogic and trying to install v12.1.1 on Windows 7 64 bit. The installation "seems" to have gone fine, however I cannot see User Projects under “start” =>”all programs” => “Oracle Weblogic” => “user projects” => “base_domaine” => “start admin server for Weblogic server”
    I have tried to run the startWebLogic.cmd from the install directory, but I get the below error and nothing starts.
    Enter username to boot WebLogic server:admin
    <07-Oct-2013 12:12:40 o'clock BST> <Error> <Security> <BEA-090782> <Server is Running in Production Mode and Native Library(terminalio) to read the pa
    ssword securely from commandline is not found.>
    <07-Oct-2013 12:12:40 o'clock BST> <Notice> <WebLogicServer> <BEA-000388> <JVM called the WebLogic Server shutdown hook. The server will force shutdow
    n now.>
    <07-Oct-2013 12:12:40 o'clock BST> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by <WLS Kernel>.>
    <07-Oct-2013 12:12:40 o'clock BST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>
    C:\app\vicente\product\11.2.0\Middleware\user_projects\domains\base_domain>
    Could you please advise what the issue may be?
    I have my Java home in the PATH variables and the machine is also running my Orcale Database 11.2.0.3
    Thanks

    Hello, pay attention to: "to read the password securely from commandline is not found"
    when you execute startWebLogic.cmd the terminal request you a password. You didn't type the password.
    Solution:
    Execute startWebLogic.cmd
    Type the password.

  • Can not start messaging server resource group in cluster 3.2

    Hi all,
    Please help in the following issue.
    I am not able to start resource group (msg-rg) and following is the error:
    ms1@root# clrg online -M -e msg-rg
    clrg: (C748634) Resource group msg-rg failed to start on chosen node and might fail over to other node(s)
    clrg: (C135343) No primary node could be found for resource group msg-rg; it remains offline
    scstat output (remove some for brief description)
    -- Device Group Servers --
    Device Group Primary Secondary
    Device group servers: SJMS ms1 ms2
    -- Device Group Status --
    Device Group Status
    Device group status: SJMS Online
    -- Resource Groups and Resources --
    Group Name Resources
    Resources: msg-rg mail msg-hasp-rs msg-rs
    -- Resources --
    Resource Name Node Name State Status Message
    Resource: mail ms1 Offline Offline - LogicalHostname offline.
    Resource: mail ms2 Offline Offline - LogicalHostname offline.
    Resource: msg-hasp-rs ms1 Offline Offline
    Resource: msg-hasp-rs ms2 Offline Offline
    Resource: msg-rs ms1 Offline Offline - Stop Succeeded
    Resource: msg-rs ms2 Offline Offline - Stop Succeeded
    Following is the from /var/adm/messages (remove some for brief description)
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 224900 daemon.notice] launching method <ims_svc_start> for resource <msg-rs>, resou
    rce group <msg-rg>, node <ms1>, timeout <300> seconds
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 784560 daemon.notice] resource msg-rs status on node ms1 change to R_FM_UNKNOWN
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 922363 daemon.notice] resource msg-rs status msg on node ms1 change to <Starting>
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 751138 daemon.notice] 47 fe_rpc_command: cmd_type(enum):<1>:cmd=</usr/cluster/lib/r
    gm/rt/hafoip/hafoip_monitor_start>:tag=<msg-rg.mail.7>: Calling security_clnt_connect(..., host=<ms1>, sec_type {0:WEAK, 1:ST
    RONG, 2:DES} =<1>, ...)
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 268902 daemon.notice] 45 fe_rpc_command: cmd_type(enum):<1>:cmd=</opt/sun/comms/msg
    scha/bin/imssvc_start>:tag=<msg-rg.msg-rs.0>: Calling security_clnt_connect(..., host=<ms1>, sec_type {0:WEAK, 1:STRONG, 2:
    DES} =<1>, ...)
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 515159 daemon.notice] method <hafoip_monitor_start> completed successfully for reso
    urce <mail>, resource group <msg-rg>, node <ms1>, time used: 0% of timeout <300 seconds>
    Sep 26 12:25:19 ms1 Cluster.RGM.rgmd: [ID 443746 daemon.notice] resource mail state on node ms1 change to R_ONLINE
    Sep 26 12:26:53 ms1 Cluster.PMF.pmfd: [ID 887656 daemon.notice] Process: tag="msg-rg,msg-rs,1.svc", cmd="/bin/sh -c /opt/sun/
    comms/messaging64/bin/start-msg watcher", Failed to stay up.
    Sep 26 12:26:55 ms1 Cluster.RGM.rgmd: [ID 784560 daemon.notice] resource msg-rs status on node ms1 change to R_FM_ONLINE
    Sep 26 12:26:55 ms1 Cluster.RGM.rgmd: [ID 922363 daemon.notice] resource msg-rs status msg on node ms1 change to <Start succe
    eded.>
    Sep 26 12:26:55 ms1 Cluster.PMF.pmfd: [ID 819736 daemon.notice] PMF is restarting process that died: tag=msg-rg,msg-rs,1.svc,
    cmd_path=/bin/sh -c /opt/sun/comms/messaging64/bin/start-msg watcher, max_retries=0, num_retries=0
    Sep 26 12:27:25 ms1 SC[SUNW.ims:7.0,msg-rg,msg-rs,ims_svc_start]: [ID 141062 daemon.error] Failed to connect to host 192.168.
    0.250 and port 27442: Connection refused.
    Sep 26 12:29:55 ms1 last message repeated 6 times
    Sep 26 12:30:26 ms1 Cluster.RGM.rgmd: [ID 764140 daemon.error] Method <ims_svc_start> on resource <msg-rs>, resource group <m
    sg-rg>, node <ms1>: Timeout.
    Sep 26 12:30:26 ms1 Cluster.RGM.rgmd: [ID 443746 daemon.notice] resource msg-rs state on node ms1 change to R_START_FAILED
    Sep 26 12:30:26 ms1 Cluster.RGM.rgmd: [ID 529407 daemon.notice] resource group msg-rg state on node ms1 change to RG_PENDING_
    OFF_START_FAILED
    Sep 26 12:30:26 ms1 Cluster.RGM.rgmd: [ID 784560 daemon.notice] resource msg-rs status on node ms1 change to R_FM_FAULTED
    Sep 26 12:30:26 ms1 Cluster.RGM.rgmd: [ID 443746 daemon.notice] resource msg-rs state on node ms1 change to R_STOPPING
    S

    I got the mistake in adding /etc/hosts. I pasted the area here for any person who can notice if they encountered same problem or same mistake.
    it should be following format:
    192.168.0.250 mail.test.com mail msg-lcreate logical hostname as follow:
    clrslh create -g msg-rg msg-lNotice qfe0:1
    # ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    eri0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 192.168.0.240 netmask ffffff00 broadcast 192.168.0.255
    groupname sc_ipmp0
    ether 0:3:ba:29:8a:ac
    eri0:1: flags=9040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER> mtu 1500 >index 2
    inet 192.168.0.242 netmask ffffff00 broadcast 192.168.0.255
    qfe0: flags=9040842<BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4,NOFAILOVER> mtu 1500 index 3
    inet 192.168.0.243 netmask ffffff00 broadcast 192.168.0.255
    groupname sc_ipmp0
    ether 0:3:ba:22:d4:36
    qfe0:1: flags=1040843<UP,BROADCAST,RUNNING,MULTICAST,DEPRECATED,IPv4> mtu 1500 index 3
    inet 192.168.0.250 netmask ffffff00 broadcast 192.168.0.255
    qfe2: flags=1008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4> mtu 1500 index 5
    inet 172.16.0.129 netmask ffffff80 broadcast 172.16.0.255
    ether 0:3:ba:22:d4:38
    qfe3: flags=1008843<UP,BROADCAST,RUNNING,MULTICAST,PRIVATE,IPv4> mtu 1500 index 4
    inet 172.16.1.1 netmask ffffff80 broadcast 172.16.1.127
    ether 0:3:ba:22:d4:39
    clprivnet0: flags=1009843<UP,BROADCAST,RUNNING,MULTICAST,MULTI_BCAST,PRIVATE,IPv4> mtu 1500 >index 6
    inet 172.16.4.1 netmask fffffe00 broadcast 172.16.5.255
    ether 0:0:0:0:0:1Now I am able to plumb logical hostname ip. messaging resource group is able to swing over between nodes and resource group is able to go online (before creating messaging server resource (msg-rs).
    after creating messaging server resource, use following command to start message resource group:
    ms1@root #clrg online -eM msg-rgI used the following command to create message resource (msg-rs)
    clrs create -g msg-rg -t SUNW.ims -x IMS_serverroot=/opt/sun/comms/messaging64 -y >Resource_dependencies=msg-l,msg-hasp-rs msg-rsBut still having problem in starting resource group after adding msg-rs
    Please advise where I went wrong..
    Thanks.

  • Can not start managed server

    Hi All,
    I am trying to start one of the managed server which are in cluster but i am getting below error:
    Please suggest the issue and resolution if anyone has come across the same situation.
    <Oct 14, 2011 7:56:16 AM EDT> <Warning> <RMI> <BEA-080003> <RuntimeException thrown by rmi server: weblogic.rmi.internal.BasicServerRef@274, implementation: 'weblogic.jms.dispatcher.DispatcherImpl@4f6fa0b6', oid: '628', implementationClassName: 'weblogic.jms.dispatcher.DispatcherImpl'
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators, IntegrationAdministrators, AdminChannelUsers].
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators, IntegrationAdministrators, AdminChannelUsers]
    at weblogic.security.service.SecurityServiceManager.seal(SecurityServiceManager.java:833)
    at weblogic.security.service.SecurityServiceManager.getSealedSubjectFromWire(SecurityServiceManager.java:522)
    at weblogic.rjvm.MsgAbbrevInputStream.getSubject(MsgAbbrevInputStream.java:349)
    at weblogic.rmi.internal.BasicServerRef.acceptRequest(BasicServerRef.java:953)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:351)
    Truncated. see log file for complete stacktrace
    >
    <Oct 14, 2011 7:56:16 AM EDT> <Warning> <RMI> <BEA-080003> <RuntimeException thrown by rmi server: weblogic.rmi.internal.BasicServerRef@274, implementation: 'weblogic.jms.dispatcher.DispatcherImpl@4f6fa0b6', oid: '628', implementationClassName: 'weblogic.jms.dispatcher.DispatcherImpl'
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators, IntegrationAdministrators, AdminChannelUsers].
    java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators, IntegrationAdministrators, AdminChannelUsers]
    at weblogic.security.service.SecurityServiceManager.seal(SecurityServiceManager.java:833)
    at weblogic.security.service.SecurityServiceManager.getSealedSubjectFromWire(SecurityServiceManager.java:522)
    at weblogic.rjvm.MsgAbbrevInputStream.getSubject(MsgAbbrevInputStream.java:349)
    at weblogic.rmi.internal.BasicServerRef.acceptRequest(BasicServerRef.java:953)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:351)
    Truncated. see log file for complete stacktrace
    >
    <Oct 14, 2011 8:12:03 AM EDT> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by weblogic>
    <Oct 14, 2011 8:12:06 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to SUSPENDING>
    [JCABindingManager] : This operation is not supported for JCA based MDB
    <Oct 14, 2011 8:12:07 AM EDT> <Notice> <Cluster> <BEA-000163> <Stopping "async" replication service>
    <Oct 14, 2011 8:12:08 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Oct 14, 2011 8:12:08 AM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to SHUTTING_DOWN>
    <Oct 14, 2011 8:12:08 AM EDT> <Notice> <Server> <BEA-002607> <Channel "Default" listening on 10.172.108.9:26362 was shutdown.>

    From the managed server folder like servers/yourManagedServer rename the fodler named "data". Then restart the server. Basically this "data" folder will have ldap information and all groups, policies etc. It will create this folder again and get a copy of full data folder from admin server. Give this a shot.
    Thanks
    Ravi Jegga

  • BPEL Server can not start after jazn default realm has been modified

    Hi, everyone:
    In order to customize my user task assigneeGroup, I set up a new realm in the jazn-data.xml using the shell (java -jar jazn.jar -shell). I tried to modify the jazn.xml file in %OraBPELPM%\integration\orabpel\system\appserver\oc4j\j2ee\home\config, and set the default-realm attribute to my new realm.
    After these modification, the BPEL Server can not start, the server seems to stop after loading the first two EJB.
    Does anyone ever encounter this problem? Could anyone help me?

    It appears that I had the wrong oracle home and as a result some of the steps were skipped by the Universal Installer during installation, but installation was still claimed as successful. Even by launching the 'Mobile Server Repository Wizard' manually by running 'repwizard.bat' did not provide all the necessary window boxes to provide the details such as the SID, hostname, port number. I re-installed.
    After starting the back-end database and then starting mobile server and testing in IE to see if the server was working by typing in http://<host name>:80/webtogo, I got the screen displaying mobile server.
    Many thanks for your help.
    Mark

  • Can Not start Database after Server is restarted !!!!

    I am building a oracle Hyperion Essbase and planning sandbox on my laptop using VMware 9.0
    and 11gr2 as ny database.
    Once I complete the install and config, I am installing the essbase EAS client, once that is completed I have too restart the server
    once the Server is back up, the database is giving me the following Error:
    Database Instance: Hyperion
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 2:19:45 AM EDT  
    Database Instance
    Host  localhost
    Port  1521
    SID  Hyperion
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Listener
    Status  Down
    Host  localhost
    Port  1521
    Name  LISTENER
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Location  C:\app\Administrator\product\11.2.0\dbhome_1\network\admin
    Details  TNS-12541: TNS:no listener 
    Agent Connection to Instance
    Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    Change Status Details
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 6:56:37 AM EDT
    Please advise

    Not clear what you are asking instruction i am following
    again I need a Database schema for Oracle Hyperion Shared Services
    I set up the database and config the Hyperion Essbase application
    but when I  restart the server the database gives me the above error
    Listener / Status  Down / Host  localhost
    and
    Agent Connection to Instance Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    I manually went into the database instance and started the Listener
    but I can not start the database
    it is saying me to do a recovery ????
    Details
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    what can I do Please advise

  • Can not  start/stop fullfilment server after fresh install

    Can not start/stop fullfilment server after fresh install
    Product: e-business suite (11.5.9)
    Platform: Win XP 5.1 (SP2)
    We have performed a new installation of ebusiness suite in our windows platform.
    Installtion went with out any problem.
    But we can not start/stop the fullfilment server. While trying to start/stop the server we are getting follwing error message:
    c:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih\jtffmctl.cmd start
    script returned:
    C:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih>echo off
    You are running jtffmctl.cmd
    Mon 13/09/2004
    01:46 PM
    "Starting Fulfillment Server for "PROD" on port "9300" ...\n"
    "Error returned while running OUI"
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    Class not found: oracle.apps.jtf.fm.engine.processor.Processor
    Please let us know how to fix this issue.
    Regards, Kunal

    edit the jtffmctl.cmd and make sure that it point to the correct java path, alse try to use java 1.4.1

Maybe you are looking for

  • Upgrading VM Server 2.1 to 2.1.1

    Hi Group! I downloaded OracleVM some time ago when it first became publicly available. I quite like it and have seen that there is a slightly newer version out. I have googled for upgrade paths and so far have not found a result. So - has anyone succ

  • Photo booth pop art

    I opened photo booth up recently to take some pictures and noticed that my pop art/ andy warhol style effect wasn't working. Instead of having the 4 different colored pictures, there is only the one in the top left corner, and the other for are just

  • How to replicate bundle from Author to Publish

    Hi, I have published a java bundle by right clicking and select 'Build Bundle' on the 'bnd' file, the bundle gets deployed properly on the 'Author' instance, but the 'publish' instance deploy failed. The code currently works in 'Author'. How do I rep

  • Where is the time when i play music?

    I am listening to a podcast and need to fast forward to the middle about an hour and a half, but i dont see the time anywhere.

  • Muse search results missing "www"

    This is odd.  A site authored in Muse works well online, but has issues using Bing search results. For example let me call it http://www.basicwebsite.com (not real). In Bing it comes up without the full URL site address as "basicwebsite.com" or "http