Sun Java System Web Server 7.0 Administrator's Guide

Chapter 2 Configuration, Instances, and Nodes

The previous chapter introduced you to some of the new concepts in Web Server 7.0. The primary task of an administrator is to configure and manage the runtime services of the Server. This chapter describes the different ways by which you can manage Configurations and how you can deploy your Configurations to get an instance started on a node.

Overview

Instance refers to the environment of a web server daemon on a given node, including its configuration, log files and other runtime artifacts such as lock databases, caches and temporary files.

Node is a network resource, such as a server or a host. In a typical data center, a network of nodes is called a server farm. This section discusses how nodes can be configured using the administration console GUI.

You can deploy one or many instances to a node. Also the same instance can be deployed to multiple nodes and can form as a part of different clusters.

For management purposes, an instance can be started, stopped, started, or dynamically re-configured.

Managing Configurations

Creating a Configuration

In order to start using the web server, you need to create a Configuration.

To create a new Configuration, perform the following tasks:

  1. Click Configuration tab .

  2. Click New button

The wizard guides you through the settings available for creating a Configuration. The following sections provide a description of the fields available in wizard pages:

Step 1 – Set Configuration Information

This wizard page allows you to set the generic information for the new configuration

Set the following parameters in the wizard page:

Step 2 — Create a Listener for the Configuration

This wizard page allows you to set the HTTP listener properties for the new Configuration

Set the following parameters in the wizard page:

Step 3 — Configure Java, CGI and SHTML

This wizard page allows you to configure properties related to Java/CGI and SHTML.

Set the following parameters in the wizard page:

Step 4 — Create an Instance

This wizard page allows you to create an instance for the new Configuration.

Set the following parameters in the wizard page:


Note –

Using CLI

For creating a configuration through CLI, execute the following command:


wadm> create-config --user=admin --password-file=admin.pwd 
--host=serverhost --port=8989 --http-port=8800 --server-user=user 
--server-name=servername config1

config1 is the name of the new configuration.

See CLI Reference, create-config(1).


Duplicating a Server Configuration

You can copy a server configuration and create a new configuration. The newly copied configuration is identical to the existing configuration. However, the new configuration will not have any instance even though the configuration from which it has been copied has instances.

To duplicate a configuration, perform the following tasks:

  1. Click Configuration tab.

  2. Select the configuration from the list.

  3. Click Copy button.

  4. In the pop-up window, enter the new configuration name and click OK.


Note –

Using CLI

For performing the action through CLI, execute the following command:


wadm> copy-config --user=admin --password-file=admin.pwd --host=serverhost 
--port=8989 --config=config1 copyconfig1

copyconfig1 is the name of the new configuration.

See CLI Reference, copy-config(1).


Deploying the Server Configuration

You need to create a configuration first to deploy on the node.

For deploying an existing configuration, perform the following tasks:

  1. Click Configurations tab

  2. Identify the configuration by selecting the configuration checkbox.

  3. Select Deploy Configuration from the configuration action list.

Deleting the Server Configuration


Note –

You cannot delete a configuration, if instances of the configuration are deployed to nodes. Even if the instances are deployed and not running, you are not allowed to delete the server configuration. Stop the running instances and undeploy them to delete the configuration.


For deleting a configuration, perform the following tasks:

  1. Click Configurations tab

  2. Identify the configuration by selecting the configuration checkbox.

  3. Select Delete Configuration from the configuration action list.

Managing Server Instances

Creating a Server Instance

Before creating a new server instance, perform the following checks:

  1. Check whether you have created a configuration. Creating a new server instance needs an existing instance configuration to be specified.

  2. Check if all the available nodes in the Server Farm already have an instance of the required configuration. You can not create duplicate instances.

Create a new server instance by performing the following tasks:

  1. Click Configuration tab and select New from the action list.

  2. In the New Instance Wizard page, select the configuration for which you need to create an instance and click Next button.

  3. Select the nodes on which instances of the selected configuration [Step 2] should exist. Click Next button.

  4. View the summary of your selection. Click Next button to view the result of the operation.


Note –

Using CLI

For creating a server instance, execute the following command:


wadm> create-instance --user=admin --password-file=admin.pwd 
--host=serverhost --port=8989 --config=config1 serverhost

See CLI Reference, create-instance(1).

Starting Server Instances

  1. Click Nodes tab to view the list of nodes configured in the server.

  2. Select the node by selecting the node name checkbox.

  3. Click Start Instances button to open a page window, listing all the instances controlled by that node.

  4. Select the instance and click Start Instances button to start the instance.

  5. Check if the status of the instance is Running and close the window.


Note –

Using CLI

For starting a server instance through CLI, execute the following command:


wadm> start-instance --user=admin --password-file=admin.pwd --host=serverhost 
--port=8989 --config=config1 nodehost1

See CLI Reference, start-instance(1).

