Document revision date: 15 July 2002
[Compaq] [Go to the documentation home page] [How to order documentation] [Help on this site] [How to contact us]
[OpenVMS documentation]

OpenVMS System Manager's Manual


Previous Contents Index

25.3.1 Server Management Commands

Table 25-1 summarizes InfoServer commands and their functions.

Table 25-1 Summary of InfoServer Commands
Command Function
BACKUP Saves InfoServer-formatted disks.
BIND Establishes a connection to the specified ODS-2 service and creates the virtual device VDK1 for that service.
CLEAR Erases the console terminal screen.
COPY Copies data from one disk or partition to another.
CRASH Causes the server software to take a recognizable bugcheck, creating a dump if crashdump processing is enabled.
CREATE Creates a new partition or service.
DELETE Deletes a partition or service that was previously created.
DISCONNECT Terminates a LASTport or LAT terminal server session.
ERASE Erases the specified disk or partition; erases FUNCTIONS or SERVICES data from nonvolatile random-access memory (NVRAM).
EXIT Terminates the management session.
HELP Displays help text for the InfoServer commands.
INITIALIZE Formats a read/write disk into an InfoServer disk.
LOOP Automatically repeats any valid InfoServer command.
MONITOR Automatically repeats valid InfoServer commands every
3 seconds, clearing the screen and placing the cursor at the home position.
PURGE Purges old versions of VXT software.
REBOOT Shuts down and reboots the server.
RECORD Records data from an InfoServer disk or partition to a compact disc.
RESTORE Resets the server to a previously saved system configuration.
RETRIEVE Restores InfoServer-formatted disks saved by the BACKUP command.
REWIND Rewinds an InfoServer tape.
SAVE Saves configuration and service data for recovery after a server reboot.
SET Sets partition, service, or server parameters.
SHOW Displays the server's parameters and counters.
UNBIND Deletes the VDK1 virtual device and terminates the connection to the remote service.
UNLOAD Rewinds and unloads an InfoServer tape.
UPDATE Installs one or more new software products or functions.
VERIFY Validates the on-disk structure of a device formatted with the INITIALIZE command.
ZERO Sets internal server counters to 0.

The InfoServer system provides a Help facility that contains information about each server command, including parameters, qualifiers, and examples of its use. For detailed information about InfoServer commands, refer to the InfoServer System Operations Guide.

25.4 Understanding InfoServer Client for OpenVMS Functions

InfoServer Client for OpenVMS software enables clients running the OpenVMS operating system to access virtual device services offered by InfoServer systems on a LAN. Software components include the following ones:

25.5 Understanding LASTCP Utility Functions

InfoServer Client for OpenVMS software uses the LASTport protocol to communicate with InfoServer systems on an extended LAN. The protocol is implemented in the OpenVMS device driver ESS$LASTDRIVER.

The LASTport Control Program (LASTCP) utility is the management interface that allows you to control and diagnose ESS$LASTDRIVER. You can use LASTCP to perform the following tasks:

The description of the LASTCP utility covers the following topics:

25.5.1 Invoking and Exiting the LASTCP Utility

Use of LASTCP requires normal privileges, except where noted. To invoke LASTCP, enter the following command:


$ RUN SYS$SYSTEM:ESS$LASTCP
%LASTCP-I-VERSION, ESS$LASTDRIVER V1.5 is running
LASTCP> 

At the LASTCP> prompt, you can enter LASTCP commands. To exit the utility, enter EXIT or press Ctrl/Z at the LASTCP> prompt.

You can also execute a single LASTCP command by using a DCL string assignment statement, as shown in the following example:


$ LASTCP :== $ESS$LASTCP
$ LASTCP SHOW CLIENTS

LASTCP executes the SHOW CLIENTS command and returns control to DCL command level.

25.5.2 LASTCP Command Summary

Table 25-2 summarizes LASTCP commands and their functions.

