存储 频道

用 VxVM 创建存储基本结构(5)

【IT168 技术文档】

    一、weblogic域的定义

    一般通过配置向导就可以轻松创建,并配置好数据库的连接池等。假如,我现在通过向导配置了一个域:C:\bea\user_projects\domains\topicms_ora_wl9,同weblogic 8.1.x一样,我们同样会在这个文件夹里面有找到连个文件startWebLogic.cmd(weblogic应用启动文件),但是“兔子已经不再窝里窝了”,哈哈,这个配置文件是个大忽悠,不用理他!真正的环境配置文件在bin目录下的setDomainEnv.cmd里面配置。后面会重点讲解如何配置它的。

    二、weblogic数据源

    当通过向导配置了域之后,一般还需要配置数据源。还需要进入控制台http://localhost:7001/console去配置数据源和别的一些配置项。配置过程和8.x差不多,在9下也有个config.xml文件,但是其含义已经不再是8那么理解了,通过手动改config.xml文件一般没有作用,一切的配置还是要通过控制台。这是weblogic9更傻瓜或者对我来说更傻X的地方!所以,配置好了后,就别乱改config.xml了,已经没有意义了。

    三、配置setDomainEnv.cmd

    weblogic9留下给用户可以手动修改的文件,最主要的就是setDomainEnv.cmd这个了,从这个文件名看看就就知道这个是干什么活的了,呵呵,set(设置)Domain(域)Env(环境),其实就是设置你应用的运行环境,这里包括对第三方包的配置。调试端口的配置等等。我给出我配置好的例子,并用高亮颜色区别开来,一看你就直到怎么搞了。

---------------------------

@ECHO OFF

@REM WARNING: This file is created by the Configuration Wizard.
@REM Any changes to this script may be lost when adding extensions to this configuration.

@REM *************************************************************************
@REM This script is used to setup the needed environment to be able to start Weblogic Server in this domain.
@REM
@REM This script initializes the following variables before calling commEnv to set other variables:
@REM
@REM WL_HOME - The BEA home directory of your WebLogic installation.
@REM JAVA_VM - The desired Java VM to use. You can set this environment variable before calling
@REM this script to switch between Sun or BEA or just have the default be set.
@REM JAVA_HOME - Location of the version of Java used to start WebLogic
@REM Server. Depends directly on which JAVA_VM value is set by default or by the environment.
@REM USER_MEM_ARGS - The variable to override the standard memory arguments
@REM passed to java.
@REM PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
@REM DOMAIN_PRODUCTION_MODE
@REM - The variable that determines whether the workshop related settings like the debugger,
@REM testconsole or iterativedev should be enabled. ONLY settable using the
@REM command-line parameter named production
@REM NOTE: Specifying the production command-line param will force
@REM the server to start in production mode.
@REM
@REM Other variables used in this script include:
@REM SERVER_NAME - Name of the weblogic server.
@REM JAVA_OPTIONS - Java command-line options for running the server. (These
@REM will be tagged on to the end of the JAVA_VM and
@REM MEM_ARGS)
@REM
@REM For additional information, refer to the WebLogic Server Administration
@REM Console Online Help(http://e-docs.bea.com/wls/docs91/ConsoleHelp/startstop.html).
@REM *************************************************************************


set WL_HOME=C:\bea\weblogic91
for %%i in ("%WL_HOME%") do set WL_HOME=%%~fsi

set BEA_JAVA_HOME=C:\bea\jrockit90_150_04

set SUN_JAVA_HOME=C:\jdk1.5.0_05

if "%JAVA_VENDOR%"=="BEA" (
set JAVA_HOME=%BEA_JAVA_HOME%
) else (
if "%JAVA_VENDOR%"=="Sun" (
set JAVA_HOME=%SUN_JAVA_HOME%
) else (
set JAVA_VENDOR=Sun
set JAVA_HOME=C:\bea\jdk150_04
)
)

@REM We need to reset the value of JAVA_HOME to get it shortened AND
@REM we can not shorten it above because immediate variable expansion will blank it

set JAVA_HOME=%JAVA_HOME%
for %%i in ("%JAVA_HOME%") do set JAVA_HOME=%%~fsi

set SAMPLES_HOME=%WL_HOME%\samples

set DOMAIN_HOME=C:\bea\user_projects\domains\topicms_ora_wl9
for %%i in ("%DOMAIN_HOME%") do set DOMAIN_HOME=%%~fsi

set LONG_DOMAIN_HOME=C:\bea\user_projects\domains\topicms_ora_wl9

if "%DEBUG_PORT%"=="" (
set DEBUG_PORT=8453
)

if "%SERVER_NAME%"=="" (
set SERVER_NAME=AdminServer
)

set POINTBASE_FLAG=false

set instrumentFlag=

set PRODUCTION_MODE=

set doExitFlag=false
set verboseLoggingFlag=false
for %%p in (%*) do call :SET_PARAM %%p
GOTO :CMD_LINE_DONE
:SET_PARAM
for %%q in (%1) do set noQuotesParam=%%~q
if /i "%noQuotesParam%" == "nodebug" (
set debugFlag=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "production" (
set DOMAIN_PRODUCTION_MODE=true
GOTO :EOF
)
if /i "%noQuotesParam%" == "notestconsole" (
set testConsoleFlag=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "noiterativedev" (
set iterativeDevFlag=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "noLogErrorsToConsole" (
set logErrorsToConsoleFlag=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "nopointbase" (
set POINTBASE_FLAG=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "doExit" (
set doExitFlag=true
GOTO :EOF
)
if /i "%noQuotesParam%" == "noExit" (
set doExitFlag=false
GOTO :EOF
)
if /i "%noQuotesParam%" == "verbose" (
set verboseLoggingFlag=true
GOTO :EOF
)
if /i "%noQuotesParam%" == "instrumentAll" (
set instrumentFlag=all
GOTO :EOF
)
if /i "%noQuotesParam%" == "instrumentApps" (
set instrumentFlag=apps
GOTO :EOF
) else (
set PROXY_SETTINGS=%PROXY_SETTINGS% %1
)
GOTO :EOF
:CMD_LINE_DONE


if NOT "%instrumentFlag%"=="" (
set instrumentFlag=-Dweblogic.diagnostics.instrumentation=%instrumentFlag%
)

set MEM_DEV_ARGS=

if "%DOMAIN_PRODUCTION_MODE%"=="true" (
set PRODUCTION_MODE=%DOMAIN_PRODUCTION_MODE%
)

if "%PRODUCTION_MODE%"=="true" (
set debugFlag=false
set testConsoleFlag=false
set iterativeDevFlag=false
)

0
相关文章