Start weblogic server within java code

From edoc.bea.com, I got:
====
The following sections describe alternate ways to start an Administration Server:
Starting an Administration Server from the Windows Start Menu
Starting an Administration Server When the Host Computer Boots
Starting an Administration Server With the java weblogic.Server Command
====
Could we start weblogic server within java code?
(like ServerLoader provided by JBoss?)
Thanks in advance.
-Kevin

The follwoing code:
//====
import weblogic.*;
public class MyTest
public static void main(String[] args)
          String[] myArgs = new String[6];
          myArgs[0] = "-Dweblogic.home=C:\\bea";
          myArgs[1] = "-Dweblogic.RootDirectory=C:\\bea\\weblogic81\\samples\\domains\\examples";
          myArgs[2] = "-Dweblogic.ConfigFile=C:\\bea\\weblogic81\\samples\\domains\\examples\\config.xml";
          myArgs[3] = "-Dweblogic.Name=examplesServer";
          myArgs[4] = "-Dweblogic.management.username=weblogic";
          myArgs[5] = "-Dweblogic.management.password=weblogic";
          Server.main( myArgs );
//====
Seems that did not feed the arguments in:
C:\myTest>java -cp .;%CLASSPATH% MyTest
<Sep 22, 2005 6:08:40 PM EDT> <Info> <Security> <BEA-090065> <Getting boot ident
ity from user.>
Enter username to boot WebLogic server:

Similar Messages

  • Is there any way to start weblogic server with java 7?

    Hi. Is there any way to start weblogic server with jdk 1.7?

    Hi,
    You can start your Weblogic Server with java 7(JDK 1.7) 
    Go to Domain_home/bin and click on StartWeblogic.cmd it will start your Admin Server
    It depends on which JDK you have used while creating domain if you have selected Jdk 1.7 it will use the same to start the server
    See the Ex:
    ================
    starting weblogic with Java version:
    java version "1.7.0_51"
    Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
    Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)
    Starting WLS with line:
    C:\PROGRA~1\Java\JDK17~1.0_5\bin\java -client   -Xms256m -Xmx512m -XX:CompileThr
    eshold=8000 -XX:PermSize=48m  -XX:MaxPermSize=128m -Dweblogic.Name=AdminServer -
    Djava.security.policy=H:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy
    -Xverify:none -Xverify:none  -da -Dplatform.home=H:\Oracle\MIDDLE~1\WLSERV~1.3 -
    Dwls.home=H:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=H:\Oracle\MIDDLE~
    1\WLSERV~1.3\server   -Dweblogic.management.discover=true  -Dwlw.iterativeDev= -
    Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=H:\Oracle\MIDDLE
    ~1\patch_wls1036\profiles\default\sysext_manifest_classpath  weblogic.Server
    <Mar 3, 2015 1:08:32 PM PST> <Info> <Security> <BEA-090905> <Disabling CryptoJ J
    CE Provider self-integrity check for better startup performance. To enable this
    check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Mar 3, 2015 1:08:33 PM PST> <Info> <Security> <BEA-090906> <Changing the defaul
    t Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable
    this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Mar 3, 2015 1:08:33 PM PST> <Info> <WebLogicServer> <BEA-000377> <Starting WebL
    ogic Server with Java HotSpot(TM) 64-Bit Server VM Version 24.51-b03 from Oracle
    Corporation>
    =======================================
    If you are using a Lower version of JDK and want to upgrade to JKD 1.7 you can do so by changing setDomainEnv.sh in Weblogic
    Have a look at the below link to do so
    The Weblogic Wasp: change java version / JDK of a weblogic domain
    http://www.baigzeeshan.com/2012/05/how-to-change-jdk-used-by-weblogic.html
    Hope it helps

  • Starting weblogic server from java program

    Runtime r=Runtime.getRuntime();
    Process p=r.exec("cmd /c d:/bea/weblogic700/server/bin/setWLSEnv.cmd");
    when ihave given like this it is working.
    now i want to start weblogicserver from jav program
    String s="-Dweblogic.Domain=mydomain weblogic.Server"
    Process p=r.exec("cmd /c d:/bea/weblogic700/server/bin/setWLSEnv.cmd java "+s);
    when i gave like this weblogicserver should start with specified domain
    but no output is comming.please tellme where the problem is

    no - nothing happened. it perform the next java code - and there is nothing else happen on the windows.
    maybe i don't check in the right place for the error you are talking about?
    i also tried i simple cmd file that does nothing - but still nothing...
    for any other file types it works properly.

  • Start weblogic server with java argument

    Hello,
    I am using weblogic server version 10.2. And the environment have one Admin server and two machines.
    In admin console, one managed sever is configured with Java argument in "Server Start". The java option can be passed to JVM when i start the managed server in admin console. i confirmed that by execute ps the java process from the linux server. However, the java argument cannot pass to the JVM when i start from command line as below. is there any specific configuration required?
    /weblogic/bea102/wlserver_10.0/common/bin/wlscontrol.sh -d premium_102_internet_qa -n /weblogic/ndmgr -c -f startManagedWebLogic.sh -s server_qa_svra START
    PLease help!
    Thanks,
    Angus

    You have to use the nodemanager. The parameters are added to a file startup.properties, located in the
    directory: <middleware-home>/user_projects/domains/<domain-name>/servers/<server-name>/data/nodemanager
    The file startup.properties is used by the nodemanager to start your managed server.
    You can start your environment by using a start script (written using WLST), for example,
    beahome = '<middleware-hoem>';
    adminusername = 'username';
    adminpassword = 'password';
    domainname = 'domain-name';
    linux = true;
    pathseparator = '/';
    if not linux:
         pathseparator = '\\';
    domainlocation = beahome + pathseparator + 'user_projects' + pathseparator + 'domains' + pathseparator + domainname;
    nodemanagerhomelocation = beahome + pathseparator + 'wlserver_10.3' + pathseparator + 'common' + pathseparator + 'nodemanager';
    print 'START NODE MANAGER';
    startNodeManager(verbose='true', NodeManagerHome=nodemanagerhomelocation, ListenPort='5556', ListenAddress='localhost');
    print 'CONNECT TO NODE MANAGER';
    nmConnect(adminusername, adminpassword, 'localhost', '5556', domainname, domainlocation, 'ssl');
    print 'START ADMIN SERVER';
    nmStart('AdminServer');
    nmServerStatus('AdminServer');
    print 'CONNECT TO ADMIN SERVER';
    connect(adminusername, adminpassword);
    print 'START MANAGED SERVER';
    start('ServerName','Server');
    nmServerStatus('ServerName');

  • Problem in starting weblogic server as proxy

    I am using weblogic server as Proxy to forward the requests to weblogic cluster.
    When i bring up the proxy, it works fine, but when i try to access the application deployed in cluster through Proxy, the proxy server crashes with the follwoing error.
    I am Pasting my complete logs below.
    Setting JVM memory params for server IRISProxy
    Using server IRISProxy-specfic java memory arguments: -Xms32m -Xmx200m -XX:SurvivorRatio=4 -XX:TargetSurvivorRatio=80 -XX:MaxPermSize=128m -XX:+DisableExplicitGC -XX:NewRatio=4
    WLS Production Mode=true
    ./startWebLogic.sh[68]: B: not found.
    maxfiles=8192
    CLASSPATH=/home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/util/CR211812_81sp4.jar:/home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/util/CR235145_81sp4.jar:/home/weblogic/bea_wli/weblogic81/common/lib/CR224719_81sp2.jar:/home/weblogic/bea_wli/weblogic81/common/lib/CR137449_81sp2.jar:/home/weblogic/bea_wli/weblogic81/server/lib/weblogic_knex_patch.jar:/home/weblogic/bea_wli/weblogic81/common/lib/log4j.jar:/home/weblogic/bea_wli/weblogic81/server/lib/debugging.jar:/home/weblogic/bea_wli/weblogic81/server/lib/knex.jar:/home/weblogic/bea_wli/weblogic81/javelin/lib/javelin.jar:/home/weblogic/bea_wli/weblogic81/server/lib/wlw-lang.jar:/home/weblogic/bea_wli/jdk141_05/lib/tools.jar:/home/weblogic/bea_wli/weblogic81/server/lib/weblogic_sp.jar:/home/weblogic/bea_wli/weblogic81/server/lib/weblogic.jar:/home/weblogic/bea_wli/weblogic81/server/lib/ojdbc14.jar:/home/weblogic/bea_wli/weblogic81/server/lib/ant/ant.jar:/home/weblogic/bea_wli/jdk141_05/jre/lib/rt.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-IRIS:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/agent_tools_2_1.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-Admin:/opt/jes/policy_agent/IdentityServer/j2ee_agents/locale:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_agent_sdk_2_1.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_agent_filter_2_1.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_sdk.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_services.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_sso_provider.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_logging.jar:/opt/jes/policy_agent/IdentityServer/j2ee_agents/lib/am_wl70_agent_2_1.jar:::::/home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/util/SecurityClient-v1.0.7.jar:/home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/util/Log4JInitServlet.jar:/home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/util/log4j_IRIS-1.2.4.jar:::/home/weblogic/bea_wli/weblogic81/server/lib/webserviceclient.jar:/home/weblogic/bea_wli/weblogic81/server/lib/webserviceclient+ssl.jar:/home/weblogic/bea_wli/weblogic81/server/lib/xbean.jar:/home/weblogic/bea_wli/weblogic81/server/lib/wlxbean.jar:/home/weblogic/bea_wli/weblogic81/server/lib/xqrl.jar:/home/weblogic/bea_wli/weblogic81/server/lib/netui/netui-compiler.jar:/home/weblogic/bea_wli/weblogic81/server/lib/wli.jar:/home/weblogic/bea_wli/weblogic81/server/lib/fop.jar:/home/weblogic/bea_wli/weblogic81/integration/adapters/sample/lib/sample-eis.jar:
    PATH=/home/weblogic/bea_wli/weblogic81/server/bin:/home/weblogic/bea_wli/weblogic81/server/bin:/home/weblogic/bea_wli/jdk141_05/jre/bin:/home/weblogic/bea_wli/jdk141_05/bin:/usr/sbin:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/usr/local/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/resmon/bin:/opt/perf/bin:/opt/prm/bin:/opt/mx/bin:/opt/gnome/bin:/opt/wbem/bin:/opt/wbem/sbin:/opt/ignite/bin:/opt/graphics/common/bin:/usr/sbin/diag/contrib:/opt/sec_mgmt/spc/bin:/opt/networker/bin:/opt/sec_mgmt/bastille/bin:/opt/hpnpl//bin:/opt/mozilla:/opt/OV/bin/OpC:/opt/OV/bin:/sbin:/home/root:/util:/home/weblogic/bea_wli/jdk141_05/jre/bin:/usr/local/bin:/usr/local/sbin:.
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.4.1.05"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1.05-030910-01:23)
    Java HotSpot(TM) Server VM (build 1.4.1 1.4.1.05-030910-02:49-PA_RISC2.0 PA2.0, mixed mode)
    Starting WLS with line:
    /home/weblogic/bea_wli/jdk141_05/bin/java -server -Xms32m -Xmx200m -XX:SurvivorRatio=4 -XX:TargetSurvivorRatio=80 -XX:MaxPermSize=128m -XX:+DisableExplicitGC -XX:NewRatio=4 -Dweblogic.security.SSL.trustedCAKeyStore=/home/weblogic/bea_wli/weblogic81/server/lib/cacerts -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dcom.iplanet.coreservices.configpath=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-IRIS/ums -Djava.util.logging.config.file=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-IRIS/AMAgent.properties -DLOG_COMPATMODE=Off -Dmax_conn_pool=10 -Dmin_conn_pool=1 -Damconfig=AMAgent -Dapp.config.dir=/home/weblogic/upload/appsvcdomain/IRIS/config -Dcom.iplanet.coreservices.configpath=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-IRIS/ums -Djava.util.logging.config.file=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain-IRIS/AMAgent.properties -DLOG_COMPATMODE=Off -Dmax_conn_pool=10 -Dmin_conn_pool=1 -Damconfig=AMAgent -Dapp.config.dir=/home/weblogic/upload/appsvcdomain/IRIS/config -da -Dplatform.home=/home/weblogic/bea_wli/weblogic81 -Dwls.home=/home/weblogic/bea_wli/weblogic81/server -Dwli.home=/home/weblogic/bea_wli/weblogic81/integration -Dlog4j.configuration=file:/home/weblogic/bea_wli/weblogic81/common/lib/workshopLogCfg.xml -Dweblogic.management.discover=false -Dweblogic.management.server=t3://170.63.142.14:8100 -Dweblogic.security.SSL.ignoreHostnameVerify=false -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=true -Dweblogic.security.SSL.trustedCAKeyStore=/home/weblogic/bea_wli/weblogic81/server/lib/cacerts -Dcom.iplanet.coreservices.configpath=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain/ums -Djava.util.logging.config.file=/opt/jes/policy_agent/IdentityServer/j2ee_agents/config/_home_weblogic_bea_wli_user_projects_domains_AppSvcDomain/AMAgent.properties -DLOG_COMPATMODE=Off -Dmax_conn_pool=10 -Dmin_conn_pool=1 -Damconfig=AMAgent -Dweblogic.Name=IRISProxy -Dweblogic.ProductionModeEnabled=true -Djava.security.policy=/home/weblogic/bea_wli/weblogic81/server/lib/weblogic.policy weblogic.Server
    Bad level value for property: com.iplanet.services.debug.level
    Bad level value for property: com.sun.identity.agents.logging.level
    Bad level value for property: com.sun.am.policy.amFilter.audit.level
    <Mar 15, 2006 3:40:33 PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Server VM Version 1.4.1 1.4.1.05-030910-02:49-PA_RISC2.0 PA2.0 from Hewlett-Packard Company>
    <Mar 15, 2006 3:40:34 PM EST> <Info> <Management> <BEA-141140> <The managed server is going to contact the admin server at http://170.63.142.14:8100 to check if there exists a running admin server at this URL.>
    <Mar 15, 2006 3:40:34 PM EST> <Info> <Configuration Management> <BEA-150017> <This server is being started as a dependent managed server.>
    <Mar 15, 2006 3:40:35 PM EST> <Warning> <Configuration Management> <BEA-150033> <The managed server should not be started in development mode.>
    <Mar 15, 2006 3:40:35 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Temporary Patch for CR211812 01/23/2005 22:15:39
    WebLogic Temporary Patch for CR235145 08/16/2005 11:44:59
    WebLogic Temporary Patch for CR224719 04/29/2005 16:40:35
    WebLogic Temporary Patch for CR137449 02/24/2004 10:48:06
    WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic XMLX Module 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic Integration 8.1 SP2 Thu Dec 11 22:07:14 PST 2003 148883>
    <Mar 15, 2006 3:40:35 PM EST> <Info> <Configuration Management> <BEA-150015> <Connecting to the administration server http://170.63.142.14:8100 to retrieve the initial configuration.>
    <Mar 15, 2006 3:40:46 PM EST> <Notice> <Log Management> <BEA-170019> <The server log file /home/weblogic/bea_wli/user_projects/domains/AppSvcDomain/IRISProxy/IRISProxy.log is opened. All server side log events will be written to this file.>
    <Mar 15, 2006 3:41:29 PM EST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Mar 15, 2006 3:41:29 PM EST> <Notice> <WebLogicServer> <BEA-000328> <Starting WebLogic Managed Server "IRISProxy" for domain "AppSvcDomain">
    <Mar 15, 2006 3:41:57 PM EST> <Warning> <HTTP> <BEA-101299> <The servlet-mapping for servlet-name "HttpClusterServlet" will override the default mapping for *.jsp. This can lead to a show code vulnerability.>
    <Mar 15, 2006 3:42:06 PM EST> <Notice> <Security> <BEA-090170> <Loading the private key stored under the alias irisqa from the jks keystore file /home/weblogic/bea_wli/weblogic81/server/lib/trustIdentityKeys/iris_qa.jks.>
    <Mar 15, 2006 3:42:06 PM EST> <Notice> <Security> <BEA-090171> <Loading the identity certificate stored under the alias irisqa from the jks keystore file /home/weblogic/bea_wli/weblogic81/server/lib/trustIdentityKeys/iris_qa.jks.>
    <Mar 15, 2006 3:42:08 PM EST> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file /home/weblogic/bea_wli/jdk141_05/jre/lib/security/cacerts.>
    <Mar 15, 2006 3:42:09 PM EST> <Notice> <WebLogicServer> <BEA-000330> <Started WebLogic Managed Server "IRISProxy" for domain "AppSvcDomain" running in Production Mode>
    <Mar 15, 2006 3:42:09 PM EST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <Mar 15, 2006 3:42:09 PM EST> <Notice> <WebLogicServer> <BEA-000355> <Thread "ListenThread.Default" listening on port 7001, ip address 170.63.142.29>
    <Mar 15, 2006 3:42:09 PM EST> <Notice> <WebLogicServer> <BEA-000355> <Thread "SSLListenThread.Default" listening on port 443, ip address 170.63.142.29>
    <Mar 15, 2006 5:02:26 PM EST> <Emergency> <WebLogicServer> <BEA-000209> <ListenThread.run() failed: java.lang.NoSuchMethodError: com.certicom.tls.interfaceimpl.TLSSystem.createServer(Ljavax/net/ssl/SSLSocket;Ljava/io/InputStream;Ljava/io/OutputStream;Ljava/io/Serializable;)Lcom/certicom/tls/TLSConnection;
    java.lang.NoSuchMethodError: com.certicom.tls.interfaceimpl.TLSSystem.createServer(Ljavax/net/ssl/SSLSocket;Ljava/io/InputStream;Ljava/io/OutputStream;Ljava/io/Serializable;)Lcom/certicom/tls/TLSConnection;
         at javax.net.ssl.impl.SSLSocketImpl.resetConnection(Unknown Source)
         at javax.net.ssl.impl.SSLServerSocketImpl.accept(Unknown Source)
         at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:739)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:292)
    >
    <Mar 15, 2006 5:02:26 PM EST> <Emergency> <WebLogicServer> <BEA-000210> <The WebLogic Server is no longer listening for connections.>
    <Mar 15, 2006 5:02:26 PM EST> <Alert> <WebLogicServer> <BEA-000218> <Server shutdown has been requested by <WLS Kernel>>
    <Mar 15, 2006 5:02:26 PM EST> <Notice> <WebLogicServer> <BEA-000353> <Thread "ListenThread.Default" stopped listening on port 7001, ip address 170.63.142.29>
    <Mar 15, 2006 5:02:26 PM EST> <Notice> <WebLogicServer> <BEA-000353> <Thread "SSLListenThread.Default" stopped listening on port 443, ip address 170.63.142.29>
    <Mar 15, 2006 5:02:26 PM EST> <Alert> <WebLogicServer> <BEA-000219> <The shutdown sequence has been initiated.>
    Can someone help me in solving this problem
    Thanks
    Kris

    I solved this problem by commenting the 8.1 SP4 patches i applied in 8.1 SP2
    WebLogic Temporary Patch for CR211812
    WebLogic Temporary Patch for CR235145
    Once i commented the above patches in the CLASSPATH.
    The issue is resolved.

  • Error in Starting Weblogic Server 12c

    Hi,
    I get the below error when I run Weblogic server 12c. I am running it on Windows 7 Enterprise sp1.
    I have installed the products. Oracle DB 11.2.0.1.0, RCU 11.1.1.6.0, Webcenter Portal & Content- 11.1.1.8.0
    The main error I see is Opening of file based keystore failed from below log.
    C:\Oracle\Middleware\user_projects\domains\New_domain\bin>startWebLogic.cmd >> log.txt
    'C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\bin\\Installer64' is not recognized as an internal or external command,
    operable program or batch file.
    'C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\bin\\Installer' is not recognized as an internal or external command,
    operable program or batch file.
    'C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\bin\\Installer' is not recognized as an internal or external command,
    operable program or batch file.
    'C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\bin\\Installer' is not recognized as an internal or external command,
    operable program or batch file.
    FINDSTR: No search strings
    java version "1.6.0_29"
    Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
    Java HotSpot(TM) Client VM (build 20.4-b02, mixed mode)
    6 Sep, 2013 2:27:09 PM oracle.security.jps.internal.keystore.file.FileKeyStoreManager openKeyStore
    WARNING: Opening of file based keystore failed.
    JAVA Memory arguments: -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\Oracle\MIDDLE~1\patch_wls1211\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_12.1.1.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\Middleware\oracle_common\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\Middleware\Oracle_WC1\wcps-services-app\modules\oracle.wcps_11.1.1\wcps-connection-mbeans.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\xqrl.jar;C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\jlib\idcloader.jar;C:\Oracle\MIDDLE~1\ORACLE~3\ucm\idc\components\NativeOsUtils\classes-NativeOsUtils.jar;
    PATH=C:\Oracle\MIDDLE~1\patch_wls1211\profiles\default\native;C:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\app2\v.narasakumar.kuchi\product\11.2.0\dbhome_1\bin;C:\app1\v.narasakumar.kuchi\product\11.2.0\dbhome_1\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Java\jdk1.6.0_38\bin;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\native\win\32\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client   -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m -Dweblogic.Name=AdminServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\weblogic.policy  -Xverify:none -Djava.endorsed.dirs=C:\Oracle\MIDDLE~1\JDK160~1/jre/lib/endorsed;C:\Oracle\MIDDLE~1\WLSERV~1.1/endorsed  -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.1 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.1\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.1\server  -Dcommon.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\FMWCON~1\servers\AdminServer -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\FMWCON~1  -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\FMWCON~1\carml  -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\servers\AdminServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jps_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol  -Dweblogic.jdbc.remoteEnabled=false -Djps.auth.debug=false -Dtangosol.coherence.log=jdk -DjiveHome=C:\Oracle\MIDDLE~1\USER_P~1\domains\NEW_DO~1\config\fmwconfig\servers\AdminServer\owc_discussions -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Doracle.webcenter.analytics.disable-native-partitioning=false -Doracle.webcenter.tagging.scopeTags=false -Djava.awt.headless=true -Doracle.webcenter.tagging.scopeTags=false -XX:+UseParallelGC -XX:+DisableExplicitGC -Dportlet.oracle.home=C:\Oracle\Middleware\oracle_common -Dwc.oracle.home=C:\Oracle\Middleware\Oracle_WC1  -Dipm.oracle.home=C:\Oracle\Middleware\Oracle_ECM1 -Doracle.capture.home=C:\Oracle\Middleware\Oracle_ECM1 -Ducm.oracle.home=C:\Oracle\MIDDLE~1\ORACLE~3 -Dirm.oracle.home=C:\Oracle\Middleware\Oracle_ECM1 -Dem.oracle.home=C:\Oracle\Middleware\oracle_common -Djava.awt.headless=true -Dweblogic.management.discover=true  -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1211\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\sysext_manifest_classpath  weblogic.Server
    <6 Sep, 2013 2:27:03 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <6 Sep, 2013 2:27:03 PM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <6 Sep, 2013 2:27:03 PM IST> <Notice> <WebLogicServer> <BEA-000395> <The following extensions directory contents added to the end of the classpath:
    C:\Oracle\Middleware\user_projects\domains\New_domain\lib\mbeantypes\csp-id-asserter.jar;C:\Oracle\Middleware\user_projects\domains\New_domain\lib\mbeantypes\jps-wls-trustprovider.jar.>
    <6 Sep, 2013 2:27:04 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 20.4-b02 from Sun Microsystems Inc..>
    <6 Sep, 2013 2:27:05 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for 13340309 Thu Feb 16 18:30:21 IST 2012
    WebLogic Server Temporary Patch for 13019800 Mon Jan 16 16:53:54 IST 2012
    WebLogic Server Temporary Patch for BUG13391585 Thu Feb 02 10:18:36 IST 2012
    WebLogic Server Temporary Patch for 13516712 Mon Jan 30 15:09:33 IST 2012
    WebLogic Server Temporary Patch for BUG13641115 Tue Jan 31 11:19:13 IST 2012
    WebLogic Server Temporary Patch for BUG13603813 Wed Feb 15 19:34:13 IST 2012
    WebLogic Server Temporary Patch for 13424251 Mon Jan 30 14:32:34 IST 2012
    WebLogic Server Temporary Patch for 13361720 Mon Jan 30 15:24:05 IST 2012
    WebLogic Server Temporary Patch for BUG13421471 Wed Feb 01 11:24:18 IST 2012
    WebLogic Server Temporary Patch for BUG13657792 Thu Feb 23 12:57:33 IST 2012
    WebLogic Server 12.1.1.0  Wed Dec 7 08:40:57 PST 2011 1445491 >
    <6 Sep, 2013 2:27:06 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.>
    <6 Sep, 2013 2:27:07 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool.>
    <6 Sep, 2013 2:27:07 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Oracle\Middleware\user_projects\domains\New_domain\servers\AdminServer\logs\AdminServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms, such as Windows.>
    <6 Sep, 2013 2:27:07 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Oracle\Middleware\user_projects\domains\New_domain\servers\AdminServer\logs\AdminServer.log00009. Log messages will continue to be logged in C:\Oracle\Middleware\user_projects\domains\New_domain\servers\AdminServer\logs\AdminServer.log.>
    <6 Sep, 2013 2:27:07 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\user_projects\domains\New_domain\servers\AdminServer\logs\AdminServer.log is opened. All server side log events will be written to this file.>
    <6 Sep, 2013 2:27:09 PM IST> <Error> <Security> <BEA-090892> <The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: JPS-06514: Opening of file based keystore failed.>
    <6 Sep, 2013 2:27:09 PM IST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: JPS-06514: Opening of file based keystore failed.
    weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: JPS-06514: Opening of file based keystore failed.
      at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1402)
      at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1022)
      at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
      at weblogic.security.SecurityService.start(SecurityService.java:148)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsRuntimeException: JPS-06514: Opening of file based keystore failed.
      at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:170)
      at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:383)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
      Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsException: JPS-06514: Opening of file based keystore failed.
      at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPDPService(PolicyUtil.java:2984)
      at oracle.security.jps.internal.policystore.PolicyUtil.getPDPService(PolicyUtil.java:3226)
      at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:167)
      at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:383)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06514: Opening of file based keystore failed.
      at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKeyStore(FileKeyStoreManager.java:406)
      at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKeyStore(FileKeyStoreManager.java:352)
      at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:122)
      at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:88)
      at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:164)
      Truncated. see log file for complete stacktrace
    >
    <6 Sep, 2013 2:27:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED.>
    <6 Sep, 2013 2:27:09 PM IST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down.>
    <6 Sep, 2013 2:27:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>
    I get the same error when I execute "startWeblogic.cmd" from domain folder and bin folder.
    Any help is appreciated. Thanks.

    Hi,
    Few comments here...
    1) Seems your environment is not setup correctly but that is not the big cause here.....
    2) This one is important, it seems that you installed weblogic using a different account and are trying to run it from a different account.
    So the account with which you are trying to run weblogic does not have proper permission on
    MW_HOME\user_projects\domains\bifoundation_domain\config\fmwconfig\bootstrap\cwallet.sso
    Right click on the file and go in properties ..
    Enable full control,modify,Read and execute,read and write permissions for the user you are trying to start weblogic and apply it.
    if this simple steps doesnt work, please enable more logging by adding "-Djava.security.debug=jpspolicy" to startup option and grab more details.
    Good Luck let me know if this works.

  • How to get the Weblogic Server Id from within java code

    I would like to log which server (among a cluster) a certain job is running on. Is there a way to get the server id from within Java code (this code is in a session bean if that is relevant.)
    By server id I mean the "Name" column in the summary of servers on the weblogic console.
    Thanks,
    ken

    Use the two entries close to the bottom of the page: "list WebLogic
    MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean.jsp"
    Nils
    Anatoly wrote:
    >
    Cameron,
    That page has these items on it:
    which one do you think helps with my issue?
    Misc WebLogic examples
    LongRunningTask
    Execute tasks in parallel using WebLogic Execute Threads
    Weblogic stats (5.1)
    Reload Servlet(s) programmatically (5.1)
    Network classload from WebLogic:using reflection,or the launcher
    Weblogic 5.1 debugging properties
    Seppuku pattern readme
    Using dynamic proxies to intercept EJB invocations (6.1)
    list WebLogic MBeans:listMBeans.jsp
    display MBean attributes and operations:showMBean
    Thanks to Marcelo Caldas for filter by type option and nice UI!
    Using com.sun.jdmk.comm.HtmlAdaptorServer with WebLogic 6.1
    Cool
    EJBGen
    Dimitri
    back
    "Cameron Purdy" <[email protected]> wrote in message news:<3c7a745d$[email protected]>...
    JMX ... see http://dima.dhs.org/misc/ for some info on JMX in Weblogic.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Anatoly" <[email protected]> wrote in message
    news:[email protected]..
    Does anyone know who to get the managing server URL's port
    from within the EJB code running on Weblogic 6.1?
    The URL port is not default (not 7001), but when creating
    initial context, I am not specifying the URL in properties.
    Due to that, trying to the the PROVIDER_URL property from
    environment does not return anything.
    Appreciate any responses.
    -Anatoly
    ============================
    [email protected]

  • Cannot Start Weblogic Server 5.10 sp 10 from Visual Age For Java

    hi everyone,
    i have just recently installed BEA integration kit for visual age for java. The
    version of Weblogic that i am using is 5.10 sp10.
    when i run the weblogic.integration.visualage.server.Server.main() i can see the
    server properties and i can see the connection pools being created, but when it
    gets to the Enterprise JavaBean initializing, i get the following error:
    Please help
    Thanks, Anthony
    Unable to initialize server: java.lang.ClassCastException
    fatal initialization exception
    java.lang.ClassCastException
    java.lang.Throwable()
    java.lang.Exception()
    java.lang.RuntimeException()
    java.lang.ClassCastException()
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.loadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.loadClass(java.lang.String)
    java.lang.Class
    weblogic.ejb.internal.EJBJarLoader.loadClass(java.lang.String)
    java.lang.Object java.beans.Beans.instantiate(java.lang.ClassLoader,java.lang.String,
    java.beans.beancontext.BeanContext,
    java.beans.AppletInitializer)
    java.lang.Object java.beans.Beans.instantiate(java.lang.ClassLoader,java.lang.String)
    weblogic.ejb.internal.EJBHomeImpl
    weblogic.ejb.internal.EJBDeploymentImpl.createBeanHome(weblogic.ejb.internal.BeanInfo)
    void weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(weblogic.ejb.internal.BeanInfo)
    void weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(boolean)
    void weblogic.ejb.internal.EJBDeploymentImpl.deploy(boolean)
    void weblogic.ejb.internal.EJBJarDeployment.deploy()
    void weblogic.ejb.internal.EJBManagerImpl.deploy(weblogic.ejb.common.EJBDeployment)
    void weblogic.ejb.internal.EJBManagerImpl.deployNew(weblogic.ejb.common.EJBDeployme
    nt)
    void weblogic.ejb.internal.EJBManagerImpl.deploy(java.lang.String, java.io.File)
    void weblogic.ejb.internal.EJBManagerImpl.deployBeans(java.lang.String[])
    weblogic.ejb.internal.EJBManagerImpl()
    void weblogic.t3.srvr.T3Srvr.start()
    void weblogic.t3.srvr.T3Srvr.main(java.lang.String [],
    java.lang.String, java.lang.String)
    void weblogic.Server.startServerStatically(java.lang.String [],java.lang.String,
    java.lang.String)
    void weblogic.Server.main(java.lang.String [], java.lang.String,java.lang.String)
    void weblogic.Server.main(java.lang.String [])
    void weblogic.integration.visualage.server.Server.main(java.lang.String [])

    Anthony,
    Have you installed the SP 10 service pack for the VAJ I-Kit ? That may be the issue. The I-Kit
    requires this service pack to work with WLS 5.1 SP10. The service pack can be downloaded at -
    http://commerce.beasys.com/downloads/weblogic_server_tools.jsp
    Anthony Moses wrote:
    hi everyone,
    i have just recently installed BEA integration kit for visual age for java. The
    version of Weblogic that i am using is 5.10 sp10.
    when i run the weblogic.integration.visualage.server.Server.main() i can see the
    server properties and i can see the connection pools being created, but when it
    gets to the Enterprise JavaBean initializing, i get the following error:
    Please help
    Thanks, Anthony
    Unable to initialize server: java.lang.ClassCastException
    fatal initialization exception
    java.lang.ClassCastException
    java.lang.Throwable()
    java.lang.Exception()
    java.lang.RuntimeException()
    java.lang.ClassCastException()
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.reallyLoadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.loadClass(java.lang.String,boolean)
    java.lang.Class
    weblogic.utils.classloaders.GenericClassLoader.loadClass(java.lang.String)
    java.lang.Class
    weblogic.ejb.internal.EJBJarLoader.loadClass(java.lang.String)
    java.lang.Object java.beans.Beans.instantiate(java.lang.ClassLoader,java.lang.String,
    java.beans.beancontext.BeanContext,
    java.beans.AppletInitializer)
    java.lang.Object java.beans.Beans.instantiate(java.lang.ClassLoader,java.lang.String)
    weblogic.ejb.internal.EJBHomeImpl
    weblogic.ejb.internal.EJBDeploymentImpl.createBeanHome(weblogic.ejb.internal.BeanInfo)
    void weblogic.ejb.internal.EJBDeploymentImpl.setupBeanHome(weblogic.ejb.internal.BeanInfo)
    void weblogic.ejb.internal.EJBDeploymentImpl.deployBeans(boolean)
    void weblogic.ejb.internal.EJBDeploymentImpl.deploy(boolean)
    void weblogic.ejb.internal.EJBJarDeployment.deploy()
    void weblogic.ejb.internal.EJBManagerImpl.deploy(weblogic.ejb.common.EJBDeployment)
    void weblogic.ejb.internal.EJBManagerImpl.deployNew(weblogic.ejb.common.EJBDeployme
    nt)
    void weblogic.ejb.internal.EJBManagerImpl.deploy(java.lang.String, java.io.File)
    void weblogic.ejb.internal.EJBManagerImpl.deployBeans(java.lang.String[])
    weblogic.ejb.internal.EJBManagerImpl()
    void weblogic.t3.srvr.T3Srvr.start()
    void weblogic.t3.srvr.T3Srvr.main(java.lang.String [],
    java.lang.String, java.lang.String)
    void weblogic.Server.startServerStatically(java.lang.String [],java.lang.String,
    java.lang.String)
    void weblogic.Server.main(java.lang.String [], java.lang.String,java.lang.String)
    void weblogic.Server.main(java.lang.String [])
    void weblogic.integration.visualage.server.Server.main(java.lang.String [])--
    Nirav Chanchani
    BEA Systems, Inc.

  • Error in starting WebLogic Server Process

    Hi,
    I'm suffering a serious sproblem that results in failure in starting WebLogic
    Server Processes. What i'm trying is to use "PostBindUID" nad "PostBindGID" services
    that changes the processes owner from "root" to "somebody". However, once i set
    it in Console (Configure a new Unix Machine), the server cannot start afterwards
    with the following errors in the screen (when i execute startWebLogic.sh) ...
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x917116B8
    Function=Java_weblogic_platform_Unix_getEGroup0+0x28
    Library=/opt/weblogic/bea/weblogic81/server/lib/solaris/libweblogicunix1.so
    Current Java thread:
    at weblogic.platform.Unix.getEGroup0(Native Method)
    at weblogic.platform.Unix.getEffectiveGroup(Unix.java:95)
    at weblogic.t3.srvr.T3Srvr.switchEffectiveGroup(T3Srvr.java:2080)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:1001)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    Dynamic libraries:
    0x10000 /opt/weblogic/bea/jdk141_05/bin/java
    0xff360000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff280000 /usr/lib/libc.so.1
    0xff350000 /usr/platform/FJSV,GPUZC-M/lib/libc_psr.so.1
    0xfe000000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/server/libjvm.so
    0xff210000 /usr/lib/libCrun.so.1
    0xff1f0000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff0b0000 /usr/lib/libm.so.1
    0xff240000 /usr/lib/libw.so.1
    0xff090000 /usr/lib/libmp.so.2
    0xff060000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/native_threads/libhpi.so
    0xff030000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libverify.so
    0xfe7c0000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libjava.so
    0xfe7a0000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libzip.so
    0xfe670000 /usr/lib/nss_files.so.1
    0x91850000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libnet.so
    0x91710000 /opt/weblogic/bea/weblogic81/server/lib/solaris/libweblogicunix1.so
    0x914d0000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libnio.so
    0x914b0000 /usr/lib/librt.so.1
    0x91260000 /usr/lib/libaio.so.1
    0x91240000 /opt/weblogic/bea/jdk141_05/jre/lib/sparc/libioser12.so
    0x90d60000 /usr/lib/nss_dns.so.1
    0x90b30000 /usr/lib/libresolv.so.2
    Local Time = Mon Jun 14 18:16:04 2004
    Elapsed Time = 143
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.1_05-b01 mixed mode)
    Abort
    If anyone have any thoughts, please kindly let me know.
    Many thanks,
    Ralph

    Hi,
    Few comments here...
    1) Seems your environment is not setup correctly but that is not the big cause here.....
    2) This one is important, it seems that you installed weblogic using a different account and are trying to run it from a different account.
    So the account with which you are trying to run weblogic does not have proper permission on
    MW_HOME\user_projects\domains\bifoundation_domain\config\fmwconfig\bootstrap\cwallet.sso
    Right click on the file and go in properties ..
    Enable full control,modify,Read and execute,read and write permissions for the user you are trying to start weblogic and apply it.
    if this simple steps doesnt work, please enable more logging by adding "-Djava.security.debug=jpspolicy" to startup option and grab more details.
    Good Luck let me know if this works.

  • Error starting WebLogic Server from Workshop

    I get the following error when trying to start WebLogic server
    from within Workshop. Any ideas? Also, it looks like the sample
    code that came with the first beta is no longer there - is that
    supposed to be the case?
    Build # 2002.0423.3
    Values from Workshop.properties:
    #Thu Jun 13 14:34:08 MDT 2002
    paths.domain=workshop
    paths.serverRoot=localhost
    paths.startCmd=startWebLogic
    defaultJndiDataSource=cgSampleDataSource
    paths.browser=C\:\\Program Files\\Internet Explorer\\IExplore.exe
    paths.httpRoot=http\://localhost\:7001
    paths.rootDirectory=C\:\\bea7.0beta2\\weblogic700\\samples
    paths.stopCmd=stopWebLogic
    recent.lastProject=C\:\\bea7.0beta2\\weblogic700\\samples\\workshop\\applications\\samples
    paths.classPath=C\:\\bea7.0beta2\\jdk131_02\\jre\\lib\\rt.jar;C\:\\bea7.0beta2\\weblogic700\\workshop\\stdlib.jar;C\:\\bea7.0beta2\\weblogic700\\server\\lib\\weblogic.jar
    recent.lastFiles=C\:\\bea7.0beta2\\weblogic700\\samples\\workshop\\applications\\samples\\HelloWorld.jws
    controls.applicationView.enabled=0
    paths.port=7001

    I get the following error when trying to start WebLogic server
    from within Workshop. Any ideas? Also, it looks like the sample
    code that came with the first beta is no longer there - is that
    supposed to be the case?
    Build # 2002.0423.3
    Values from Workshop.properties:
    #Thu Jun 13 14:34:08 MDT 2002
    paths.domain=workshop
    paths.serverRoot=localhost
    paths.startCmd=startWebLogic
    defaultJndiDataSource=cgSampleDataSource
    paths.browser=C\:\\Program Files\\Internet Explorer\\IExplore.exe
    paths.httpRoot=http\://localhost\:7001
    paths.rootDirectory=C\:\\bea7.0beta2\\weblogic700\\samples
    paths.stopCmd=stopWebLogic
    recent.lastProject=C\:\\bea7.0beta2\\weblogic700\\samples\\workshop\\applications\\samples
    paths.classPath=C\:\\bea7.0beta2\\jdk131_02\\jre\\lib\\rt.jar;C\:\\bea7.0beta2\\weblogic700\\workshop\\stdlib.jar;C\:\\bea7.0beta2\\weblogic700\\server\\lib\\weblogic.jar
    recent.lastFiles=C\:\\bea7.0beta2\\weblogic700\\samples\\workshop\\applications\\samples\\HelloWorld.jws
    controls.applicationView.enabled=0
    paths.port=7001

  • Cannot start Weblogic server after installation

    Hi,
    i just installed weblogic workshop 8.1 and i wanted to start creating a simple EJB application. After creating a simple (express) Basic Weblogic Platform Domain, when I create an application ans try to start the server, I get the error listed below. Can anyone let me know what I'm missing in the initial configuration?
    Thanks.
    ####<Sep 23, 2004 11:47:10 PM EDT> <Error> <WLW> <prablp> <cgServer> <main> <<WLS Kernel>> <> <000000> <resourceUnavailable( 08006,2006) NOT IMPLEMENTED!!!>
    ####<Sep 23, 2004 11:47:10 PM EDT> <Error> <WLW> <prablp> <cgServer> <main> <<WLS Kernel>> <> <000000> <resourceUnavailable( 08006,2006) NOT IMPLEMENTED!!!>
    ####<Sep 23, 2004 11:47:10 PM EDT> <Error> <WLW> <prablp> <cgServer> <main> <<WLS Kernel>> <> <000000> <resourceUnavailable( 08006,2006) NOT IMPLEMENTED!!!>
    ####<Sep 23, 2004 11:47:10 PM EDT> <Error> <WLW> <prablp> <cgServer> <main> <<WLS Kernel>> <> <000000> <Error in startup class com.bea.wli.init.WLIDBCreate Method: init:
    com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) COMMIT statement for null null: COMMIT
         at com.bea.wli.init.WLIDBCreate$WLIDataSource.createDBObjects(WLIDBCreate.java:668)
         at com.bea.wli.init.WLIDBCreate.init(WLIDBCreate.java:996)
         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:324)
         at com.bea.wli.init.BPMStartupShutdown.invoke(BPMStartupShutdown.java:410)
         at com.bea.wli.init.BPMStartupShutdown.startup(BPMStartupShutdown.java:275)
         at com.bea.wli.init.BPMStartup.main(BPMStartup.java:23)
         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:324)
         at weblogic.t3.srvr.StartupClassService.invokeMain(StartupClassService.java:229)
         at weblogic.t3.srvr.StartupClassService.invokeClass(StartupClassService.java:160)
         at weblogic.t3.srvr.StartupClassService.access$000(StartupClassService.java:36)
         at weblogic.t3.srvr.StartupClassService$1.run(StartupClassService.java:121)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.t3.srvr.StartupClassService.invokeStartupClass(StartupClassService.java:116)
         at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:88)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:331)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:591)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:569)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:241)
         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:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:731)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:710)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:484)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:985)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:943)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
         at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
         at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.java:7351)
         at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:1304)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:347)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
         at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
         at weblogic.Server.main(Server.java:32)
    >
    ####<Sep 23, 2004 11:47:11 PM EDT> <Debug> <Management> <prablp> <cgServer> <main> <<WLS Kernel>> <> <BEA-141132> <Dynamic invocation while executing action updateDeployments on myWLPDomain:Location=cgServer,Name=cgServer,Type=ServerConfig MBean instance failed. The method updateDeployments with signature [] was invoked with parameters as [].
    weblogic.management.AbortDeploymentException: weblogic.t3.srvr.FatalStartupException: Can't start server due to startup class failure WLI Startup Class - with nested exception:
    [com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) COMMIT statement for null null: COMMIT  ]
         at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:92)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:331)
         at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:591)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:569)
         at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:241)
         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:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:731)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:710)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:484)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:985)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:943)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
         at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
         at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.java:7351)
         at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:1304)
         at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:347)
         at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
         at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
         at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
         at weblogic.Server.main(Server.java:32)
    >
    ####<Sep 23, 2004 11:47:11 PM EDT> <Error> <Deployer> <prablp> <cgServer> <main> <<WLS Kernel>> <> <BEA-149601> <The deployment framework was unable to resume accepting requests.>
    ####<Sep 23, 2004 11:47:11 PM EDT> <Emergency> <WebLogicServer> <prablp> <cgServer> <main> <<WLS Kernel>> <> <BEA-000342> <Unable to initialize the server: [Deployer:149601]The deployment framework was unable to resume accepting requests.weblogic.t3.srvr.FatalStartupException: Can't start server due to startup class failure WLI Startup Class - with nested exception:
    [com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) COMMIT statement for null null: COMMIT  ]>

    Hi,
    I am also getting this error when i am trying to start my weblogic server. I am unable to resolve this. Can somebody please help. I am am using weblogic 8.1 SP3
    JAVA Memory arguments: -Xms256m -Xmx256m -XX:CompileThreshold=8000 -XX:PermSize=32m -XX:MaxPermSize
    =128m
    WLS Start Mode=Development
    CLASSPATH=;C:\bea\WEBLOG~1\server\lib\weblogic_knex_patch.jar;C:\bea\WEBLOG~1\common\lib\log4j.jar;C
    :\bea\WEBLOG~1\server\lib\debugging.jar;C:\bea\WEBLOG~1\server\lib\knex.jar;C:\bea\WEBLOG~1\javelin\
    lib\javelin.jar;C:\bea\WEBLOG~1\server\lib\wlw-lang.jar;C:\bea\JDK142~1\lib\tools.jar;C:\bea\WEBLOG~
    1\server\lib\weblogic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\server\lib\ant\
    ant.jar;C:\bea\JDK142~1\jre\lib\rt.jar;;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\
    bea\WEBLOG~1\server\lib\webserviceclient.jar;C:\bea\WEBLOG~1\server\lib\webserviceclient+ssl.jar;C:\
    bea\WEBLOG~1\server\lib\xbean.jar;C:\bea\WEBLOG~1\server\lib\wlxbean.jar;C:\bea\WEBLOG~1\server\lib\
    xqrl.jar;C:\bea\WEBLOG~1\server\lib\netui\netui-compiler.jar;C:\bea\WEBLOG~1\server\lib\wli.jar;C:\b
    ea\WEBLOG~1\server\lib\fop.jar;C:\bea\WEBLOG~1\integration\adapters\sample\lib\sample-eis.jar;
    PATH=C:\bea\WEBLOG~1\server\bin;C:\bea\JDK142~1\jre\bin;C:\bea\JDK142~1\bin;C:\WINNT\system32;C:\WIN
    NT;C:\PROGRA~1\Serena\CHANGE~1\DIMENS~1\9.1\PROG;C:\WINNT\System32\Wbem;C:\Program Files\Microsoft S
    QL Server\80\Tools\BINN;C:\Program Files\ATI Technologies\ATI Control Panel;P:\DLL;C:\bea\WEBLOG~1\s
    erver\bin\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    === Debugging ===
    This window is necessary for debugging code using WebLogic Workshop
    java version "1.4.2_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    Java HotSpot(TM) Client VM (build 1.4.2_04-b05, mixed mode)
    Starting WLS with line:
    C:\bea\JDK142~1\bin\java -client -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server
    =y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx256m -XX:CompileThreshold=8000 -XX:PermSize=32m -XX
    :MaxPermSize=128m -Xverify:none -ea -da:com.bea... -da:javelin... -da:weblogic... -Dplatform.home=C
    :\bea\WEBLOG~1 -Dwls.home=C:\bea\WEBLOG~1\server -Dwli.home=C:\bea\WEBLOG~1\integration -Dlog4j.con
    figuration=file:C:\bea\WEBLOG~1\common\lib\workshopLogCfg.xml -Dweblogic.management.discover=true -D
    weblogic.ProductionModeEnabled= -Dweblogic.security.SSL.ignoreHostnameVerify=false -Dwlw.iterativeD
    ev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -Dweblogic.Name=cgServer -Djava.securit
    y.policy=C:\bea\WEBLOG~1\server\lib\weblogic.policy weblogic.Server
    <Aug 24, 2006 1:27:44 PM PDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Ja
    va HotSpot(TM) Client VM Version 1.4.2_04-b05 from Sun Microsystems Inc.>
    <Aug 24, 2006 1:27:44 PM PDT> <Info> <Configuration Management> <BEA-150016> <This server is being s
    tarted as the administration server.>
    <Aug 24, 2006 1:27:44 PM PDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP3 Tu
    e Jun 29 23:11:19 PDT 2004 404973
    WebLogic XMLX Module 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic Server 8.1 SP3 Tue Jun 29 23:11:19 PDT 2004 404973
    WebLogic Integration 8.1 SP3 Wed Jun 30 14:05:38 PDT 2004 405464>
    <Aug 24, 2006 1:27:45 PM PDT> <Notice> <Management> <BEA-140005> <Loading domain configuration from
    configuration repository at C:\bea\USER_P~1\domains\DARES1\.\config.xml.>
    <Aug 24, 2006 1:27:50 PM PDT> <Notice> <Log Management> <BEA-170019> <The server log file C:\bea\use
    r_projects\domains\DARES1\cgServer\cgServer.log is opened. All server side log events will be writte
    n to this file.>
    <Aug 24, 2006 1:27:51 PM PDT> <Notice> <Security> <BEA-090082> <Security initializing using security
    realm myrealm.>
    <Aug 24, 2006 1:27:52 PM PDT> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server
    "cgServer" for domain "DARES1">
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( 42000,229) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:05 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,3704) NOT IMPLEMENT
    ED!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <resourceUnavailable( HY000,262) NOT IMPLEMENTE
    D!!!>
    <Aug 24, 2006 1:28:28 PM PDT> <Error> <WLW> <000000> <Error in startup class com.bea.wli.init.WLIDBC
    reate Method: init:
    com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) CREATE statement fo
    r TABLE WLI_USER: CREATE TABLE WLI_USER( ID VARCHAR(250) NOT NULL, EMAIL VARCHAR(250), CONSTRA
    INT PK_WLI_USER PRIMARY KEY(ID))
    at com.bea.wli.init.WLIDBCreate$WLIDataSource.createDBObjects(WLIDBCreate.java:668)
    at com.bea.wli.init.WLIDBCreate.init(WLIDBCreate.java:996)
    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:324)
    at com.bea.wli.init.BPMStartupShutdown.invoke(BPMStartupShutdown.java:410)
    at com.bea.wli.init.BPMStartupShutdown.startup(BPMStartupShutdown.java:275)
    at com.bea.wli.init.BPMStartup.main(BPMStartup.java:23)
    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:324)
    at weblogic.t3.srvr.StartupClassService.invokeMain(StartupClassService.java:229)
    at weblogic.t3.srvr.StartupClassService.invokeClass(StartupClassService.java:160)
    at weblogic.t3.srvr.StartupClassService.access$000(StartupClassService.java:36)
    at weblogic.t3.srvr.StartupClassService$1.run(StartupClassService.java:121)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.t3.srvr.StartupClassService.invokeStartupClass(StartupClassService.java:116)
    at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:88)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:33
    1)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:5
    91)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarg
    et.java:569)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.jav
    a:241)
    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:324)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:731)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:710)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:48
    4)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.j
    ava:985)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:943)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
    at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.jav
    a:7351)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java
    :1304)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:347)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerS
    erverLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    >
    <Aug 24, 2006 1:33:02 PM PDT> <Error> <Deployer> <BEA-149601> <The deployment framework was unable t
    o resume accepting requests.>
    <Aug 24, 2006 1:33:03 PM PDT> <Emergency> <WebLogicServer> <BEA-000342> <Unable to initialize the se
    rver: [Deployer:149601]The deployment framework was unable to resume accepting requests.weblogic.t3.
    srvr.FatalStartupException: Can't start server due to startup class failure WLI Startup Class - with
    nested exception:
    [com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) CREATE statement f
    or TABLE WLI_USER: CREATE TABLE WLI_USER( ID    VARCHAR(250)    NOT NULL, EMAIL VARCHAR(250), CONSTR
    AINT PK_WLI_USER PRIMARY KEY(ID)) ]>
    The WebLogic Server did not start up properly.
    weblogic.management.AbortDeploymentException: weblogic.t3.srvr.FatalStartupException: Can't start se
    rver due to startup class failure WLI Startup Class - with nested exception:
    [com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) CREATE statement f
    or TABLE WLI_USER: CREATE TABLE WLI_USER( ID    VARCHAR(250)    NOT NULL, EMAIL VARCHAR(250), CONSTR
    AINT PK_WLI_USER PRIMARY KEY(ID)) ]
    at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:92)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:33
    1)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:5
    91)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarg
    et.java:569)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.jav
    a:241)
    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:324)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:731)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:710)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:48
    4)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.j
    ava:985)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:943)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
    at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.jav
    a:7351)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java
    :1304)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:347)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerS
    erverLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    Reason: [Deployer:149601]The deployment framework was unable to resume accepting requests.weblogic.t
    3.srvr.FatalStartupException: Can't start server due to startup class failure WLI Startup Class - wi
    th nested exception:
    [com.bea.wli.init.WLIDBCreateException: Could not execute (possibly among others) CREATE statement f
    or TABLE WLI_USER: CREATE TABLE WLI_USER( ID    VARCHAR(250)    NOT NULL, EMAIL VARCHAR(250), CONSTR
    AINT PK_WLI_USER PRIMARY KEY(ID)) ]
    Stopping the Weblogic Workshop debugger...

  • How to start weblogic server with non system user

    I want to start wls6.1 as an nt service with different user name other than
    system.
    Thanks
    Madhu

    I have installed weblogic server as an nt service. In install Nt service
    cmd, if I make any change in the script, I have to uninstall and install it
    again. I do not know where to specify the weblogic.management.username =(Non
    system user)
    I have created a user name in NT server and added them to Administrator
    group. I have also modified in file realm propertes i.e to boot and shutdown
    the non system user.
    I have to start weblogic server as a non system user.
    Thanks
    Madhu
    I think I replied to some of the questions when I found out the answers.
    Only thing I did was hit reply, instead of reply group. Might it went to
    persons e-mail. That might be the reason, the answers I posted is not found
    in the newsgroup
    Thanks
    freelance_code_inspector <[email protected]> wrote in message
    news:[email protected]..
    "m holur" <[email protected]> wrote in message
    news:<3bfbafce$[email protected]>...
    I want to start wls6.1 as an nt service with different user name otherthan
    system.Madhu,
    Specify weblogic.management.username={Non system user} in your -D
    option. BTW, just curious, have observed that u have been posting a
    lot of weblogic questions lately, did u find out the answers? If so, u
    should share it back to this community.
    Regards
    drit
    Freelance Java Developer/Code Inspector
    http://www.geocities.com/doc_i_t/CodeInspectionService.html

  • I am getting an AccessControlException when I start weblogic server 5.1

    hi folks,
    I am getting an AccessControlException when I start weblogic server 5.1,
    this is the exact message
    Wed Aug 23 10:04:34 PDT 2000:<I> <WebLogicServer> Invoking T3StartupDef
    LocaleSe
    tup com.flutter.startup.LocaleSetup with {}
    Wed Aug 23 10:04:35 PDT 2000:<E> <WebLogicServer> Failed to invoke
    startup class
    LocaleSetup=com.flutter.startup.LocaleSetup
    java.security.AccessControlException: access denied
    (java.util.PropertyPermissio
    n user.language write)
    at
    java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java, Compiled Code)
    at
    java.security.AccessController.checkPermission(AccessController.java,
    Compiled Code)
    at
    java.lang.SecurityManager.checkPermission(SecurityManager.java, Compi
    led Code)
    at java.util.Locale.setDefault(Locale.java:340)
    at com.flutter.startup.LocaleSetup.startup(LocaleSetup.java:37)
    at
    weblogic.t3.srvr.StartupThread.runStartup(StartupThread.java:182)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java,
    Compiled Co
    de)
    at
    weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    I have this line in my weblogic.properties file
    weblogic.system.startupClass.LocaleSetup=com.flutter.startup.LocaleSetup
    please help me with this,
    thank you
    sudhir

    This looks like a policy file problem. You have run into one of the worst
    design decisions in Java 2:
    http://www.weblogic.com/docs51/techsupport/java12.html#security
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "sg" <[email protected]> wrote in message
    news:[email protected]..
    hi folks,
    I am getting an AccessControlException when I start weblogic server 5.1,
    this is the exact message
    Wed Aug 23 10:04:34 PDT 2000:<I> <WebLogicServer> Invoking T3StartupDef
    LocaleSe
    tup com.flutter.startup.LocaleSetup with {}
    Wed Aug 23 10:04:35 PDT 2000:<E> <WebLogicServer> Failed to invoke
    startup class
    LocaleSetup=com.flutter.startup.LocaleSetup
    java.security.AccessControlException: access denied
    (java.util.PropertyPermissio
    n user.language write)
    at
    java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java, Compiled Code)
    at
    java.security.AccessController.checkPermission(AccessController.java,
    Compiled Code)
    at
    java.lang.SecurityManager.checkPermission(SecurityManager.java, Compi
    led Code)
    at java.util.Locale.setDefault(Locale.java:340)
    at com.flutter.startup.LocaleSetup.startup(LocaleSetup.java:37)
    at
    weblogic.t3.srvr.StartupThread.runStartup(StartupThread.java:182)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java,
    Compiled Co
    de)
    at
    weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java
    :62)
    I have this line in my weblogic.properties file
    weblogic.system.startupClass.LocaleSetup=com.flutter.startup.LocaleSetup
    please help me with this,
    thank you
    sudhir

  • Not able start weblogic server

    Hi ,
    I downloaded weblogic server 9.2 and installed in production with sdk. everything installed fine and also created domain. I have managed server which was created after domain. Now If start weblogic script , it says the following error code . Not sure why it is so, can you any one help me out
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Production
    CLASSPATH=:/home/weblogictest/bea/patch_weblogic923/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/home/weblogictest/bea/jrockit_150_12/lib/tools.jar:/home/weblogictest/bea/weblogic92/server/lib/weblogic_sp.jar:/home/weblogictest/bea/weblogic92/server/lib/weblogic.jar:/home/weblogictest/bea/weblogic92/server/lib/webservices.jar::/home/weblogictest/bea/weblogic92/common/eval/pointbase/lib/pbclient51.jar:/home/weblogictest/bea/weblogic92/server/lib/xqrl.jar::
    PATH=/home/weblogictest/bea/weblogic92/server/bin:/home/weblogictest/bea/jrockit_150_12/jre/bin:/home/weblogictest/bea/jrockit_150_12/bin:/home/weblogictest/bea/jdk150_12/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/weblogictest/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    BEA JRockit(R) (build R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-linux-ia32, compiled mode)
    Starting WLS with line:
    /home/weblogictest/bea/jrockit_150_12/bin/java -jrockit -Xms256m -Xmx512m -da -Dplatform.home=/home/weblogictest/bea/weblogic92 -Dwls.home=/home/weblogictest/bea/weblogic92/server -Dwli.home=/home/weblogictest/bea/weblogic92/integration -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/home/weblogictest/bea/patch_weblogic923/profiles/default/sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=/home/weblogictest/bea/weblogic92/server/lib/weblogic.policy weblogic.Server
    <Apr 12, 2010 11:25:45 AM PDT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar:/home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n_common.jar:/home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n_system.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_common.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_system.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/wsrp-common.jar>
    <Apr 12, 2010 11:25:46 AM PDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-linux-ia32 from BEA Systems, Inc.>
    <Apr 12, 2010 11:25:48 AM PDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.2 MP3 Mon Mar 10 08:28:41 EDT 2008 1096261 >
    <Apr 12, 2010 11:25:50 AM PDT> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:spnas1
    -bash: spnas1: command not found
    [4]+ Stopped ./startWebLogic.sh
    Thanks

    still i am getting same issue even after created boot.properties under the specified directory
    /home/weblogictest/bea/user_projects/domains/testdomain/servers/AdminServer - testdomain is my domain name and Adminserver is the server name
    /home/weblogictest/bea/jrockit_150_12/bin/java -jrockit -Xms256m -Xmx512m -da -Dplatform.home=/home/weblogictest/bea/weblogic92 -Dwls.home=/home/weblogictest/bea/weblogic92/server -Dwli.home=/home/weblogictest/bea/weblogic92/integration -Dweblogic.management.discover=true -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/home/weblogictest/bea/patch_weblogic923/profiles/default/sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=/home/weblogictest/bea/weblogic92/server/lib/weblogic.policy weblogic.Server
    <Apr 13, 2010 11:33:30 AM PDT> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n-schemas.jar:/home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n_common.jar:/home/weblogictest/bea/weblogic92/platform/lib/p13n/p13n_system.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_common.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_schemas.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/netuix_system.jar:/home/weblogictest/bea/weblogic92/platform/lib/wlp/wsrp-common.jar>
    <Apr 13, 2010 11:33:31 AM PDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-linux-ia32 from BEA Systems, Inc.>
    <Apr 13, 2010 11:33:33 AM PDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 9.2 MP3 Mon Mar 10 08:28:41 EDT 2008 1096261 >
    <Apr 13, 2010 11:33:35 AM PDT> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:spnas1
    -bash: spnas1: command not found
    [2]+ Stopped ./startWebLogic.sh

  • Error while starting weblogic server

    Hi, I am getting following error while starting weblogic server
    Unexpected Signal : 11 occurred at PC=0x40170bc5 Function name=fill_in_stack_trace__19java_lang_ThrowableG6HandleP6Thread
    Library=/bea/jdk131/jre/lib/i386/client/libjvm.so
    Current Java thread: at java.lang.Throwable.fillInStackTrace(Native Method) at
    java.lang.Throwable.<init>(Throwable.java:78) at java.lang.Error.<init>(Error.java:37)
    at java.lang.LinkageError.<init>(LinkageError.java:29) at java.lang.IncompatibleClassChangeError.<init>(IncompatibleClassChangeError.java:29)
    at java.lang.AbstractMethodError.<init>(AbstractMethodError.java:30)
    Environment : Weblogic 6.0 Sp2 on Linux Red hat 7.1
    jdk 1.31
    TIA
    Ashwani

    Hi,
    1)Could you please try logging into sqlplus using using the below command :-
        sqlplus "/ as sysdba"
    2)Execute the below command to check if the password in expired :-
      select username, account_status, expiry_date, where username='MDS username';
    3)Change the password if the password has been expired by following the below command :-
       alter user <user> identified by <password>;
    4)Once the above steps are followed please login into the Weblogic Admin Console and follow the below steps:-
        + Go to DataSources ---> Select the MDS schema ----> change the password which was given in step no.3
        + Restart the Weblogic once again.
    5)Lets us know the result.
    Regards,
    Prakash.