Table 25-2 Summary of LASTCP Commands
Command Function
EXIT Returns the user to DCL command level
HELP Displays HELP text for LASTCP commands
SHOW CIRCUIT COUNTERS Displays circuit counters
SHOW CLIENTS Displays known clients
SHOW LINE COUNTERS Displays line counters
SHOW NODE CHARACTERISTICS Displays node characteristics
SHOW NODE COUNTERS Displays node counters
SHOW SERVERS Displays known servers
SHOW STATUS Displays local status
SHOW TRANSPORT COUNTERS Displays transport counters
START TRANSPORT Starts LASTDRIVER
STOP TRANSPORT Stops LASTDRIVER
ZERO COUNTERS Resets counters

You can abbreviate LASTCP commands to the first unique characters of the command verb. For example, you can abbreviate the command SHOW SERVERS to SH SE.

LASTCP provides a Help facility that contains information about each command and its parameters and qualifiers, as well as examples of its use. For a complete description of LASTCP commands, refer to the InfoServer Client for OpenVMS LASTCP and LADCP Utilities manual.

25.5.3 Starting InfoServer Client for OpenVMS Software Automatically

You must start InfoServer Client for OpenVMS software using the ESS$STARTUP command procedure. To make sure the software is started automatically each time the system reboots, execute the startup procedure from within SYSTARTUP_VMS.COM.

How to Perform This Task

  1. Determine the value of SCSNODE, your system's node name parameter. If the parameter is defined as the null string (the default value), InfoServer Client for OpenVMS software does not start.
    If you are running or plan to run DECnet for OpenVMS, SCSNODE must be defined as the system's DECnet node name. If you do not plan to run DECnet, and if the system is an OpenVMS cluster member, SCSNODE must be defined as the SCS system name, a 1- to 8-character node name that is unique in the cluster.
    To determine the value of SCSNODE, enter the following commands to invoke SYSMAN and display the parameter:


    $ RUN SYS$SYSTEM:SYSMAN
    SYSMAN> PARAMETERS USE CURRENT
    SYSMAN> PARAMETERS SHOW SCSNODE
    

  2. If SCSNODE is defined as the null string, perform these steps:
    1. Enter a command in the following format, where node-name is the system's DECnet node name or (if you do not plan to run DECnet for OpenVMS) the SCS system name:

      PARAMETERS SET SCSNODE "node-name"


      For example:


      SYSMAN> PARAMETERS SET SCSNODE "MYNODE"
      

    2. Enter the following commands to write the new value to the parameter file and exit from SYSMAN:


      SYSMAN> PARAMETERS WRITE CURRENT
      SYSMAN> EXIT
      

    3. Add a line in the following format to the AUTOGEN parameter file SYS$SYSTEM:MODPARAMS.DAT to define the SCSNODE parameter:

      SCSNODE = "node-name"


      For example:


      SCSNODE = "MYNODE" 
      

  3. Invoke any editor to edit SYS$MANAGER:SYSTARTUP_VMS.COM and find the command that starts InfoServer Client software. For example:


    $ @SYS$STARTUP:ESS$STARTUP DISK 
    

    Note that the parameters CLIENT and DISK are synonymous. If the command is preceded by the DCL comment delimiter (!), remove the delimiter. To enable tape functions, add the TAPE parameter to the command line:


    $ @SYS$STARTUP:ESS$STARTUP DISK TAPE 
    

  4. If SYSTARTUP_VMS.COM invokes the DECnet for OpenVMS startup procedure (SYS$MANAGER:STARTNET.COM), make sure SYSTARTUP_VMS.COM executes the InfoServer Client for OpenVMS startup procedure after invoking STARTNET.COM.
    The following example shows the network startup command line followed by the InfoServer Client for OpenVMS startup command line. Note that if you omit the TAPE parameter, only the disk function is started.


    $ @SYS$MANAGER:STARTNET
       .
       .
       .
    $ @SYS$STARTUP:ESS$STARTUP DISK TAPE 
    

  5. Optionally, edit the file SYS$STARTUP:ESS$LAST_STARTUP.DAT to specify desired startup qualifiers for the LASTport transport. (Refer to the InfoServer Client for OpenVMS LASTCP and LADCP Utilities manual.)

