1、编辑installSvc.cmd。
wls9需要做如下修改:
找到以下语句,
set WL_HOME=D:/bea/weblogic92
call "%WL_HOME%/common/bin/commEnv.cmd"
在其后加上:
@rem******************************************************************
@rem******************************************************************
set DOMAIN_NAME=base_domain
set SERVER_NAME=AdminServer
set USERDOMAIN_HOME=D:/bea/user_projects/domains/base_domain
set WLS_USER=username
set WLS_PW=password
@rem******************************************************************
@rem******************************************************************
wls10需要做如下修改:
找到以下语句:
set WL_HOME=D:/bea/wlserver_10.0
call "%WL_HOME%/common/bin/commEnv.cmd"
在其后加上:
@rem *************************************************************************
@rem *************************************************************************
@rem *************************************************************************
set DOMAIN_NAME=base_domain
set SERVER_NAME=AdminServer
set USERDOMAIN_HOME=d:/bea/user_projects/domains/base_domain
set WLS_USER=username
set WLS_PW=password
@rem *************************************************************************
@rem *************************************************************************
可以把用户名,密码自动加载进系统:
在如下位置/bea/user_projects/domains/base_domain/servers/AdminServer下面新建一个名为 security 的文件夹
在里面建一个名为 boot.properties 文件,加入以下2行:
username=username@登陆weblogic的用户名
password=password@登陆weblogic的密码
系统启动后会自动加载这个文件里面的内容。可以不需要输入用户名密码。
注意:/bea/user_projects/domains/base_domain/bin/setDomainEnv.cmd这个里面的配置对于系统启动项里面启动的无效,也就是说在setDomainEnv.cmd里面设置的参数,在把系统做成服务后,并不是按照setDomainEnv.cmd里面的参数进行配置的,需要把这些参数在commEnv.cmd里面重新设置一遍。
如果要去掉系统服务的话需要找到uninstallSvc.cmd(与installSvc.cmd在同一个目录中)
在 set WL_HOME=…… 的下面添加以下两句:
set DOMAIN_NAME=base_domain
set SERVER_NAME=AdminServer
可以参考:http://download.oracle.com/docs/cd/E13222_01/wls/docs81/adminguide/winservice.html#1190977
Setting Up a WebLogic Server Instance as a Windows Service
If you want a WebLogic Server instance to start automatically when you boot a Windows host computer, you can set up the server as a Windows service.
For each server instance that you set up as a Windows service, WebLogic Server creates a key in the Windows Registry under HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
. The registry entry contains such information as the name of the server and other startup arguments.
When you start the Windows host, the Windows Service Control Manager (SCM), which is part of the Windows operating system, uses the information in the Windows Registry key to invoke the weblogic.Server
main class. The Windows SCM cannot be configured to use a Node Manager to start Managed Servers, and therefore the Node Manager's monitoring and automatic restart features cannot be used for servers that run as a Windows service.
The following tasks set up and manage WebLogic Server instances that run as Windows services:
- Setting Up a Windows Service: Main Steps
- Verifying the Setup
- Using the Control Panel to Stop or Restart a Server Instance
- Removing a Server as a Windows Service
- Changing Startup Credentials for a Server Set Up as a Windows Service
Setting Up a Windows Service: Main Steps
-
- If the Configuration Wizard prompts you to install a server as a Windows service, choose Yes.
Some of the domain templates in the Configuration Wizard prompt you to set up a server as a Windows service. If you choose Yes, the wizard installs the server as a Windows service. If you are using the wizard to create an Administration Server and Managed Servers, the wizard creates a Windows service only for the Administration Server. The wizard also creates a server-specific script that you can modify and use to install other servers as Windows services. The script is named
domain-name
/installService.cmd
, wheredomain-name
is the name of the domain that you created. - Create a script that sets values for server-specific variables and then calls a WebLogic Server master script. For more information, refer to Creating a Server-Specific Script.
- If the Configuration Wizard prompts you to install a server as a Windows service, choose Yes.
-
- If you are installing a Managed Server as a Windows service, add a variable to the server specific script that specifies the location of the domain's Administration Server. For more information, refer to Configuring a Connection to the Administration Server.
- If you set up both an Administration Server and a Managed Server to run as Windows services on the same computer, modify the WebLogic Server master script so that the Managed Server starts only after the Administration Server finishes its startup cycle. For more information, refer to Requiring Managed Servers to Start After Administration Servers.
- If you want a server instance to shut down gracefully when you use the Windows Control Panel to stop the Windows service, create a Java class and modify the master script so that the Windows SCM will invoke the class. For more information, refer to Enabling Graceful Shutdowns from the Windows Control Panel.
- If you want to see the messages that a server instance prints to standard out and standard error (including stack traces and thread dumps), redirect standard out and standard error to a file. For more information, refer to Redirecting Standard Out and Standard Error to a File.
- If you have created additional Java classes that you want the WebLogic Server instance to invoke, add them to the server's classpath. For more information, refer to Adding Classes to the Classpath.
- Run the server-specific script. For more information, refer to Run the Server-Specific Script.
Creating a Server-Specific Script
If the Configuration Wizard did not already create a server-specific script for your domain, you can create one. The script that you create must set values for variables that identify the name of the server instance and other server-specific information. Then it must call a master script, WL_HOME/server/bin/installSvc.cmd
, where WL_HOME
is the directory in which you installed WebLogic Server. The master scripts invokes the beasvc
utility, which adds a key to the Windows Registry.
Note: For more information about beasvc
, enter the following command at a command prompt: WL_HOME
/server/bin/beasvc -help
, where WL_HOME
is the directory in which you installed WebLogic Server.
To see an example of a server-specific script, refer to Listing 6-1.
To create a server-specific script:
-
SETLOCAL
set DOMAIN_NAME=
domain-name
set USERDOMAIN_HOME=
absolute-pathname
where
absolute-pathname
is the absolute pathname of the Administration Server's root directory (the directory that contains the domain's configuration file). For more information about the root directories for servers, refer to A Server's Root Directory.- set SERVER_NAME=
server-name
set WLS_USER=
username
set WLS_PW=
password
where
username
is the name of an existing user with privileges to start a server instance andpassword
is the user's password. Thebeasvc
utility encrypts the login credentials and stores them in the Windows registry.This is one of two possible methods for avoiding the username/password prompt when a server instance starts. The disadvantage to this method is that changing the username or password for the server instance requires you to delete the Windows service and set up a new one with the new username and password. Instead of this method, you can use a boot identity file. With a boot identity file, you can change the login credentials without needing to modify the Windows service. For more information, refer to "Boot Identity Files" in the Administration Console Online Help.
set PRODUCTION_MODE=[
true
]
When the
PRODUCTION_MODE
variable is set totrue
, the server instance starts in production mode. When not specified, or when set tofalse
, the server starts in development mode. For more information about development mode and production mode, refer to Creating and Configuring Domains Using the Configuration Wizard.set JAVA_OPTIONS=
java-options
where
java-options
is one or more Java arguments that you want to pass to the Java Virtual Machine (JVM). Separate multiple arguments with a space. For a list of Java options that are specific to WebLogic Server, refer to "weblogic.Server Command-Line Reference" in the WebLogic Server Command Line Reference. The JVM that you use supports additional options and are documented by the JVM vendor.set JAVA_VM=-
JVM-mode
where
JVM-mode
is a text string that indicates the mode in which you want the JVM to run. The values that you supply depend on the JVM that you are using. For example, the Sun JDK can run a-hotspot
,-client
or-server
JVM. If you use the Sun JDK 1.3.1, the default value is-hotspot
. If you use the Sun JDK 1.4.1, the default value is-client
. If you use the JRockit JVM, the default value is-jrockit
. For more information, refer to " Starting and Configuring the JRockit JVM" in the JRockit User Guide.set MEM_ARGS=[-Xms
Number
m] [-Xmx
Number
m]
Note: To specify a non-default JVM heap size, set the MEM_ARGS
values in WL_HOME
/common/bin/commEnv.cmd
; however, this change affects all the domains under the same WL_HOME
.
Configuring a Connection to the Administration Server
If you want to install a Managed Server as a Windows service, you must include a variable that specifies the location of the domain's Administration Server. The Managed Server must contact the Administration Server to retrieve its configuration data.
To configure a connection to the Administration Server:
-
If you are modifying a script that the Configuration Wizard created, BEA recommends that you make a copy of
domain-name
/installService.cmd
(wheredomain-name
is the name of the domain that you created) and open the copy.For more information, refer to "Configuring a Connection to the Administration Server" in the Administration Console Online Help.
For an example, refer to the bold text in Listing 6-1.
Listing 6-1 Example Script for Setting Up a Server as a Windows Service
echo off
SETLOCAL
set DOMAIN_NAME=myWLSdomain
set USERDOMAIN_HOME=d:/bea/user_projects/domains/myWLSdomain
set SERVER_NAME=myWLSserver
set PRODUCTION_MODE=true
set
JAVA_OPTIONS=-Dweblogic.Stdout="
d:/bea/user_projects/domains/myWLSdomain/
stdout.txt" -Dweblogic.Stderr="
d:/bea/user_projects/domains/myWLSdomain/
stderr.txt"
set ADMIN_URL=http://adminserver:7501
set MEM_ARGS=-Xms40m -Xmx250m
call "d:/bea/weblogic81/server/bin/installSvc.cmd"
ENDLOCAL
Requiring Managed Servers to Start After Administration Servers
If you set up both an Administration Server and a Managed Server to run as Windows services on the same computer, you can specify that the Managed Server starts only after the Administration Server.
To require a Managed Server to start after the Administration Server Windows service:
-
- If you have already installed the Administration Server as a Windows service, remove the service. For more information, refer to Removing a Server as a Windows Service.
-
This specifies the number of milliseconds to wait before the Windows SCM changes the service status from
SERVER_START_PENDING
toSTARTED
. -
For example, if your Administration Server requires 2 minutes to complete its startup cycle and begin listening for requests, then specify
-delay=120000
. When you boot the Windows host computer, the Windows SCM reports a status ofSERVER_START_PENDING
for 2 minutes. Then it changes the status toSTARTED
.The modified
beasvc
invocation for the Administration Server will resemble the following:"%WL_HOME%/server/bin/beasvc" -install
-svcname:"%DOMAIN_NAME%_%SERVER_NAME%"-delay:120000
-javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%"
-extrapath:"%WL_HOME%/server/bin" -password:"%WLS_PW%"
-cmdline:%CMDLINE%For more information about
beasvc
, enter the following command at a command prompt:WL_HOME
/server/bin/beasvc -help
, whereWL_HOME
is the directory in which you installed WebLogic Server.
-
With this option, the Windows SCM will wait for the Administration Server Windows service to report a status of
STARTED
before it starts the Managed Server Windows service.For example, the modified
beasvc
invocation for the Managed Server will resemble the following:"%WL_HOME%/server/bin/beasvc" -install
-svcname:"%DOMAIN_NAME%_%SERVER_NAME%"-depend:"myDomain_myAdminServer"
-javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%"
-extrapath:"%WL_HOME%/server/bin" -password:"%WLS_PW%"
-cmdline:%CMDLINE%You can also add the
-delay
:delay_milliseconds
option to a Managed Server Windows service if you want to configure when the Windows SCM reports a status ofSTARTED
for the service.
Enabling Graceful Shutdowns from the Windows Control Panel
By default, if you use the Windows Control Panel to stop a server instance, the Windows Service Control Manager (SCM) kills the server's Java Virtual Machine (JVM). If you kill the JVM, the server immediately stops all processing. Any session data is lost. If you kill the JVM for an Administration Server while the server is writing to the config.xml
file, you can corrupt the config.xml
file.
To enable graceful shutdowns from the Windows Control Panel:
-
-
For example if you archived your class in a file named
c:/myJar
, the modified statement will be as follows:set
CLASSPATH=%JAVA_HOME%/lib/tools.jar;%WL_HOME%/server/lib/weblogic_sp
.jar;%WL_HOME%/server/lib/weblogic.jar;c:/myJar
;%CLASSPATH%
For example, if you packaged the class in Listing 6-2 in
com.myClasses
, the modifiedbeasvc
command will be as follows:
the modifiedbeasvc
invocation will resemble the following:"%WL_HOME%/server/bin/beasvc" -install
-svcname:"%DOMAIN_NAME%_%SERVER_NAME%"-stopclass:com.myClasses.ServerStopper
-javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%"
-extrapath:"%WL_HOME%/server/bin" -password:"%WLS_PW%"
-cmdline:%CMDLINE%For more information about
beasvc
, enter the following command at a command prompt:WL_HOME
/server/bin/beasvc -help
, whereWL_HOME
is the directory in which you installed WebLogic Server.
-
-
This method gracefully shuts down a server after the server has completed all inflight work. For an example of such a class, refer to Java Class that Shuts Down a Server Instance.
You can determine whether a graceful shutdown operation drops all HTTP sessions immediately and you can configure the amount of time that a graceful shutdown operation waits before forcing a shut down. For more information, refer to "Controlling Graceful Shutdowns" in the Administration Console Online Help.
By default, when you use the Windows 2000 Control Panel to stop a Windows service, the Windows SCM waits 30 seconds for the service to stop before it kills the service and prints a timeout message to the System event log.
If you use
-stopclass
to gracefully shut down a server, 30 seconds might not be enough time for the server to gracefully end its processing.To configure a timeout period on Windows 2000, create a
REG_DWORD
registry value namedServicesPipeTimeout
under the following registry key:HKEY_LOCAL_MACHINE/System/CurrentControlSet/Control
The key value must be in milliseconds.
This value is read from the registry during the startup of the Windows operating system and it affects all services that are installed.
Java Class that Shuts Down a Server Instance
The following Java class uses Java Management Extensions (JMX) to shut down a server instance. Each server uses JMX Managed Beans (MBeans) to expose its management attributes and operations. One such MBean, ServerRuntime
, exposes a shutdown()
method that gracefully shuts down a server.
The class in Listing 6-2 uses the Administration MBeanHome
interface, which can retrieve and call ServerRuntime
MBean operations for all server instances in a domain.
For more information about JMX programming, refer to the Programming WebLogic Management Services with JMX guide. For more information about the ServerRuntime
MBean, refer to the WebLogic Server Javadoc.
Listing 6-2 Java Class that Shuts Down a Server Instance
import java.util.Set;
import java.util.Iterator;
import java.rmi.RemoteException;
import javax.naming.Context;
import javax.management.ObjectName;
import weblogic.jndi.Environment;
import weblogic.management.MBeanHome;
import weblogic.management.WebLogicMBean;
import weblogic.management.configuration.ServerMBean;
import weblogic.management.runtime.ServerRuntimeMBean;
import weblogic.management.runtime.ServerStates;
import weblogic.management.WebLogicObjectName;
public class ServerStopper {
public static void stop() throws Exception {
MBeanHome home = null;
//url of the Admin server
String url = "t3://qa113:7001";
String username = "system";
String password = "gumby1234";
ServerRuntimeMBean serverRuntime = null;
Set mbeanSet = null;
Iterator mbeanIterator = null;
try {
// Set ContextClassloader to prevent assertions
URL[] urls = { new File("/").toURL() };
Thread.currentThread().setContextClassLoader(new
URLClassLoader(urls));
Environment env = new Environment();
env.setProviderUrl(url);
env.setSecurityPrincipal(username);
env.setSecurityCredentials(password);
Context ctx = env.getInitialContext();
home = (MBeanHome)
ctx.lookup("weblogic.management.adminhome");
mbeanSet = home.getMBeansByType("ServerRuntime");
mbeanIterator = mbeanSet.iterator();
while(mbeanIterator.hasNext()) {
serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
if(serverRuntime.getState().equals(ServerStates.RUNNING)){
serverRuntime.shutdown();
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
Redirecting Standard Out and Standard Error to a File
By default, when you install a WebLogic Server instance as a Windows service, you cannot see the messages that the server or its JVM print to standard out and standard error.
To view these messages, you must redirect standard out and standard error to a file:
-
-log:"
pathname
"
wherepathname
is a fully qualified path and filename of the file that you want to store the server's standard out and standard error messages.The modified
beasvc
command will resemble the following command:"%WL_HOME%/server/bin/beasvc" -install
-svcname:"%DOMAIN_NAME%_%SERVER_NAME%"
-javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%"
-extrapath:"%WL_HOME%/server/bin" -password:"%WLS_PW%"
-cmdline:%CMDLINE%-log:"d:/bea/user_projects/domains/myWLSdomain/myWLSserver-stdout.txt"
For information on changing the default behavior, see Changing the Default Rotation Criteria.
After you install the service and restart the Windows host, to view the messages that the server writes to standard out or standard error, do one of the following:
- Make a copy of the file that you specified and view the copy. The Windows file system cannot write to files that are currently opened.
- To view the messages as they are being printed to the file, open a command prompt and, using a DOS utility that supports the
tail
command, entertail -f
stdout-filename
.
Changing the Default Rotation Criteria
By default, every 24 hours the Windows service archives messages to a file named pathname-yyyy_mm_dd-hh_mm_ss. New messages collect in the file that you specified when you set up the service.
You can change the time interval or you can set up rotation to occur based on the size of the message file instead of a time interval.
To change the default criteria at which the Windows service rotates message files:
-
- If you want the Windows service to rotate the message file at a specific time interval regardless of file size, add the following statements at the top of the file, each statement on a separate line (make sure to press the Enter or Return key after typing the last line):
# ROTATION_TYPE = TIME
date-in-required-format
# TIME_START_DATE =# TIME_INTERVAL_MINS =
number-of-minuteswhere
TIME_START_DATE
specifies when the first rotation should take place. If the specified time has already passed, the first rotation occurs when the time interval specified inTIME_INTERVAL_MINS
expires. You must use the following format to specify the start time: Month Day Year Hour:Minutes:Seconds
where Month is the first 3 letters of a Gregorian-calendar month as written in English
Day is the 2-digit day of the Gregorian-calendar month
Year is the 4-digit year of the Gregorian calendar
Hour:
Minutes:
Seconds expresses time in a 24-hour formatand
TIME_INTERVAL_MINS
specifies how frequently (in minutes) the Windows service rotates the file.For example:
# ROTATION_TYPE = TIME
# TIME_START_DATE = Jul 17 2003 05:25:30
# TIME_INTERVAL_MINS = 1440When the time interval expires, the Windows service saves the file as pathname-yyyy_mm_dd-hh_mm_ss. It then creates a new file named pathname. This new file, which contains all of the headers that you specified originally, collects new standard out and standard error messages.
If you specify
# ROTATION_TYPE = TIME
but do not include the other lines, the Windows service rotates the message file every 24 hours. - If you want the Windows service to rotate the message file after the file grows beyond a specified size, add the following statements at the top of the file, each statement on its own line (make sure to press the Enter or Return key after typing the last line):
# ROTATION_TYPE = SIZE
file-size-in-kilobytes
# SIZE_KB =# SIZE_TRIGGER_INTERVAL_MINS =
polling-intervalwhere
SIZE_KB
specifies the minimal file size (in kilobytes) that triggers the Windows service to move messages to a separate file.and
SIZE_TRIGGER_INTERVAL_MINS
specifies (in minutes) how frequently the Windows service checks the file size. If you do not include this header, the Windows service checks the file size every 5 minutes.For example:
# ROTATION_TYPE = SIZE
# SIZE_KB = 1024
# SIZE_TRIGGER_INTERVAL_MINS = 3When the Windows service checks the file size, if the file is larger than the size you specify, it saves the file as pathname-yyyy_mm_dd-hh_mm_ss. It then creates a new file named pathname. This new file, which contains all of the headers that you specified originally, collects new standard out and standard error messages.
If you specify
# ROTATION_TYPE = SIZE
but do not include the other lines, the Windows Service checks the size of the message file every 5 minutes. If the file is larger than 1 megabytes, it rotates the file.
- If you want the Windows service to rotate the message file at a specific time interval regardless of file size, add the following statements at the top of the file, each statement on a separate line (make sure to press the Enter or Return key after typing the last line):
-
For example, if you issued the example command in step 3. in the previous section, create a file named
d:/bea/wlserver6.1/config/mydomain/myserver-stdout.txt
.
To cause the WebLogic Server instance to print a thread dump to standard out, do either of the following:
- Use the
weblogic.Admin THREAD_DUMP
command. For more information, refer to "THREAD_DUMP" in the WebLogic Server Command Reference. - Open a command prompt and enter the following command:
For example:D:/bea/weblogic81/server/bin/beasvc -dump -svcname:mydomain_myserver
Adding Classes to the Classpath
The classpath is a declaration of the location of Java classes that a JVM can invoke. When you use the WebLogic Server master script to install a server instance as a Windows service, the master script specifies all classes required to run a server instance. If you want to extend WebLogic Server by adding your own Java classes, you must add them to the classpath.
To add classes to the classpath:
-
-
-classpath @
pathname
/
filename
wherepathname
/
filename
is the absolute path and name of the file that contains the classpath values.set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS%
-classpath @c:/myClasspath.txt
-Dweblogic.Name=%SERVER_NAME% -Dbea.home=/"D:/bea_70sp2/" -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=/"%ADMIN_URL%/" -Dweblogic.ProductionModeEnabled=%STARTMODE% -Djava.security.policy=/"%WL_HOME%/server/lib/weblogic.policy/" weblogic.Server"
-
-
For example if you archived your class in a file named
c:/myJar
, the modified statement will be as follows:set
CLASSPATH=%JAVA_HOME%/lib/tools.jar;%WL_HOME%/server/lib/weblogic_sp.
jar;%WL_HOME%/server/lib/weblogic.jar;c:/myJar
;%CLASSPATH%
Note: Win32 systems have a 2K limitation on the length of the command line. If the classpath setting for the Windows service startup is very long, the 2K limitation could be exceeded.
Run the Server-Specific Script
Note: To run the server-specific script, you must log in to the Windows computer with a user account that has privileges to modify the Windows registry.
If you install the Windows service in a production environment, BEA recommends that you do not run the service under an operating-system user account that has administrator-level priveleges. For more information, see Verifying the User Account Under Which the Service Runs.
To run the server-specific script:
The command prompt runs the script as a
batch
file.If the script runs successfully, it creates a Windows service named
DOMAIN_NAME
_
SERVER_NAME
and prints a line to standard out that is similar to the following:mydomain_myserver installed.
By default, standard out is the command prompt in which you run the server-specific
batch
file.
Verifying the Setup
To verify that you successfully set up a WebLogic Server as a Windows service, do the following:
If your setup was successful, the beasvc -debug
command starts your server. If the script returns an error similar to the following, make sure that you specified the correct service name:Unable to open Registry Key ....... System/CurrentControlSet/Services/beasvc example_examplesServer/Parameters
Verifying the User Account Under Which the Service Runs
In a production environment, WebLogic Server Windows services should run under a special operating-system user account that has limited access privileges. For example, the OS user should have access privileges only to BEA files and to your domain files. This should be the only user account that has access to these files.
To ensure that the WebLogic Server instance runs under the special OS user account:
Note: When accessing network drives, the Windows service must run under the same username as the one who shared the network drive.
Using the Control Panel to Stop or Restart a Server Instance
After you set up a server instance to run as a Windows service, you can use the Service Control Panel to stop and restart the server.
By default, if you use the Windows Control Panel to stop a server instance, the Windows Service Control Manager (SCM) kills the server's Java Virtual Machine (JVM). If you kill the JVM, the server immediately stops all processing. Any session data is lost. If you kill the JVM for an Administration Server while the server is writing to the config.xml
file, you can corrupt the config.xml
file. For information on enabling graceful shutdowns from the Windows Control Panel, refer to Enabling Graceful Shutdowns from the Windows Control Panel.
To stop or restart a WebLogic Server instance that is installed as a Windows service:
Removing a Server as a Windows Service
To remove a Windows service that runs a WebLogic Server instance, you can use a script that causes the beasvc
utility to remove the associated key from the Windows Registry. Removing the Windows service has no effect on the server instance's configuration that is saved in the domain's configuration file. After you remove the Windows service, you can start the WebLogic Server instance with start scripts or, for Managed Servers, the Node Manager.
If the Configuration Wizard did not already create a script for your domain, you can create one. The script sets values for variables that identify the name of the server instance and other server-specific information. Then the script calls a master uninstall script, WL_HOME/server/bin/uninstallSvc.cmd
, where WL_HOME
is the directory in which you installed WebLogic Server. The master scripts invokes the beasvc
utility, which removes a key from the Windows Registry.
To see an example of a server-specific uninstaller script, refer to Listing 6-3.
To create a script for removing a Windows service that runs a WebLogic Server instance:
If the removal script runs successfully, it prints a line similar to the following to standard out:mydomain_myserver removed.
By default, standard out is the command prompt in which you run the batch
file.
Listing 6-3 Script to Remove a Windows Service
echo off
SETLOCAL
set DOMAIN_NAME=myWLSdomain
set SERVER_NAME=myWLSserver
call "D:/bea/weblogic81/server/bin/uninstallSvc.cmd"
ENDLOCAL
Changing Startup Credentials for a Server Set Up as a Windows Service
To change a Windows service so that a WebLogic Server instance runs under different user credentials, do one of the following:
- If you set up the Windows service to retrieve usernames and passwords from a boot identity file, you can overwrite the existing file with a new one that contains the new username and password. You must specify the name of an existing user in the WebLogic Server default security realm. For information, refer to "Boot Identity Files" in the Administration Console Online Help.
- If you set up the Windows service to retrieve usernames and passwords from the Windows registry, then you must remove the Windows service and create a new one that uses your new username or password:
- Uninstall the Windows service that runs the WebLogic Server instance. For more information, refer to Removing a Server as a Windows Service.
The command prompt runs the script as a
batch
file.If the script runs successfully, it creates a Windows service named
DOMAIN_NAME
_
SERVER_NAME
and prints a line to standard out that is similar to the following:mydomain_myserver installed.
By default, standard out is the command prompt in which you run the server-specific
batch
file.