|
Starting Weblogic Server using Windows Service |
|
|
|
Written by <a href="http://www.mydocumentum.net/profile/userprofile/jazar">James Azarja</a>
|
|
Monday, 06 April 2009 15:11 |
|
Copyright 2008. All Rights Reserved.
To start a Weblogic server using Windows service, simply create a batch file to set environment variables and call the Weblogic service install script.
1 2 3 4 5 6 7 8 9 10 11 12 13
|
echo off SETLOCAL set DOMAIN_NAME=documentum set USERDOMAIN_HOME=C:\bea\user_projects\domains\documentum set SERVER_NAME=taskspace set PRODUCTION_MODE=false set MEM_ARGS=-Xms512m -Xmx1024m call "C:\bea\wlserver_10.3\server\bin\installSvc.cmd" ENDLOCAL
|
Weblogic service installer script will create a new Windows service with format beasvc_[domain]_[server]
Trackback(0)
 |