Maybe you are looking for

  • My husband and I share an ITunes account. He gets my apps and I get his. How can this be separated. I am also getting his contacts. My Icloud is turned off!

    My husband and I share an I tunes account. This was never a problem until I Cloud was born. I have turned off the Icloud on my I phone4 all together. He has Iphone 4S and is getting all the apps I purchase and I am getting his contacts. How can this

  • ITunes Seem to Have Suddenly Stopped Communicating With the CD/DVD Burner

    Hello, I wonder if anybody can help - my itunes application seems to have suddenly stopped communicating with my laptop's cd/dvd burner (Generic Name (E: H - T-S D D A S - 20N ATA Device)). About 2 years ago, I have experienced a similar problem, but

  • Remove first line in the XML Document

    Hi Friends, In my File to File scenario when ever new mesg is appending to file at receiver side,it should remove <?xml version="1.0" encoding="ISO-8859-1"?>  tag from the XML Document.This means <?xml version="1.0" encoding="ISO-8859-1"?> tag should

  • Apple TV and Denon AVR-2800

    I am a total novice at setting up electronics. I think I know the answer but want to be sure...my Denon receiver is circa 1999 and has no HDMI inputs, just an optical digital audio port. This means Apple TV can't be setip to this receiver, correct?

  • New to iMac

    Okay, so I have an iPhone, but that's really my only venture into Apple thus far. In dire need of a new computer and thought I'd opt for iMac this time. As such, a couple of newbie questions if you don't mind: a) Is it true that I don't need virus so