![]() ![]() ![]() ![]() ![]() ![]() |
This chapter provides information on how to start and stop the Java-based and script-based Node Manager. It also provides information on the recommended procedures for starting servers using Node Manager. The following topics are covered:
It is recommended 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.
By default, Node Manager listens only from the local host. If you want Node Manager to accept commands from remote systems, you must uninstall the default Node Manager service, then reinstall it to listen on a non-localhost Listen Address.
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 Step 8: Set the Node Manager Environment Variables.
Sample start scripts for Node Manager are installed in the WL_HOME
\server\bin
directory, where WL_HOME
is the top-level installation directory for WebLogic Server. Use startNodeManager.cmd
on Windows systems and startNodeManager.sh
on UNIX systems.
The scripts set the required environment variables and start Node Manager in WL_HOME
/common/nodemanager
. 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.
Edit the sample start script to make sure that the command qualifiers set the correct listen address and port number for your Node Manager process.
The syntax for starting Java-based Node Manager is:
java [java_option
=value
...] -D[nodemanager_property
=value
]-D[
server_property=value
] w
eblogic.NodeManager
java_option
is a direct argument to the java
executable, such as -ms
or -mx
. Note: | If you did not set the CLASSPATH 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 the nodemanager.properties
file, which is installed in the directory where you start Node Manager. For more information, 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:Notes: | For UNIX systems: |
Note: | If you run Node Manager on a UNIX operating system other than Solaris or HP UX, you cannot have any white space characters in any of the parameters that will be passed to the java command line when starting Node Manager. For example, this command fails due to the space character in the name “big iron ”. |
Note: | For UNIX systems other than Solaris, HP-UX, and Linux operating systems, you must disable the weblogic.nodemanager.nativeVersionEnabled option at the command line when starting Node Manager (or set the property in nodemanager.properties ) to use the pure Java version. For more information, see
Reviewing nodemanager.properties. |
To use the SSH Node Manager Command Shell, start the Administration Server using the following command line option:
-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 SSH 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.
ssh -o PasswordAuthentication=no %H wlscontrol.sh -d
%D
-r
%R
-s
%S
%C'
The possible command line options are listed in Table . The possible parameter values are listed in Table .
For example, if you type this command,
ssh -o PasswordAuthentication=no wlscontrol.sh myserver start
The listen address and port of the SSH server default to the listen address and port used by Node Manager on the remote machine. The domain name and domain directory are assumed to be the root directory specified for the target server instance, myserver
.
ssh -o PasswordAuthentication=no 172.11.111.11 wlscontrol.sh -d ProductionDomain -r ProductionDomain -s ServerA'
issues a START
command to the server instance named ServerA
, in the domain called ProductionDomain
, located in the domains/ProductionDomain
directory.
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.
To stop Node Manager, close the command shell in which it is running.
This section describes the recommended procedures for starting servers using Node Manager and WLST.
Note: | In general, it is recommended that you use the WebLogic Scripting Tool and Node Manager to start and stop the Administration Server and managed servers.For more information, see “Node Manager Commands” in WebLogic Scripting Tool |
The following general procedures are recommended for starting an Administration Server using WLST and 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 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 servers that were started in this way. |
The following general procedures are recommended for starting a managed server using WLST and Node Manager.
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.
Note: | Using nmStart allows you to pass specific properties to a server, but should only be used for debugging. Server properties passed through nmStart are not preserved the next time the server is restarted. |
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:
boot.properties
and startup.properties
are already defined.nmStart
should not be used to permanently change the startup properties for a server. The next time a server is migrated or restarted from the Administration Server, these properties will not be used.nmStart
, these values are not encrypted.
![]() ![]() ![]() |