25.5.4 InfoServer Client Can Fail to Start If DECnet Is Started or Stopped

The InfoServer client software fails to start on a system where DECnet has been started and subsequently stopped. The following message will be found in the file SYS$MANAGER:ESS$STARTUP.LOG:


%ESS-I-NONET ESS started before DECnet.  4-MAR-2000 16:36:39.29 

If the InfoServer client must be started at this point, the LASTport transport can be started with the Last Control Program using the following command:


$ MCR ESS$LASTCP
LASTCP> START

This command will start the transport. You may now execute the InfoServer client startup:


$ @SYS$STARTUP:ESS$STARTUP DISK

Because the transport is already started, the startup will run successfully.

25.5.5 Multiple Controllers Configured But Not All Attached to Media (Alpha Only)

If you have multiple Ethernet and FDDI controllers configured on your OpenVMS Alpha system, you might experience problems with the InfoServer client transport (LASTport) under either of the following conditions:

Problems can range from not being able to access all the services available on the network, if you have four or more controllers configured, to a system crash.

To avoid these problems, specify only the controllers that are attached to media. Compaq recommends that you do this by first editing your SYS$STARTUP:ESS$LAST_STARTUP.DAT data file to specify only the controllers that are attached and then restarting your system.

With certain controller configurations, if you specify controllers that are not attached, your system might crash when you issue the following command sequence:


$ MC ESS$LASTCP 
LASTCP> STOP 

An example of how to edit the SYS$STARTUP:ESS$LAST_STARTUP.DAT file follows. The unedited file is shown first, followed by an edited file.


!++ 
! This file will be used to set the appropriate LASTCP qualifiers. The following 
! LASTCP qualifiers: ALL_CONTROLLERS, CHECKSUM, TRANSMIT_QUOTA, or SLOW_MODE 
! can be set by using the following statement format: 
! LASTCP qualifier = 1 to enable   e.g. SLOW_MODE = 1 enables  SLOW_MODE 
! LASTCP qualifier = 0 to disable  e.g. SLOW_MODE = 0 disables SLOW_MODE 
! The remaining LASTCP qualifiers will require the appropriate value settings. 
! DEVICE          = (list-of-devices) 
! TIMEOUT    = n    minimum interval in seconds 
! CIRCUIT_MAXIMUM = n    maximum number of nodes  
! GROUP           = n    Group number 
! NODE_NAME       = name   Node name 
! CONTROLLERS     = ([{controller letter,}...]) Controller list 
! TRANSMIT_QUOTA  = n    Number of transmit buffers 
!-- 
ALL_CONTROLLERS = ON 

The edited SYS$STARTUP:ESS$LAST_STARTUP.DAT file follows. This example assumes you have ESA, ETA, EXA, EZA controllers configured on your system and that only the ESA controller is attached to the Ethernet wire.


 
!++ 
! This file will be used to set the appropriate LASTCP qualifiers. The following 
! LASTCP qualifiers: ALL_CONTROLLERS, CHECKSUM, TRANSMIT_QUOTA, or SLOW_MODE 
! can be set by using the following statement format: 
! LASTCP qualifier = 1 to enable   e.g. SLOW_MODE = 1 enables  SLOW_MODE 
! LASTCP qualifier = 0 to disable  e.g. SLOW_MODE = 0 disables SLOW_MODE 
! The remaining LASTCP qualifiers will require the appropriate value settings. 
! DEVICE          = (list-of-devices) 
! TIMEOUT    = n    minimum interval in seconds 
! CIRCUIT_MAXIMUM = n    maximum number of nodes  
! GROUP           = n    Group number 
! NODE_NAME       = name   Node name 
! CONTROLLERS     = ([{controller letter,}...]) Controller list 
! TRANSMIT_QUOTA  = n    Number of transmit buffers 
!-- 
ALL_CONTROLLERS = OFF 
DEVICE = (ESA) 

