Contained WithinFind More DocumentationFeatured Support Resources | Scarica il manuale in formato PDF (3002 KB)
Chapter 2 Configuration, Instances, and NodesThe 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. OverviewInstance 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, restarted or dynamically re-configured. Managing ConfigurationsCreating a ConfigurationIn order to start using the web server, you need to create a Configuration. To create a new Configuration, perform the following tasks:
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 InformationThis 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 ConfigurationThis 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 SHTMLThis wizard page allows you to configure properties related to Java/CGI and SHTML. Set the following parameters in the wizard page:
Restore ConfigurationFrom this section, you can restore the configuration that were deployed earlier. Note – You can only restore the last seven configuration.
|
wadm> create-config --doc-root=[DOCROOT] --jdk-home=[JAVAHOME] --server-user=[SERVERUSER] [--document-root=serverdocroot] [--platform=32|64] --http-port=port --server-name=servername CONFIGNAME |
config1 is the name of the new configuration.
See CLI Reference, create-config(1).
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:
Click Configuration tab.
Select the configuration from the list.
Click the Duplicate button.
In the pop-up window, enter the new configuration name and click OK.
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).
You need to create a configuration first to deploy on the node.
For deploying an existing configuration, perform the following tasks:
Click Configurations tab
Identify the configuration by selecting the configuration checkbox.
Click the Deploy button .
A new window appears, click the Deploy button to deploy the configuration.
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:
Click Configurations tab
Identify the configuration by selecting the configuration checkbox.
Click the Delete button.
A new window appears, click the OK button to delete the configuration.
Whenever you make manual changes to the configuration, you should replicate the changes back into the Administration server repository as follows:
Manually edit server instance's configuration files as you would do with the earlier version of Web Server (Not recommended).
Start the Administration Server.
For pulling the changes back to the Administration Server repository, execute the following command.
wadm> pull-config --user=admin --config=CONFIG_NAME |
The operation may take some time depending on the configuration.
Always use the Administration Console or the wadm CLI to edit the settings. When you invoke pull-config only the contents of the <instance_dir>/config directory will be pulled into the configuration store from Web Server .
Click the Nodes tab from the Common Tasks page.
Select the Administration Node.
Select the Administration Node from the list
Click the Remove button.
Before creating a new server instance, perform the following checks:
Check whether you have created a configuration. Creating a new server instance needs an existing instance configuration to be specified.
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:
Click Configuration tab and click the configuration link that you want to create an instance.
In the New Instance Wizard page, select the configuration for which you need to create an instance. Select the SMF Service if you want to create a service for this instanceand click Next button.
Select the nodes on which instances of the selected configuration [Step 2] should exist. Click Next button.
View the summary of your selection. Click Next button to view the result of the operation.
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).
Click Nodes tab to view the list of nodes configured in the server.
Select the node by selecting the node name checkbox.
Click Start Instances button to open a page window, listing all the instances controlled by that node.
Select the instance and click Start Instances button to start the instance.
Check if the status of the instance is Running and close the window.
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).
Click Nodes tab to view the list of nodes configured in the server.
Select the node by selecting the node name checkbox
Click Stop Instances button to open a page window, listing all the instances controlled by that node.
Select the instance and click Stop Instances button to stop the instance.
Check if the status of the instance is Not Running and close the window.
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).
Click Nodes tab to view the list of nodes configured in the server.
Select the node by selecting the node name checkbox
Click Restart Instances button to open a page window, listing all the instances controlled by that node.
Select the instance and click Restart Instances button to restart the instance.
Check if the status of the instance is Running and close the window.
Using CLI
wadm> restart-instance --user=admin --password-file=admin.pwd --host=serverhost --port=8989 --config=config1 nodehost1 |
See CLI Reference, restart-instance(1).
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.
For more information on reconfig command see, Dynamic Reconfiguration in Sun Java System Web Server 7.0 Update 3 Administrator’s Configuration File Reference.
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.
Click Nodes tab to view the list of nodes configured in the server.
Select the node by selecting the node name checkbox
Click Reconfig Instances button to open a page window, listing all the instances deployed on that node.
Select the instance and click Reconfig Instances button to reconfigure the instance.
Check if the status of the instance is Running and close the window.
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).
The server instance should not be running for it to be deleted.
Click Configuration tab to view the list of available configurations.
Select the configuration from the configurations list.
Click Instances sub tab.
Select the instance from the list of deployed instances under the Nodes section.
Select Delete Instances from the action drop-down list to delete the selected instance.
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).
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:
Click Configuration tab and select the configuration.
Click General sub tab > Scheduled Events sub tab.
Select the configuration.
Select the configuration from the list shown after clicking the Configuration tab.
Click General > Scheduled Events sub tab.
Click New button.
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.
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).
Select the configuration.
Select the configuration from the list shown after clicking the Configuration tab.
Click General > Scheduled Events sub tab.
Select the scheduled event and click Delete button.
The Administration Server allows only one predefined administrator login and does not allow user group management. Hence, if multiple users have to login to the Administration Server, LDAP authentication is used. You can login to the Administration Server by using your LDAP userid and password through Administration Console or CLI.
The Administration server by default allows only users belonging to the group wsadmin to login. Thus, while enabling LDAP authentication, the administrator can define a list of groups, other than wsadmin whose members will be allowed to login.
The LDAP auth-db can also be manually configured to allow Administration Server authenticate with LDAP as shown below:
<default-auth-db-name>ldap</default-auth-db-name> <auth-db> <name>ldap</name> <url>ldap://ooooxxxxooooo.india.sun.com:389/dc963dindia,dc963dsun,dc963dcom</url> <property> <name>bindpw</name> <value>YWRtaW5hZG1pbg==</value> <encoded>true</encoded> </property> <property> <name>binddn</name> <value>cn=Directory Manager</value> </property> </auth-db> |
Login to Administration Console.
Click Nodes tab to view a list of nodes configured in the server.
Click on the Administration Node from the list.
Select Authentication from Administration Server - General Settings page.
Select Use LDAP Authentication button.
The Use LDAP Authentication is enabled only for Administration Server.
Enter LDAP authentication information.
By entering the user groups in the Allowed Groups text field, the administrator enables or disables LDAP authentication to the group.
Click the Save button.
Using CLI
For enabling Administration Server to authenticate against LDAP server, execute the following command.
wadm enable-admin-ldap-auth --user=admin --host=serverhost --password-file=../admin.passwd --port=8989 --ssl=true --no-prompt rcfile=null --ldap-url=ldap://serverhost.com:3950/dc=xyz,dc=xyz,dc=xyz --bind-dn=cn="Directory Manager" |
wadm enable-admin-ldap-auth --user=admin --host=serverhost --password-file=../admin.passwd --port=8989 --ssl=true --ldap-url=ldap://serverhost:port/dc=acme,dc=com --allow-group="group1,group2,group3" |
See CLI Reference, enable-admin-ldap-auth(1)
For disabling Administration authentication to LDAP server execute the following command.
wadm disable-admin-ldap-auth --user=admin --host=serverhost --password-file=../admin.passwd --port=8989 --ssl=true --no-prompt --rcfile=null |
See CLI Reference, disable-admin-ldap-auth(1)
For displaying Administration LDAP authentication properties execute the following command.
wadm get-admin-ldap-auth-prop --user=admin --host=serverhost --password-file=../admin.passwd --port=8989 --ssl=true --no-prompt rcfile=null |
wadm get-admin-ldap-auth-prop --user=admin --host=serverhost --password-file=../admin.passwd --port=8989 --ssl=true --no-prompt rcfile=null allow-group |
See CLI Reference, get-admin-ldap-auth-prop(1)