4 Using Node Manager
This chapter includes the following topics:
- Starting and Stopping Node Manager
Oracle WebLogic Server provides various methods for starting and stopping Node Manager. - Using Node Manager to Control Servers
Oracle recommends to use the WebLogic Scripting Tool and Node Manager to start and stop the Administration Server and Managed Servers.
Starting and Stopping Node Manager
Oracle WebLogic Server provides various methods for starting and stopping Node Manager.
This section includes the following topics:
- Running Node Manager as a Startup Service
- Starting Java-Based Node Manager Using Scripts
- Running Script-Based Node Manager
- Stopping Node Manager
- Stopping Java-Based Node Manager Using Scripts
Parent topic: Using Node Manager
Running Node Manager as a Startup Service
Node Manager must run on each computer that hosts an Oracle WebLogic Server instance that you want to control with Node Manager. Ideally, Node Manager should run as an operating system service or daemon, so that it is automatically restarted in the event of a system failure or reboot.
By default, the operating system service starts up Node Manager to listen on localhost:5556
. If you want Node Manager to accept commands from remote systems, you must edit the script to listen on a non-localhost listen address.
Oracle recommends that you install Node Manager to run as a startup service. This allows Node Manager to start up automatically each time the system is restarted. See Configuring Node Manager as an xinetd Service and Configuring Node Manager as an init.d Service.
Note:
On UNIX platforms, Oracle does not recommend running Node Manager as the root user. However, to achieve Post-Bind GID, you must start Node Manager as the root user. Post-Bind GID enables a server instance running on your machine to bind to a UNIX group ID (GID) after it finishes all privileged startup actions.
On Windows machines, use the following steps to install a per domain Node Manager Windows service:
- Log in to the machine with Administrator privileges.
- Open a DOS command prompt window.
- Change to the
DOMAIN_HOME
\bin
directory. - Enter the following command:
installNodeMgrSvc.cmd
- After a few seconds, the following message is displayed:
Oracle WebLogic <domain-name> NodeManager installed.
The service is installed using the default Node Manager listen port (
5556
). If this listen port is already in use, the program prompts you to enter a different listen port.
Note:
If the Node Manager Windows service is already installed, the following message is displayed instead:CreateService failed - The specified service already exists.
If you want to uninstall a per domain Node Manager Windows service, use the following steps:
- Log in to the machine with Administrator privileges.
- Open a DOS command prompt window.
- Change to the
DOMAIN_HOME
\bin
directory. - Enter the following command:
uninstallNodeMgrSvc.cmd
- After a few seconds, the following message is
displayed:
Oracle WebLogic <domain-name> NodeManager removed.
By default, NODEMGR_HOST
is set to localhost
in installNodeMgrSvc.cmd
, which means that Node Manager will listen only on the local host. If you do not want Node Manager listening on the local host, set NODEMGR_HOST
to a valid hostname or IP address before installing the Node Manager service.
Note:
If you select to run a per host Node Manager as a Windows service, usingWL_HOME
\server\bin\installNodeMgrSvc.cmd
,
you must first perform the prerequisite configuration steps described in Configuring Per Host Node Manager.
Parent topic: Starting and Stopping Node Manager
Starting Java-Based Node Manager Using Scripts
Although running Node Manager as an operating system service is recommended, you can also start Node Manager manually at the command prompt or with a script. The environment variables Node Manager requires are described in Set Node Manager Environment Variables.
Sample start scripts for Node Manager are installed in each DOMAIN_HOME
/bin
and the
WL_HOME
\server\bin
directory,
where WL_HOME
is the top-level installation
directory for Oracle WebLogic Server. However, if you select to use the
script in WL_HOME
\server\bin
, you must
first perform the prerequisite steps described in Configuring Per Host Node Manager.
Use startNodeManager.cmd
on Windows systems and
startNodeManager.sh
on UNIX systems.
The scripts set the required environment variables and start Node Manager in the
appropriate NodeManagerHome
directory. Node Manager
uses this directory as a working directory for output and log files. To specify a
different working directory, edit the start script with a text editor and set the value
of the NODEMGR_HOME
variable to the desired directory.
Parent topic: Starting and Stopping Node Manager
Command Syntax for Starting Java-Based Node Manager
The syntax for starting Java-based Node Manager is:
java [java_option=value ...] -D[nodemanager_property=value] -D[server_
property=value] weblogic.NodeManager
Where:
java_option
is a direct argument to thejava
executable, such as-ms
or-mx
.Note:
If you did not set theCLASSPATH
environment variable, use the-classpath
option to identify required Node Manager classes.nodemanager_property
is a Node Manager property. Instead of supplying Node Manager property values on the command line, you can edit thenodemanager.properties
file, which is created in theNodeManagerHome
directory. See Reviewing nodemanager.properties.Node Manager property values you supply on the command line override the values in
nodemanager.properties
.server_property
is a server-level property that Node Manager accepts on the command line, including:bea.home
: The BEA home directory that server instances on the current machine use.java.security.policy
: The path to the security policy file that server instances on the current machine use.Note:
For UNIX systems:
If you run Node Manager on a UNIX operating system other than Solaris, you cannot have any white space characters in any of the parameters that will be passed to thejava
command line when starting Node Manager. For example, this command fails due to the space character in the name"big iron"
.-Dweblogic.Name="big iron"
For UNIX systems other than Solaris and Linux operating systems, you must disable the
weblogic.nodemanager.nativeVersionEnabled
option at the command line when starting Node Manager (or set the property innodemanager.properties
) to use the pure Java implementation. See Reviewing nodemanager.properties.For MacOS systems:
In
nodemanager.properties
, setNativeVersionEnabled=false
or Node Manager will fail to start.
Parent topic: Starting Java-Based Node Manager Using Scripts
Running Script-Based Node Manager
Note:
In this release of Oracle WebLogic Server, prior to running the script-based
implementation of Node Manager, you must create or copy into NodeManagerHome
, a nodemanager.domains
file that
specifies the domains that you want a Node Manager instance to control. See Configuring nodemanager.domains File. Alternatively, you can register WebLogic
domains with Node Manager using the WLST command, nmEnroll
.
If not specified, the default NodeManagerHome
location is WL_HOME
/common/nodemanager
.
-Dweblogic.nodemanager.ShellCommand='ssh -o PasswordAuthentication=no %H wlscontrol.sh -d %D -r %R -s %S -x -c -f sample_custom_startscript.sh %C'
Note:
%
C must be the last argument
supplied to wlscontrol.sh
.
The weblogic.nodemanager.ShellCommand
attribute specifies the command template to use to communicate with a remote script-based Node Manager and execute Node Manager functions for server instances under its control.
The template assumes that wlscontrol.sh
is in the default path on the remote machine hosting Node Manager.
ShellCommand
syntax
is:ssh -o PasswordAuthentication=no %H wlscontrol.sh -d %D -r %R -s %S %C'
The possible command line options are listed in Table 4-1. The possible parameter values are listed in Table 4-2.
myserver
.ssh -o PasswordAuthentication=no wlscontrol.sh myserver start
START
command to the server instance
named ServerA
, in the domain called ProductionDomain
, located
in the domains/ProductionDomain
directory:ssh -o PasswordAuthentication=no 172.11.111.11 wlscontrol.sh -d ProductionDomain
-r ProductionDomain -s ServerA'
The ssh
command must include the string:
-o PasswordAuthentication=no
This string passes the ssh PasswordAuthentication
option. A value of yes
causes the client to hang when it tries to read from the console.
Table 4-1 wlscontrol.sh Command Line Options
Parameter | Description |
---|---|
-n |
Specifies the Node Manager root directory. |
-s |
Specifies the server name. |
-d |
Specifies the domain name. |
-r |
Specifies the domain directory. |
-c |
Enables a server start script. |
-f |
The name of the server start script. |
-p |
The name of the server stop script. |
-v |
Enables verbose output. |
-h |
Prints the usage for |
Table 4-2 Shell Command Templates
Parameter | Description | Default |
---|---|---|
%H |
The host name of the SSH server. |
|
%N |
The Node Manager home directory. |
|
%P |
The port number of the SSH server. |
|
%S |
The Oracle WebLogic Server name. |
|
%D |
The Oracle WebLogic domain name. |
|
%R |
The domain directory (server root). |
|
%C |
The Node Manager script command:
Note: This command must be the last element in the command. |
none |
Note:
If you notice that it takes a long time to start Node Manager or an Oracle WebLogic Server instance, it might be because of low entropy on your machine.
To check entropy:
cat /proc/sys/kernel/random/entropy_avail
rngd
which replenishes random bytes to /dev/random
using /dev/urandom
as the source. Start rngd
(as root). This
command will ensure that your system does not run out of
entropy:$ rngd -r /dev/urandom -o /dev/random -b
/etc/sysconfig/rngd
with
the following
command:EXTRA OPTIONS="-i -r /dev/urandom -o /dev/random -b -t 60 -W 2048"
Every 60 seconds, this will add bits to the entropy pool until the size is 2048. You can change the interval and size using the -t 60
and -W 2048
parameters.
Parent topic: Starting and Stopping Node Manager
Stopping Node Manager
To stop Node Manager, close the command shell in which it is running.
nodemanager.properties
attribute QuitEnabled
to true
(the default is
false
), you can use WLST to connect to Node Manager and shut it
down.wls:/nm/mydomain> stopNodeManager()
Stopped Node Manager Process successfully
wls:/offline>
See stopNodeManager
in the WLST Command Reference for Oracle WebLogic Server.
Parent topic: Starting and Stopping Node Manager
Stopping Java-Based Node Manager Using Scripts
The shutdown scripts for Node Manager are installed in the DOMAIN_HOME
/bin
and the
WL_HOME
/server/bin
directories, where
WL_HOME
is the top-level
installation directory for Oracle WebLogic Server.
These scripts require the NODEMGR_HOME
variable to be set before execution. DOMAIN_HOME
/bin/stopNodeManager.[cmd|sh]
comes configured with the appropriate DOMAIN_HOME
and NODEMGR_HOME
values. However, before executing WL_HOME
/stopNodemanager[.cmd|sh]
, you must define NODEMGR_HOME
correctly.
To stop Node Manager, use stopNodeManager.cmd
on Windows systems and stopNodeManager.sh
on UNIX systems.
Parent topic: Starting and Stopping Node Manager
Using Node Manager to Control Servers
Oracle recommends to use the WebLogic Scripting Tool and Node Manager to start and stop the Administration Server and Managed Servers.
Use the recommended procedures to start and stop server instances. See Using WLST and Node Manager to Manage Servers in Understanding the WebLogic Scripting Tool and Node Manager Commands in WLST Command Reference for Oracle WebLogic Server.
For information about changing the credentials used for starting and stopping Oracle WebLogic Server instances, see Changing the Credentials Used for Starting a Server in Administering Server Startup and Shutdown for Oracle WebLogic Server.
This section includes the following topics:
- Starting the Administration Server Using Node Manager
- Starting Managed Servers Using WLST
- Starting Managed Servers Using the Remote Console
- Starting Managed Servers without an Administration Server
Parent topic: Using Node Manager
Starting the Administration Server Using Node Manager
The following general procedures are recommended for starting an Administration Server using WLST and Node Manager.
Establish startup information using the nmGenBootStartupProp
s command. This command generates the Node Manager property files boot.properties
and startup.properties
.
You must complete all of the following steps when starting the Administration Server for the first time in your domain, or if you make any configuration changes to the Administration Server.
For subsequent startups of the Administration Server, go to Step 7 to start the Administration Server directly with Node Manager.
After the Administration Server has been started, you can use WLST to start the Managed Servers in your domain.
Note:
Starting the server instance using the nmStart
command allows Node Manager to monitor the state of your Administration Server and restart it in case of failure. Node Manager can only restart server instances that were started in this way.
Using nmStart
allows you to pass specific properties to a server instance, but should only be used for debugging. Server properties passed through nmStart
are not preserved the next time the server instance is restarted.
Parent topic: Using Node Manager to Control Servers
Starting Managed Servers Using WLST
The following general procedures are recommended for starting a Managed Server using WLST and Node Manager.
- Start Node Manager. See Starting and Stopping Node Manager.
- Start an Administration Server. See Starting an Administration Server with a Startup Script in Administering Server Startup and Shutdown for Oracle WebLogic Server.
- Invoke WLST and connect to an Administration Server using the
connect
command. See Invoke WLST. - Start the Managed Server using the WLST
start
command.
Using the start
command causes WLST to contact the Administration Server to determine the Managed Servers startup properties. These are in turn passed to Node Manager and are used to start the Managed Server.
Parent topic: Using Node Manager to Control Servers
Starting Managed Servers Using the Remote Console
The following general procedures are recommended for starting a Managed Server using the Oracle WebLogic Remote Console:
- If you have not already done so, create a Managed Server.
- Node Manager must run on each computer that hosts Oracle WebLogic Server instances that you want to control with Node Manager. Configure each computer as a machine in Oracle WebLogic Server. See Configuring a Machine to Use Node Manager.
- Assign each server instance that you will control with Node Manager to the machine on which it runs. See Assigning Server Instances to a Machine.
- Start Node Manager on the computer that you want to host the Managed Server. The Oracle WebLogic Server custom installation process optionally installs and starts Node Manager as a Windows service on Windows systems. If it's not already running, you can start Node Manager manually at a command prompt or with a script.
For more information, see Start Managed Servers in the Oracle WebLogic Remote Console Online Help.
Parent topic: Using Node Manager to Control Servers
Configuring a Machine to Use Node Manager
An Oracle WebLogic Server machine resource associates a particular machine with the server instances it hosts, and specifies the connection attributes for a Node Manager process on that system.
Configure a machine definition for each machine that runs a Node Manager process using the Node Manager page in the WebLogic Remote Console. To access this page, in the Edit Tree, go to Environment, then Machines, and then myMachine. For more information, see Configure Machines in the Oracle WebLogic Remote Console Online Help.
On the Node Manager page, configure the following properties:
- The DNS name or IP address upon which Node Manager listens in the Listen Address field.
- The port number in the Listen Port field. Note that specifying the port number is especially important if you have modified it from the default value.
Note:
The Node Manager Listen Address value reflects the client-side configuration. It tells the Administration Server or clients on the Administration Server how to connect to Node Manager. This attribute does not configure Node Manager.
The listen address you specify must match exactly the host name appearing in the CN component of the Node Manager SSL server digital certificate subject DN.
Parent topic: Starting Managed Servers Using the Remote Console
Assigning Server Instances to a Machine
After configuring each computer as a machine resource, you must assign each server instance that you will control with Node Manager to the machine on which it runs.
- In the WebLogic Remote Console, in the Edit Tree, go to Environment, then Servers.
- Select the server instance that you want to assign to a machine.
- In the Machine drop-down list, select the machine to which you want to assign the server instance.
- Click Save.
Note:
You cannot change the machine of the Administration Server using the WebLogic Remote Console. You cannot change the cluster or machine of a running server instance.For more information, see Assign a Server Instance to a Machine in the Oracle WebLogic Remote Console Online Help.
Parent topic: Starting Managed Servers Using the Remote Console
Starting Managed Servers without an Administration Server
The following general procedures are recommended for starting a Managed Server using WLST and Node Manager if you do not want to use the Administration Server to determine a Managed Server's startup properties:
Using the nmStart
command allows you to restart a Managed Server without the Administration Server and to specify the server startup properties you want. However, the following considerations apply:
-
In order to start a server instance with
nmStart
, you must ensure thatboot.properties
andstartup.properties
are already defined. -
nmStart
should not be used to permanently change the startup properties for a server instance. The next time a server instance is migrated or restarted from the Administration Server, these properties will not be used. -
When passing the server instance user name and password using
nmStart
, these values are not encrypted.
managed1
server in the current WebLogic domain using Node Manager:wls:/nm/mydomain> nmStart("managed1")
Starting server managed1 ...
Server managed1 started successfully
wls:/nm/mydomain>
Parent topic: Using Node Manager to Control Servers