Note

The default ESS$LAST_STARTUP.DAT file is stored in SYS$COMMON:[SYS$STARTUP]. You might want to put the edited file in SYS$SPECIFIC:[SYS$STARTUP]. Otherwise, other system roots might be affected.

25.5.6 Startup Restrictions: PATHWORKS and RSM

If PATHWORKS or Remote System Manager (RSM) or both are installed, the InfoServer Client for OpenVMS startup must be run before the startup for PATHWORKS or RSM, or both. For example:


$ @SYS$MANAGER:STARTNET
   .
   .
   .
$ @SYS$STARTUP:ESS$STARTUP DISK TAPE
$ @SYS$STARTUP:PCFS_STARTUP
$ @SYS$STARTUP:RSM$SERVER_STARTUP

InfoServer Client for OpenVMS software provides device drivers and control programs that are shared by both the PATHWORKS and RSM products. All InfoServer Client for OpenVMS components are prefixed with ESS$. The drivers and control programs supplied with InfoServer Client for OpenVMS software provide all necessary support for both PATHWORKS and RSM in addition to InfoServer Client support. You must execute the InfoServer Client for OpenVMS startup in the site-specific startup before executing either the PATHWORKS or RSM startup procedure.

25.5.7 Startup Restrictions: SYSMAN

You cannot start InfoServer Client for OpenVMS from a subprocess. Because the OpenVMS System Management utility (SYSMAN) uses subprocesses to complete its tasks on remote nodes, SYSMAN cannot be used to execute the SYS$STARTUP:ESS$STARTUP procedure.

25.5.8 User Account Requirements

To work with InfoServer Client for OpenVMS software, user accounts on your system must have the following privileges and quotas:

Refer to the AUTHORIZE section in the OpenVMS System Management Utilities Reference Manual for an explanation of how to verify and change account privileges and quotas.

25.5.9 System Parameter MAXBUF Requirement

To use all the LASTport Control Program (LASTCP) utility's SHOW functions, you must set the value of the system parameter MAXBUF to 32000 or greater.

25.6 Understanding LADCP Utility Functions

Use the LAD Control Program (LADCP) utility to configure and control the LASTport/Disk and LASTport/Tape protocols on OpenVMS systems. OpenVMS systems that use LASTport/Disk and LASTport/Tape services are called client systems. You can use LADCP to perform the following tasks:

You can control service access by using a service access password. You can also write-protect services. In this case, local OpenVMS users of a DADn: or MADn: device unit receive an error if they attempt a write operation to the unit.

The protocols allow you to access storage devices that reside on an InfoServer system as though they are locally connected to your OpenVMS system. Thus, several OpenVMS client systems can share the same read-only media, eliminating the need for duplicate drives and media.

DADn: and MADn: device units are also referred to as virtual device units. They represent the local OpenVMS context for a volume that resides on a remote server. The OpenVMS driver that controls the DADn: units is called ESS$DADDRIVER. The OpenVMS driver that controls the MADn: units is called ESS$MADDRIVER.

The LASTport/Disk and LASTport/Tape protocols depend on the LASTport transport. The ESS$STARTUP.COM command procedure in SYS$STARTUP automatically loads ESS$DADDRIVER and ESS$MADDRIVER as well as ESS$LASTDRIVER, the LASTport transport driver.

Note

Your site-specific startup command procedure must include a call to ESS$STARTUP.COM. If you are using DECnet software, you must place the call after the @SYS$MANAGER:STARTNET.COM command that starts DECnet software. See Section 25.5.3.


Previous Next Contents Index

  [Go to the documentation home page] [How to order documentation] [Help on this site] [How to contact us]  
  privacy and legal statement  
6017PRO_101.HTML