CONTENTS   NextPrevious  



Administration

Shell language is used for cluster administration. The administration is accomplished through telnet clients,applets that simulate telnet client, or other clients. It monitors the processes started by the cluster, and provides the opportunity for a quick and adequate intervention when problems occur. It also automates the processes of the cluster components’ administration.

Shell Language Conventions

The following conventions are used when using the Shell language commands:

Help

To view the help messages for each command, type the command and -? , -h , or –help on the command line – for example:

COMMAND -?

Adding a Group of Commands

The Console Administrator Shell commands can be used after they are added to the Shell environment. When starting SAP J2EE Engine 6.20, the only groups of commands available are ADMIN and SYSTEM, because of their vital importance.

To add a group of commands to the Shell environment, type

ADD [groupName]

on the command line. To view all groups of commands, do not specify the [groupName] variable.

To view all groups and their commands added to the Shell environment, execute the MAN command.

System Variables

Examples:
>SET  $ECHO = ON
>SET  $A = 5
>ECHO  $A
>ECHO 5
>5
>SET  $ECHO = OFF
>SET  $A = 5
>ECHO  $A
>5

Previous  Next