hello
i have check service,there is not weblogic in it,then i open dos windows to start weblogic,output as follow:
=================================================
Microsoft Windows 2000 [Version 5.00.2195]
(C) Copyright 1985-2000 Microsoft Corp.
F:\Documents and Settings\Administrator>e:
E:\>cd E:\wlserver6.1\config\mydomain\
E:\wlserver6.1\config\mydomain>startWebLogic.cmd
E:\wlserver6.1>set PATH=.\bin
E:\wlserver6.1>set CLASSPATH=.;F:\jdk1.3.0_01\lib\tools.jar;E:\wlserver6.1\lib\weblogic.jar
E:\wlserver6.1>echo off
***************************************************
* To start WebLogic Server, use the password *
* assigned to the system user. The system *
* username and password must also be used to *
* access the WebLogic Server console from a web *
* browser. *
***************************************************
E:\wlserver6.1>"F:\jdk1.3.0_01\bin\java" -hotspot -ms64m -mx64m -classpath ".;F:\jdk1.3.0_01\lib\tools.jar;E:\wlserver6.1\lib\weblogic.jar"
-Dweblogic.Domain=mydomain -Dweblogic.Name=myserver "-Dbea.home=e:\" -Dweblogic.management.password= -Dweblogic.ProductionModeEnabled=true "
-Djava.security.policy==e:\wlserver6.1/lib/weblogic.policy" weblogic.Server
Usage: java [-options] class [args...]
(to execute a class)
or java -jar [-options] jarfile [args...]
(to execute a jar file)
where options include:
-cp -classpath <directories and zip/jar files separated by ;>
set search path for application classes and resources
-D<name>=<value>
set a system property
-verbose[:class|gc|jni]
enable verbose output
-version print product version and exit
-showversion print product version and continue
-? -help print this help message
-X print help on non-standard options
E:\wlserver6.1>goto finish
E:\wlserver6.1>cd config\mydomain
E:\wlserver6.1\config\mydomain>ENDLOCAL
E:\wlserver6.1\config\mydomain>
==================================================
it don't seem like that weblogic has been started,
after that i start the default console from browser "http://127.0.0.1:7001/console",it don't work,my "startWeblogi.cmd" as follow:
+++++++++++++++++++++++++++++++++++++++++++++++++
@echo off
@rem This script can be used to start WebLogic Server. This script ensures that
@rem the server is started using the config.xml file found in this directory and
@rem that the CLASSPATH is set correctly. This script contains the following variables:
@rem
@rem JAVA_HOME - Determines the version of Java used to start
@rem WebLogic Server. This variable must point to the
@rem root directory of a JDK installation and will be set
@rem for you by the WebLogic Server installer. Note that
@rem this script uses the hotspot VM to run WebLogic Server.
@rem If you choose to use a JDK other than the one
@rem included in the disribution, make sure that the JDK
@rem includes the hotspot VM. See the WebLogic platform support
@rem page (
http://e-docs.bea.com/wls/platforms/index.html)
@rem for an up-to-date list of supported JVMs on Windows NT.
@rem
@rem When setting these variables below, please use short file names (8.3).
@rem To display short (MS-DOS) filenames, use "dir /x". File names with
@rem spaces will break this script.
@rem
@rem jDriver for Oracle users: This script assumes that native libraries
@rem required for jDriver for Oracle have been installed in the proper
@rem location and that your system PATH variable has been set appropriately.
@rem For additional information, refer to Installing and Setting up WebLogic
@rem Server (
http://e-docs.bea.com/wls/docs61/install/index.html).
SETLOCAL
cd ..\..
@rem Set user-defined variables.
set JAVA_HOME=F:\jdk1.3.0_01
@rem Check that script is being run from the appropriate directory
if not exist lib\weblogic.jar goto wrongplace
goto checkJDK
:wrongplace
echo startWebLogic.cmd must be run from the config\mydomain directory. 1>&2
goto finish
:checkJDK
if exist "%JAVA_HOME%/bin/javac.exe" goto runWebLogic
echo.
echo Javac wasn't found in directory %JAVA_HOME%/bin.
echo Please edit the startWebLogic.cmd script so that the JAVA_HOME
echo variable points to the root directory of your JDK installation.
goto finish
:runWebLogic
echo on
set PATH=.\bin
set CLASSPATH=.;F:\jdk1.3.0_01\lib\tools.jar;E:\wlserver6.1\lib\weblogic.jar
echo off
echo.
echo ***************************************************
echo * To start WebLogic Server, use the password *
echo * assigned to the system user. The system *
echo * username and password must also be used to *
echo * access the WebLogic Server console from a web *
echo * browser. *
echo ***************************************************
@rem Set WLS_PW equal to your system password for no password prompt server startup.
set WLS_PW=
@rem Set Production Mode. When set to true, the server starts up in
@rem production mode. When set to false, the server starts up in development
@rem mode. If not set, it is defaulted to false.
set STARTMODE=true
echo on
"%JAVA_HOME%\bin\java" -hotspot -ms64m -mx64m -classpath "%CLASSPATH%" -Dweblogic.Domain=mydomain -Dweblogic.Name=myserver "-Dbea.home=e:\" -Dweblogic.management.password=%WLS_PW% -Dweblogic.ProductionModeEnabled=%STARTMODE% "-Djava.security.policy==e:\wlserver6.1/lib/weblogic.policy" weblogic.Server
goto finish
:finish
cd config\mydomain
ENDLOCAL
+++++++++++++++++++++++++++++++++++++++++++++++++
any wrong?thanks