Stopping Server Instances

  1. Click Nodes tab to view the list of nodes configured in the server.

  2. Select the node by selecting the node name checkbox

  3. Click Stop Instances button to open a page window, listing all the instances controlled by that node.

  4. Select the instance and click Stop Instances button to stop the instance.

  5. Check if the status of the instance is Not Running and close the window.


Note –

Using CLI

For stopping a server instance through CLI, execute the following command:


wadm> stop-instance --user=admin --password-file=admin.pwd --host=serverhost 
--port=8989 --config=config1 nodehost1

See CLI Reference, stop-instance(1).


Restarting Server Instances

  1. Click Nodes tab to view the list of nodes configured in the server.

  2. Select the node by selecting the node name checkbox

  3. Click Restart Instances button to open a page window, listing all the instances controlled by that node.

  4. Select the instance and click Restart Instances button to restart the instance.

  5. Check if the status of the instance is Running and close the window.


Note –

Using CLI


wadm> restart-instance --user=admin --password-file=admin.pwd 
--host=serverhost --port=8989 --config=config1 nodehost1

See CLI Reference, restart-instance(1).


Re-Configuring Server Instances

When you make changes to the Configuration, you do not need to restart the instance for some cases. Administration Server supports re-configuring the server instances to pull changes made to the configuration store. In this Configuration changes are reflected on instances without a server restart. Only dynamically re-configurable changes in the configuration will be affected.


Note –

Changes in the user, temp-path, log, thread-pool, pkcs11, statistics, CGI, DNS, DNS-cache, file-cache, ACL-cache, SSL-session-cache, access-log-buffer, and JVM (except log-level ) settings will not come in to effect after a reconfiguration. Any such changes that require restart will be logged when a reconfiguration is performed. Reconfiguring the file cache requires a server restart.


  1. Click Nodes tab to view the list of nodes configured in the server.

  2. Select the node by selecting the node name checkbox

  3. Click Reconfig Instances button to open a page window, listing all the instances deployed on that node.

  4. Select the instance and click Reconfig Instances button to reconfigure the instance.

  5. Check if the status of the instance is Running and close the window.


Note –

Using CLI

For re-configuring the server instance through CLI, execute the following command:


wadm> reconfig-instance --user=admin --password-file=admin.pwd 
--host=serverhost --port=8989 --config=config1 serverhost

See CLI Reference, reconfig-instance(1).


Deleting Server Instances


Note –

The server instance should not be running for it to be deleted.


  1. Click Configuration tab to view the list of available configurations.

  2. Select the configuration from the configurations list.

  3. Click Instances sub tab.

  4. Select the instance from the list of deployed instances under the Nodes section.

  5. Select Delete Instances from the action drop-down list to delete the selected instance.


Note –

Using CLI

For deleting a server instance through CLI, execute the following command:


wadm> delete-instance --user=admin --password-file=admin.pwd --host=serverhost 
--port=8989 --config=config1 serverhost

See CLI Reference, delete-instance(1).


Automatically Configuring Instances

Instances can be re-configured or restarted based on scheduled events. You can set a specific time and interval for scheduling automatic instance reconfiguration.

For scheduling events, perform the following tasks:

  1. Click Configuration tab and select the configuration.

  2. Click General sub tab > Scheduled Events sub tab.

ProcedureTo Add a Scheduled Event

  1. Select the configuration.

    Select the configuration from the list shown after clicking the Configuration tab.

  2. Click General > Scheduled Events sub tab.

  3. Click New button.

  4. Configure the following properties:

    • Event

      • Restart Instances — This scheduled event will restart all the deployed and running instances for the configuration.

      • Reconfig Instances — This scheduled event will re—configure all the deployed and running instances for the configuration.

      • Custom Command Line — Provide the absolute path to a file that will be executed.

    • Schedule

      The configured time when the event will start. Select the hour and minutes value from the drop down box.

      • Every Day — Starts the event specified every day at the specified time.

      • Specific Days — Starts the event specified at specific days.

        1. Days — Specify any day from Sunday to Saturday.

        2. Dates — Specify any day of the month from 1 to 31 as comma separated entries. E.g. 4,23,9

      • Specific Months — Starts the event specified at the specific time and month. Specify month from January to December.

      • Interval

        Start the specified event after this time period.

        1. Every Hours — Select the number of hours from the drop down box.

        2. Every Seconds — Enter the number of seconds in the text field.


    Note –

    Using CLI

    For scheduling an event through CLI, execute the following command:


    wadm> create-event --user=admin --password-file=admin.pwd --host=serverhost 
    --port=8989 --config=config1 --time=10:10 --command=restart

    See CLI Reference, create-event(1).


ProcedureTo Remove a Scheduled Event

  1. Select the configuration.

    Select the configuration from the list shown after clicking the Configuration tab.

  2. Click General > Scheduled Events sub tab.

  3. Select the scheduled event and click Delete button.