GemStone Utility Commands

Previous chapter

Next chapter

GemStone provides the following utility commands in the $GEMSTONE/bin directory.

copydbf

copydbf sourceFile destFileOrDir [ -C | -z | -Z | -u ] [ -E ] [ -f filePrefix ] [ -Mbytes ] [ -l | -| -] [ -F ]

Copy an extent, transaction log or backup file, converting per the arguments.

copydbf sourceFile ( -a stdout ) [ -C | -z | -Z | -u ] [ -l | -| -]

Copy an extent, transaction log or backup file to stdout.

copydbf sourceFile -i | -I

Report information on an extent, transaction log or backup file to stdout.

copydbf -h | -v

Report information on the copydbf utility to stdout.

copydbf -V sourceFile [-K keyRingDirs]

Verify a digitally signed backup.

copydbf sourceFile destFile -e encryptionCert -s keyLength -K dir-K dir+ ]

Encrypt an extent or transaction log.

copydbf sourceFile destFile -D privKey -K dir-K dir+ ] [ -j passPhrase |  -J pfFile ] [ -O ]

Decrypt an encrypted extent, transaction log or backup file.

copydbf sourceFile -W encrCertFN | -X signCertFN | -Y sigFN

Extract the encryption certificate from an encrypted extent, transaction log or backup file.

sourceFile

The source file or raw partition (containing an extent, a transaction log, or a backup file created by fullBackupTo:).

destFileOrDir

The destination file, directory, or raw partition. If destFileOrDir is a file system directory (the trailing / is optional), the resulting filename will have the same name as sourceFile, with the appropriate extension added if necessary. Use of /dev/null as the destination is supported only for files as a means of verifying that the file is readable.

-a

Write output to stdout, rather than to a disk file.

-C

Write the entire output file compressed, in gzip format (identical to the -z option). The output must be a non-encrypted filesystem file that is not already gzipped. If the filename does not end in .gz, a .gz is automatically appended.

-d

Dry run; reports the output as if the copydbf operation was performed, but does not actually make a copy.

-D privateKey

Decrypt: Use privateKey to decrypt into the destination. Applies for extents, transaction logs and backups. Requires -K, and if the private key has a passphrase, also -j or -J.

-e encryptionCert

Encrypt: Use encryptionCert to encrypt into the destination. Applies for extents or transaction log, not for backups (which require a digital signature). Requires -s and -K.

-E

Ignore disk read errors. If the disk read error occurs while reading an extent root page, the copy will fail. Otherwise, pages of the source file that cannot be read will be replaced with an invalid-page-kind page in the destination file. The destination file may not be usable.

This option only applies to extents, not to transaction logs or backup files.

-f fileName

If destFileOrDir is a file system directory, then fileName is the destination file name, with the appropriate extension added. If destFileOrDir is a filename or anything other than a file system directory, this option has no effect.

-F

(flush) Use fsync(2) to flush all data to disk before exit.

-h

Print usage and exit.

-i

Information only. When this option is present without destFileOrDir, information about sourceNRS is printed without performing a file copy. Does not require keys to report information on encrypted files.

-I

Full information only. The same information is printed as for -i. In addition, if the file is a transaction log, all checkpoint times found are listed rather than only the last one. Does not require keys to report information on encrypted files.

-j Passphrase

Use the given passphrase to read the private key specified by -D.

-J pfFile

Use the passphrase contained in file pfFile to read the private key specified by -D. pfFile must be the full path and filename.

-K keyRingDirs

List of colon-separated directories which contain keys and certificates. This is required for all operations on encrypted or signed dbf files.

-l

Least-significant-byte ordering for the destFileOrDir. This byte ordering is the native byte ordering for Intel processors. May not be used when copying encrypted dbf files.

-m

Most-significant-byte ordering for the destFileOrDir. This byte ordering is the native byte ordering for AIX and Solaris SPARC processors. May not be used when copying encrypted dbf files.

-O

(encrypted extents only) Override the requirement that an extent must have been cleanly shutown. Use with caution.

-P

Preserve byte ordering. This option creates the destination file using the byte ordering found in the source file. The default is to write the file using the host’s native byte ordering.

-s keyLength

When encrypting an extent or tranlogs, specifies the encryption key length in bits. Legal values are 128 and 256; 128 specifies AES-XTR-128, 256 specifies AES-XTR-256. Requires -e and -K.

stdout

equivalent to -a, write the output to stdout.

-u

Uncompress the resulting copy; only valid on gzipped or lz4-zipped source files.

-v

Print version and exit.

-V

Verify the digital signature of a secure backup. This requires the -K command line option, which must contain a public cert corresponding to one of the private keys used to sign the backup.

-W encrCertFN

Extract the public encryption cert from the encrypted extent, transaction log, or backup. Creates a new file with the given name containing the encryption certificate; for encrypted backups, more than one certificate file may be created. Cannot be used with other write options on a single command line.

-X signCertFN

Extract the public signing cert from a secure backup. Creates a new file with the name signCertFN containing the signing certificate from the secure backup. Cannot be used with other write options on a single command line.

-Y sigFN

Extract the digital signature from a secure backup. Creates a new file with the name sigFN containing the digital signature from the secure backup to file. Cannot be used with other write options on a single command line.

-z

Write the output file compressed, in gzip format; the same as the -C option. The output must be a non-encrypted filesystem file that is not already gzipped. If the filename does not end in .gz, a .gz is automatically appended.

-Z

Write the output file compressed, in LZ4 format. The output must be a non-encrypted filesystem file that is not already LZ4-zipped. If the filename does not end in .lz4, a .lz4 is automatically appended.

copydbf reads GemStone extent files, transaction logs, and backups, and either reports the details, or writes a copy of the file with or without performing state changes such as compression/ decompression, encryption/unencryption, and byte order changes. Finally, you can use copydbf to extract the public key from an encrypted file.

For a copy that does not involve raw partitions and does not make state changes, GemStone repository files can be copied using the ordinary cp command, as well as using copydbf.

To make copies of extent files or transaction logs, the user executing copydbf must have read permission to the file. If you attempt to copy extent files that are in use, and if checkpoints are not suspended, the resulting repository may be corrupt and unusable. See How To Make an Extent Snapshot Backup for more information.

copydbf reports information about the file that is being copied.

For example, the following makes a copy of a clean GemStone extent into the data directory:

unix> copydbf $GEMSTONE/bin/extent0.dbf $GEMSTONE/data
Source file: /gshost/GemStone3.6/bin/extent0.dbf
	File type: extent  fileId: 0 in a repository with 1 files
   File size: 50331648 bytes (48 MB), 3072 records
   ByteOrder: Intel (LSB first)  compatibilityLevel: 844 
   Last checkpoint written at: 2020-08-25-14:45:55.867.
   Extent was shutdown cleanly; no recovery needed.
   GemStone Version: 3.6.0, Tue Aug 25 14:14:38 2020 15f18029e261d
Destination file: /gshost/GemStone3.6/data/extent0.dbf

Compression of copydbf output

copydbf preserves the compression state of the original. The output of copydbf can be compressed during the copy using gzip (-C or -z) or LZ4 (-Z) compression . Restore from backup, transaction log restore, and copydbf can read all compression types.

Compresssed backups, transaction logs and extents can be uncompressed using -u.

copydbf will append the correct extension (.gz., .lz4, .dbf, or .sdbf) to the destination filename, if the copydbf target filename does not already end in that extension.

Encrypted files cannot be compressed or uncompressed using copydbf.

Byte Order

GemStone executables write .dbf files in the native byte ordering for the platform they are executing on. When moving between operating systems with different byte orderings, such as between AIX/RS6000 and Linux/x8664, it is strongly recommneded to use copydbf to update the byte order. Files with non-native byte order can be used, but are inefficient. See the -l and -m arguments.

You cannot change the byte order for encrypted dbf files.

Using copydbf to access information on a file

To obtain the same source file information (but not the size) without making a copy, use the second form of the command: copydbf -i sourceFile. In this usage, you do not specify a destination.

The following copydbf -i example displays information for an extent, and indicates the oldest transaction log that would be needed to recover from a system crash:

unix> copydbf -i $GEMSTONE/bin/extent0.dbf
Source file: /users/GemStone/bin/extent0.dbf
File type: extent  fileId: 0 in a repository with 1 files
   File size: 50331648 bytes (48 MB), 3072 records
   ByteOrder: Intel (LSB first)  compatibilityLevel: 844 
   Last checkpoint written at: 2020-08-25-14:45:55.867.
   Extent was shutdown cleanly; no recovery needed.
   GemStone Version: 3.6.0, Tue Aug 25 14:14:38 2020 15f18029e261d
   Encryption: NONE
 

The next example displays information for a backup, and indicates the oldest transaction log that would be needed to restore subsequent transactions.

unix> copydbf -i backup.dat
Source file: /gshost/GemStone3.6/backup.dbf
File type: backup  fileId: 0 in a backup set with 1 files
   File size: 49152000 bytes (46 MB), 375 records
   ByteOrder: Intel (LSB first)  compatibilityLevel: 860 
   The file was created at: 08/18/2020 16:00:30 PDT
   Full backup started from checkpoint at: 08/18/2020 16:00:29 PDT.
   Oldest tranlog needed for restore is fileId 3 ( tranlog3.dbf ).
   Backup was created by GemStone Version: 3.6.0, Mon Aug 17 12:48:07 2020 578cbcb16e15383f.
   Backup Attributes:
         Compression: NONE
          Encryption: NONE
      Signature Hash: NONE
     Encryption Keys: 0
 

For a listing of all checkpoints recorded in a transaction log, use copydbf -I sourceFile. This information is helpful in restoring a GemStone backup to a particular point in time. For example:

unix> copydbf -I tranlog5.sdbf
Source file: /gshost/GemStone3.6/tranlogs/tranlog5.sdbf
   File type: secure tranlog  fileId: 5 
   File size: 14336 bytes (14 KB), 28 records
   ByteOrder: Intel (LSB first)  compatibilityLevel: 950 
   The file was created at: 08/26/2020 13:17:53 PDT
   The previous file last recordId is  8
   Encryption: AES_256_XTS
   Scanning tranlog to find last checkpoint...
   Checkpoint 1 started at: 08/26/2020 13:17:52 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 2 started at: 08/26/2020 13:17:52 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 3 started at: 08/26/2020 13:17:52 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 4 started at: 08/26/2020 13:18:57 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 5 started at: 08/26/2020 13:19:06 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 6 started at: 08/26/2020 13:24:07 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 7 started at: 08/26/2020 15:48:09 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 8 started at: 08/26/2020 16:44:47 PDT.
     oldest transaction references fileId -1 ( this file ).
   Checkpoint 9 started at: 08/26/2020 16:45:35 PDT.
     oldest transaction references fileId -1 ( this file ).

copydbf with raw partitions

To moved extent files or transaction logs onto or off of raw partitions, you should use copydbf. copydbf of backup files to raw partitions is not supported.

The following example copies a fresh repository extent to an existing raw disk partition. If the raw partition already contains a repository file or backup, use removedbf first to mark it as being empty.

unix> copydbf $GEMSTONE/bin/extent0.dbf /dev/rsd3h

Copying a transaction log from a raw partition to a file system directory generates a file name having the same form as if that transaction log had originated in a file system. If the internal fileId is 43, this example would name the destination file /dsk1/tranlogs/tranlog43.dbf:

unix> copydbf /dev/rsd3h /dsk1/tranlogs/
 

copydbf with encrypted backups, extents, and transaction logs

copydbf can copy encrypted files without special arguments; the contents are copied without decryption. The -e, -s, -k, -D, -j, -J, and -O flags apply to encrypting and decrypting dbf files. Note that you cannot encrypt a backup file using copydbf, although you can decrypt an encrypted backup.

copydbf for encrypted dbf files does not allow encryption, or changes to byte order.

To change the encryption key for a .dbf file, without a separate decrypt and re-encryption, you an use updatesecuredbf, which changes the encryption key in place.

You can extract the public key of an encrypted .dbf using the -W argument. With a secure backup, which is also signed, you can also verify the signature and extract the signature and signing key using copydbf with the -V, -X or -Y arguments.

See Chapter 12, “Encrypted Extents and Transaction Logs” for details on using copydbf to manage encrypted extents and transaction logs.

gemnetobject

The gemnetobject script is not invoked on the command line. It, and related scripts such as gemnetdebug, are used to set the environment and invoke the Gem process during an RPC login.

Some of the arguments to gemnetobject are passed in by the NetLDI process, but other arguments can be included with the gemnetobject specification during login. This allows specification of the Gem environment for a specific login without requiring the definition of a configuration file.

gemnetobject -h

gemnetobject TCP socketFD -T tocSizeKB ] [ -N nativeCodeArg ] [ -e exeConfPath ] [ -C configParamsString ]-U ignoredArg ] otherApplicationArgs

socketFD

File descriptor of client socket inherited from fork. Provided automatically by NetLDI.

-e exeConfPath

Passes in a configuration file; the settings in the specified configuration file override environment settings.

-configParamsString

The argument is a string containing configuration value settings. Multiple configuration parameter settings are accepted, and must be separated by ‘;’ (with no additional spaces).

-h

print help text.

-N nativeCodeArg

Arguments are 0, 1, or 2. A setting overrides other settings for GEM_NATIVE_CODE_ENABLED.

-T tocSizeKB

a setting overrides other settings for GEM_TEMPOBJ_CACHE_SIZE.

-U ignoredArg

Argument to be passed to and ignored by the Gem.

otherApplicationArgs

Other application-specific arguments may be included, which are passed to the Gem without interpretation.

The user-supplied arguments -e, -C, -N, and -T may be specified in any order. If any individual argument is included twice, only the last specification is used.

Any other arguments or tokens can be included at the end or within the string passed to gemnetobject.

All arguments, including ignoredArg and otherApplicationArgs, are passed to the Gem and available to the application via System class >> commandLineArguments.

The Gem configuration parameters to be used by the Gem are determined in the following precedence order.

The system configuration file is the first one found when searching:

The executable configuration file is the first one found when searching:

The higher precedence setting is used and lower precedence settings are ignored. If there are multiple settings for a specific parameter at the same level, that is in the same executable or system configuration file, or within the -C argument, the last one that is found applies and earlier settings for that parameter within the file or string are ignored.

The following variants of gemnetobject are included in the distribution. Any of these can be used in place of gemnetobject.

gemnetdebug—sets debugging environment variables that are particularly useful for debugging memory issues

gemnetobject_noop—starts a non-optimized Gem executable

gemnetobject_slow—starts a slow Gem executable with assertion checks

gemnetobject_keeplog—starts an ordinary Gem executable, configured to not delete the gem log on clean shutdown.

Examples

gemnetobject is used in topaz, GemBuilder for Smalltalk, and GemBuilder for C applications in the login parameters for gemnetid. The following examples are in topaz.

Note that single quotes may be needed when the gemnetid arguments include spaces.

topaz> set gemnetid 'gemnetobject -T 500MB -e devStone.conf'

This example passes in a temporary object cache size and a configuration file named devStone.conf with other configuration parameter settings.

topaz> set gemnetid '!#netldi:54321!gemnetobject -C GEM_RPCGCI_TIMEOUT=5;GEM_ABORT_MAX_CRS=2; -N 1 devStone'

This example specifies NetLDI port (54321) to fork the Gem. It includes two configuration parameter settings and modifies the Native Code setting. The token devStone is ignored, but visible in ps output and can be used by code that fetches the command line arguments.

Error checking

Note that minimal argument error checking is done and unrecognized tokens or invalid argument values are ignored during login. Check the gem log to ensure that intended values are used.

For example, an extra space as in the following, results in the second configuration value silently being ignored:

'gemnetobject -C GEM_RPCGCI_TIMEOUT=5; GEM_ABORT_MAX_CRS=2;'

gslist

gslist [ -c ] [ -l | -p | -x ] [ -H ] [ -m host ]+ [ [ -nname ]+ [ -N netldiName ] [ -q ] [ -s key|-S key ] [ -t secs ] [ -u user ] [ -v ] [ -U certFile -R keyFile -J caCertFile ]+

gslist -h | -V

-c

Removes locks left by servers that have been killed.

-h

Print usage and exit.

-H

Include HostAgent processes in the output. By default, gslist does not report HostAgent processes. HostAgents are support processes for X509-Secured GemStone.

-j

Print extra long listing in JSON format to stdout. The listing always implictly behaves as if -q and -x were specified.

-J caCertFile

To list processes started with X509-Secured GemStone. Specify an X509 CA certificate file. -R and -U must also be specified.

-l

Prints a long listing (includes pid and port).

-m host

Only list servers on machine host; default is ‘.’ which represents the local host. If not the local host, the machine host must be running a compatible version of NetLDI, and the -N argument is required if it is not running with the default name in the environment of gslist.

-n name

Only list the server name.

-N netldiName

When -m is used, -N specifies name of netldi to contact on remote host. Default is name specified in GEMSTONE_NRS_ALL environment variable, otherwise name is 'gs64ldi'.

-p

Prints only the pid (process id), or 0 if the server does not exist.

-q

(Quiet.) Don’t print any extra information; intended for use when the output will be processed by some other program.

-R keyFile

To list processes started with X509-Secured GemStone. Specify an X509 private host key file. -J and -U must also be specified.

-s key

Sort results by the given sort key. Legal key values:

 

name   sort by process name (default).

owner   sort by process owner.

time   sort by process start time.

type   sort by process type.

version   sort by process version.

-S key

Same as -s except results are sorted in reverse order.

-t secs

Wait secs seconds for server to respond (only with -v); default is 2 seconds.

-u user

Only list servers started by user.

-U certFile

To list processes started with X509-Secured GemStone. Specify an X509 public host certificate file. -J and -U must also be specified.

-v

Verify the status of each server.

-V

Print the version information and exit.

-x

Prints an exhaustive listing, with each item on a separate line.

The gslist command prints information about GemStone servers. The default listing prints the following server attributes in columns:

Status

One of the following:

 

contRestore   Continous restore for hot standby (-v only)

exe deleted   server process running from a deleted or overwritten executable

exists   server process exists but is not verified

frozen  server is not responding (-v only)

full   server can’t accept any more clients (-v only)

killed   server process does not exist

OK   server is accepting clients (-v only)

restoreBkup server is in restore from backup (-v only)

restoreLogs  server is in restore from logs mode (-v only)

recovery   Restart after unclean shutdown in progress (-v only)

startup   server process is not yet accepting clients (-v only)

stutdown   server process is in shutdown (-v only)

Version

GemStone version of the server.

Owner

The account name of the user who created the server.

Started

The date and time that the server was started.

Type

One of the following: Netldi, Stone, cache (shared page cache monitor), logsender, logreceiver, or hostagent.

Name

The server’s name.

When you include the -l or -x option, the following additional columns are printed:

Pid

The process id of the server’s main process.

Port

The port number of the server’s listening socket.

The -x option prints the preceding attributes on separate lines, and adds lines for the following as appropriate:

options

Options used when the server was started.

logfile

Full path of server’s log file, if it exists.

sysconf

The GemStone system configuration file. See System Configuration File.

execonf

The GemStone executable configuration file. See Executable Configuration File.

GEMSTONE

Root of the product tree used by the server.

If many servers are reported as frozen to gslist -v, try increasing -t secs.

By default, status is returned for all servers on the current host. To specify a particular server, use the -n switch, or just include the server name on the command line (since the -n is optional). To specify multiple server names, include the -n name option for each server.

Remote queries

The -m option allows you to list servers on a remote host. To specify more than one remote host, include the -m host option multiple times, one for each host. Names on remote hosts are prefixed by host:, where host is the name of the remote machine.

To list servers on a remote host, gslist must be able to contact a NetLDI running on the remote machine.

  • The remote NetLDI must be a GemStone version that is compatible with the version of gslist. This limitation applies to the remote NetLDI, but not to the Stone and other server processes on the remote host, for which gslist fetches information.
  • The remote NetLDI must be named with the default name, or the -N argument should be included to specify the name. The default name here is the default for the environment in which gslist is running. This is either “gs64ldi”, or a name specified by $GEMSTONE_NRS_ALL.

Date and Time format

The date and time that the process started is normally printed in a format specific to gslist and fitting into the table display. To get a parse-able but potentially less readable format, you may use the environment variable GS_GSLIST_TIME_FORMAT to specify a UNIX-style date format string.

Json output

gslist -j provides the gslist -x contents, but in json format. This can be easily processed as needed for system administration. For example:

(JsonParser new parse: (System performOnServer: 'gslist -j')

This creates a structure of Dictionaries and Arrays in GemStone Smalltalk containing all information about all GemStone services. Note that all keys and values in the output are capitalized. This includes gslist status values (such as ’Exists’), and command line arguments.

Exit status

The exit status has the following values:

0       Operation was successful.
1       No servers were found.
2       A stale lock was removed (in response to -c switch).
3, 4   An error occurred.

largememorypages

largememorypages [ -e exeConfig ] [ -z systemConfig ] [ -M sharedCacheKB ] [ -P maxProcesses ] [ -C maxSharedCounters ] [ -p largeMemoryPageSize ]

largememorypages -h

-C maxSharedCounters

Overrides the setting for SHR_PAGE_CACHE_NUM_SHARED_COUNTERS in a configuration file.

-e exeConfig

The GemStone executable configuration file. See Executable Configuration File.

-h

Print usage and exit.

-M sharedCacheKB

The shared cache size. The default unit is MB, but KB or GB can also be used. Overrides the setting for SHR_PAGE_CACHE_SIZE in a configuration file.

-p largeMemoryPageSize

Used on Linux only. The intended large memory page size, legal values must resolve to 2MB or 1024MB. The default is 2MB.

The default unit is MB, but KB or GB can also be used. This overrides a setting for SHR_PAGE_CACHE_LARGE_MEMORY_PAGE_SIZE_MB in a configuration file.

-P maxProcesses

Overrides the setting for SHR_PAGE_CACHE_NUM_PROCS in a configuration file.

-systemConfig

The GemStone system configuration file. See System Configuration File.

largememorypages computes the number of large or huge memory pages that will be required for a given shared page cache size and other system requirements.

Large or huge memory pages are available for use with GemStone on Linux and AIX.

Large pages are not supported on other platforms.

Using the largememorypages utility is described in the Installation Guide for Linux and for AIX. For example:

unix> largememorypages  -M 20GB -C 1900 -P 200
Cache config is 1310720 pages = 20480 MB,  total is 21384 MB,
overhead 4% of configured size
Large page size requested is: 2 MB.
Large page overhead: 1.12 MB
For 1310720 pages, 200 processes and 1900 shared counters, 
10 pusherThreads
  required cache size is 22422749184 bytes.
Number of 2 MB large pages required: 10692

netldidebug

netldidebug [ -h ] netldiNameOrPort actionToTake

-h

Display a usage line and exits

netldiNameOrPort

The name or port of the NetLDI.

actionToTake

The action to take, which must one of the keywords enabledebug, extradebug, or disabledebug.

  • enabledebug turns on ordinary debugging (the equivalent of using startnetldi -d)
  • extradebug enables ordinary debug mode and also prints extra debugging for NRS handling
  • disabledebug turns off debugging.

The netldidebug command allows you to modify the debug state of a running NetLDI (that is, the state resulting from omitting or including -d with startnetldi), without the need to shut down and restart the NetLDI.

 

pageaudit

pageaudit [ gemStoneName ] [ -e exeConfig ] [ -z systemConfig ] [ -f ] [ -d ] [ -l logfile ]

pageaudit [ gemStoneName ] [ -e exeConfig ] [ -z systemConfig ] [ -f ] [ -d ] [ -l logFile ] [ -D privateKey -K dir-K dir+ ] [ -j passPhrase |  -J passphraseFile ]

pageaudit -h | -v

gemStoneName

Name of the GemStone repository monitor; the default is gs64stone-audit. Network resource syntax is not permitted.

-d

Disable audit of data pages. Only audit Object Table pages, bitmaps, and other non-data pages.

-D privateKey

For encrypted extents, specifies the private key file corresponding to the public key used to encrypt the extents. The file must be in PEM format. Requires -K, and if the private key has a passphrase, also -j or -J.

-e exeConfig

The GemStone executable configuration file. See Executable Configuration File.

-f

Keeps running beyond the first error, if possible

-h

Print usage and exit.

-j Passphrase

For encrypted extents, use the given passphrase to read the private key specified by -D.

-J passphraseFile

For encrypted extents, use the passphrase contained in file passphraseFile to read the private key specified by -D. passphraseFile must be the full path and filename.

-K keyRingDirs

For encrypted extents, specifies one or more colon-separated directories which contain keys and certificates. May be included more than once.

-l logfilename

Write output to the file with the given name. The file is created if it does not exist. If there is an existing file with this name, the pageaudit output is appended to the end of this file.

-n numSessions

Run with the specified number of sessions. The default is numExtents + numCpus.

-v

Print version and exit.

-systemConfig

The GemStone system configuration file. See System Configuration File.

Audit the pages in a GemStone repository, which must not be in use. pageaudit opens the repository specified by the relevant configuration files. The arguments -e exeConfig, and -z systemConfig determine which configuration files pageaudit reads.

pageaudit by default runs aggressively, using a large number of threads (based on the number of CPUs and extents for this system), in order to complete as quickly as possible; the -n option can be used to specify fewer threads, and reduce the impact on your system.

By default, all pages in the repository are verified; this includes data pages as well as Object Table, bitmap, and other pages containing internal information. Audit of data pages can be disabled using the -d option.

An error is returned if another Stone is running as gemStoneName or has opened the same repository.

When you include the -f switch, pageaudit prints all errors possible. Without -f, the default is to stop after the first error is found.

This utility can take a long time to run, so it is best to run it as a background job.

For additional information about pageaudit and a description of its output, see Page Audit.

printlogs

printlogs [ -h ] [ arguments, see below ] [ filters, see below ] all | tlog1...tlogN

Arguments

full

More detailed logs are produced. This may produce a VERY large amount of output.

all

Print out contents of all tranlogs in this directory.

keyring privKeyPath

the path to the directory containing the private key cert or file.

nostrings

Suppress the printing of String data in the output. Useful for security when sharing tranlog output.

nouserinfo

Suppress the printout of user information.

privkey keyFileName

filename of the private key or cert.

privkeypf keyPassphrase

Passphrase for the private key, if the key requires it.

privkeypffn fileContainingPassphrase

Full path to a file containing the passphrase for the private key, if the key requires it.

tlog1...tlogN

The specific tranlog or tranlogs to print. These must be a contiguous sequence in order. This or all is required.

-h

Print usage and exit.

Search filter criteria:

user username

Only print records for the specified GS UserProfile name.

host hostname

Only print records for the specified gem/topaz process host.

client X.X.X.X

Only print records for the specified client IP Address.

euid integer

Only print records for Gems with the specified effective UNIX user ID.

ruid integer

Only print records for Gems with the specified real UNIX user ID.

luid integer

Only print records for Gems with the specified login UNIX user ID.

euidstr string

Only print records for Gems with the specified effective UNIX user name.

ruidstr string

Only print records for Gems with the specified real UNIX user name.

luidstr string

Only print records for Gems with the specified login UNIX user name.

gempid integer

Only print records for Gems with the specified process ID.

sessionid integer

Only print records for Gems with the specified session ID.

 

printlogs prints out the contents of transaction logs in human-readable form. This may produce a very large amount of output; without filters, the output will be at least as large as the original and may be multiple times larger depending on the options used.

Tranlogs to be printed are by default named tranlogNNN.dbf. This can be overridden by setting the environment variable $GS_TRANLOG_PREFIX to the tranlog prefix.

When using multiple filters, records that match any of the filters are printed. Each filter key can be used only once.

A maximum of 256 transaction logs can be analyzed at once.

For details on using printlogs for tranlog analysis, see: http://downloads.gemtalksystems.com/docs/Other/SDoc-TranlogAnalysis-3.5/SDoc-TranlogAnalysis-3.5.htm.

Examples

To print out the entire contents of all tranlogs in the current working directory:

printlogs all

To print out all entries in a selected number of tranlogs:

printlogs tranlog5.dbf tranlog6.dbf tranlog7.dbf

To print out all tranlog entries for the user DataCurator in any tranlog:

printlogs user DataCurator all

To print out detailed information for all entries in tranlog5.dbf for the user DataCurator:

printlogs full user DataCurator tranlog5.dbf

pstack

pstack [ -b | -c | -C | -h ] processPid

processPid

The PID of a running GemStone process.

-b

Print brief C and Smalltalk stacks.

-C

Print brief C stack, omit Smalltalk stack.

-c

Print brief and full C stack, omit Smalltalk stack.

-h

Print usage and exit.

The pstack command attaches a debugger to the process with the given pid, outputs the C and Smalltalk stacks of that process to stderr, and detaches. The Smalltalk stack is printed to the Gem log or topaz linked session console.

Execution of the running process briefly pauses while the debugger is attaching, but the process will subsequently continue running normally.

pstack is similar to functions provided with some OS platforms.

By default, the stack summary is printed with one line per frame for each thread, followed by the complete stack details. The -b and -C options allow you to specify brief format stacks.

By default, both C stack and (if there is a Smalltalk context) Smalltalk stacks are printed. The -c and -C options allow you to omit the Smalltalk stack.

removedbf

removedbf dbfFile [ -h ]

dbfFile

The GemStone repository filename or the raw partition for the repository to be removed.

-h

Print usage and exit.

This command removes (erases) a GemStone repository file. It is provided primarily for erasing an extent or transaction log from a raw partition, but it also works on files in local or NFS-mounted file systems. It does not work for disks on remote file systems.

If you specify a file in the file system, this command is equivalent to the rm command. If you specify a raw disk partition, GemStone metadata in the partition is overwritten so that GemStone will no longer think there is a repository file on the partition.

For example, to remove an extent on the raw partition /dev/rsd3h:

removedbf /dev/rsd3h 

This command does not disconnect an extent from the logical repository. To alter the configuration by disconnecting an existing extent, see To Remove an Extent.

searchlogs

searchlogs [ -h ] [arguments, see below] [filters, see below] oop1...oop2

Arguments

keyring privKeyPath

the path to the directory containing the private key cert or file.

nostrings

Suppress the printing of String data in the output. Useful for security when sharing tranlog output.

privkey keyFileName

filename of the private key or cert.

privkeypf keyPassphrase

Passphrase for the private key, if the key requires it.

privkeypffn fileContainingPassphrase

Full path to a file containing the passphrase for the private key, if the key requires it.

oop1...oopN

The specific OOPs to search for. Required.

-h

Print usage and exit.

Seach Filters:

user username

Only print records for the specified GS UserProfile name.

host hostname

Only print records for the specified gem/topaz process host.

client X.X.X.X

Only print records for the specified client IP Address.

euid integer

Only print records for Gems with the specified effective UNIX user ID.

ruid integer

Only print records for Gems with the specified real UNIX user ID.

luid integer

Only print records for Gems with the specified login UNIX user ID.

euidstr string

Only print records for Gems with the specified effective UNIX user name.

ruidstr string

Only print records for Gems with the specified real UNIX user name.

luidstr string

Only print records for Gems with the specified login UNIX user name.

gempid integer

Only print records for Gems with the specified process ID.

sessionid integer

Only print records for Gems with the specified session ID.

Searchlogs searches all tranlogs in the current directory for selected oops, filtering results by user, host, and other criteria. Filters are optional.

Tranlogs to be searched are by default named tranlogNNN.dbf. This can be overridden by setting the environment variable $GS_TRANLOG_PREFIX to the tranlog prefix.

When using multiple filters, records that match any of the filters are printed. Each filter key can be used only once.

A maximum of 256 transaction logs can be analyzed at once.

For details on using searchlogs for tranlog analysis, see http://downloads.gemtalksystems.com/docs/Other/SDoc-TranlogAnalysis-3.5/SDoc-TranlogAnalysis-3.5.htm.

Examples

To print out all entries involving OOP 1234 and OOP 5678:

searchlogs 1234 5678

To print out all entries involving OOP 1234 performed by DataCurator:

searchlogs user DataCurator 1234
 

startcachewarmer

startcachewarmer [ -d | -D ] [ -h ] [ -l limit ] [ -L path ] [ -n numSessions ] [ -s stoneName ] [ -w writeInterval ] [ -W ] [ -C midCacheSizeKb ] [ -e gemConfigPath ] [ -H stoneHost ] [ -M midCacheHost ] [ -N midCacheMaxProcs ]

-C midCacheSizeKb

The size of the mid-level cache in KB (default 75000). Only used if the -M option is specified and the mid-level cache does not exist.

-d

Reads data pages into the cache (default: only object table pages are read).

-D

Reads data pages into the UNIX file buffer cache and not the shared page cache.

-e gemConfigPath

path to a gem config file, by default gem.conf in the current directory. Used to specify a shared cache configuration, if the warmer starts a remote or mid-level cache.

-h

Print usage and exit.

-H stoneHost

The host name or IP address where the stone is running. This option should only be used when warming a remote cache.

-l cacheFullLimit

Stops cache warming if the number of free frames in the cache falls below the specified cacheFullLimit. If cacheFullLimit is -1 (the default), have the system compute the actual limit based on the size of the shared cache. If cacheFullLimit is 0, force cache warming to continue even if the shared cache is full.

-L path

Path to a writable log file directory (default: current directory)

-M midCacheHost

The host name or IP address where the mid-level cache is running or will be created. The -H option must also be specified with this option (default: no mid-level cache is used)

-numSessions

Number of worker sessions to start. The default is the number of CPUs + number of Extents, plus 1 additional master session. The cachewarmer will exit if not enough sessions are available.

-N midCacheMaxProcs

The maximum number of processes that can use the mid-level cache (default: 50). Only used if the -M option is also specified and mid-level cache does not exist.

-s stoneName

Name of the running Stone (default: gs64stone).

-W

Wait for cache warming Gems to exit before exiting this script. By default, this script spawns Gems in the background and exits immediately.

-w writeInterval

Instruct the shared page cache monitor to write the ids of all data pages in the shared cache to the working set file, at the given interval in minutes. A value of 0 means write the file only when the stone is shutdown or killed. The working set is written to /opt/gemstone/locks/stoneName~hostid.workingSet.lz4

The startcachewarmer command warms up the shared page cache on startup, by preloading object table pages and optionally data pages into the cache. This allows the overhead of initial page loading to occur in a controlled way on system startup, rather than more gradually as the repository is in use.

The object table and dependency map pages are always loaded; data pages are loaded based on the -d flag or the presence of the working set file.

The -d and -D flags are mutually exclusive, if both are specified, then the later one is used.

Cache warming writes messages to stone log when it starts and with status when it completes. When the -W option is specified, it will also write the results to the console. If an error occurs during cache warming, details are preserved in a file named stonename_cachewarmer.log in the directory from which this utility was executed.

If a remote shared page cache is to be warmed (i.e., the -H option is used), then the remote cache will be created if it does not already exist. The configuration used to start the remote cache are controlled by the -e argument, a gem.conf in the current directory, or the GEMSTONE_EXE_CONF environment variable.

If a mid-level cache host name or IP address is specified (via -M), the mid-level cache will be created if it does not already exist. The -C and -N options will be used to specify the size and number of processes that can attach the mid-cache respectively. If the mid-cache already exists, the -C and -N options are ignored.

For greater efficiency, you can set the configuration file parameters STN_CACHE_WARMER_ARGS, GEM_CACHE_WARMER_ARGS, and GEM_CACHE_WARMER_MID_CACHE_ARGS to invoke cache warming automatically on startup.

startlogreceiver

startlogreceiver -P listeningPort -A listeningAddress -T tranlogDir+-l logFile ] [ -s stoneName ] [ -p alternatePort ] [ -d |  -D ] [ -t timeoutSeconds ] [ -f flushIntervalSecs ] [ -C certFileName ] [ -J certAuthFileName ] [ -K  keyFileName ] [ -Q passphrasestring ] [ -S ] [ -V ]

startlogreceiver -h | -v

-A listeningAddress

Address that will be used to attempt connection to a logsender.

-d

Print debug tracing of tranlog read and write operations to log file. The log file will be much larger.

-D

Like -d, but also prints commands sent between the logsender and log receiver to the log file. The log file will be much larger.

-f flushIntervalSecs

Interval in seconds at which the logreceiver flushes the tranlog file. 0 means flush as often as possible (this may be very slow). -1 disables flushing (file is flushed only when closed). The default is 10.

-l logFileOrDir

The path and filename or directory for the logged output of the logreceiver process. The default is /opt/gemstone/log/logreceiver_listeningPort.log.

-h

Print usage and exit.

-P listeningPort

Port or named service that will be used to attempt connection to a logsender.

-p alternatePort

The logreceiver listens on localhost on this port for stoplogreceiver commands. If logsender and logreceiver are run on same machine, then -p must be used to specify a port different than listeningPort specified with the -P argument.

-s stoneName

The name of the slave stone. stoneName is required for the logreceiver to be able to notify a stone in continuous restore mode that new log records have arrived. Without stoneName, logreceiver will just write tranlogs to the file system.

-T tranlogDir

Directory(s) where logreceiver writes files received from the logsender, and continuousRestoreFromArchiveLogs: will read from. At least one is required, up to 20 -T may be specified.

-t timeoutSeconds

How long the logreceiver will wait for logsender to reply to commands. The default is 60; the legal range is 5 to 1000000.

-v

Print version and exit.

Additional arguments for SSL:

-C certFileName

Certificate in PEM format that will be sent to the peer upon request.

-J certAuthFileName

Certificate authority (CA) file in PEM format to use for peer certificate verification.

-K keyFileName

Private key in PEM format for the certificate (associated with the -C certificate).

-Q passphrasestring

Private key passphrase. Required if the -K option is used and the private key is encrypted.

-S

Enable SSL mode. Must be specified to use any other SSL options and must also be specified when starting the peer process.

-V

Disable verification of the peer's certificate.

This utility starts up a logreceiver process. As part of a hot standby setup, the logreceiver process runs on the slave system to receive transaction log records, as they are generated, from a logsender process that is running on a master system.

The received transaction log records are written to files in a specified directory on the slave system. The slave system can run continuousRestoreFromArchiveLogs: to restore these transaction log records.

The logreceiver writes logging output to a file with the path and name or in the directory specified by the -l argument. If this file is a directory, the file name is logreceiver_listeningPort.log. If no -l argument is used, it writes to /opt/gemstone/log/logreceiver_listeningPort.log. If a file with the specified name exists, it is appended to. It is not deleted on process exit.

The logreceiver process will continue running until explicitly stopped using the stoplogreceiver command. If connection to the stone or the logsender process is lost, it will attempt to reconnect.

gslist will report running logreceiver processes.

To start the logsender using SSL to establish a secure connection between logsender and log receiver, both startlogsender and startlogreceiver can be provided with SSL credentials. When SSL arguments are provided, startlogreceiver will start the logreceiver in secure mode, requiring an SSL connection with the logsender. This is described under Connecting using SSL Mode

startlogsender

startlogsender -P listening port -A listeningAddress+ ( -T tranlogDir+-s stoneName ) -l logFile ] [ -d ] [ -g ] [ -t numberOfThreads ] [ -C certFileName ] [ -certAuthFileName ] [ -K keyFileName ] [ -Q passphrasestring ] [ -S ] [ -V ]

startlogsender -h | -v

-A listeningAddress

The address (es) on which the logsender will listen for connections from logreceivers. At least one is required, up to 4 may be specified.

-d

Print debug tracing of tranlog read and write operations to log file. The log file will be much larger.

-g tranlogPrefix

The base used to compose tranlog filenames, by default tranlog. Only used if there is no -s argument, and only needed if the Stone’s setting for STN_TRAN_LOG_PREFIX is not at the default.

-l logFileOrDir

The path and filename or directory for the logged output of the logsender process. The default is /opt/gemstone/log/logsender_listeningPort.log.

-h

Print usage and exit.

-P listeningPort

The port or named service on which on which the logsender will listen for connections from logreceivers.

-s stoneName

The name of the master stone. logsender will transmit records from the transaction logs in the tranlog directories configured for the Stone named stoneName. Either -s or -T may be used, but the use of both together is disallowed. When -s is used, transaction logs that are added to the master stone are automatically used by the logsender.

-t numberOfThreads

The number of threads that netldi will use. The default is 10, min 1, max 500. If -S specified, or netldi running as root, only uses one thread.

-T tranlogDir

Directory(s) where the master stone’s transaction logs are located. Normally the same as stone's STN_TRAN_LOG_DIRECTORIES but may also include archive directories. logsender will examine these directories for new files to send. Disllowed if -s is used, if -s is not used then at least one is required and up to 20 -T may be specified.

-v

Print version and exit.

Additional arguments for SSL:

-C certFileName

Certificate in PEM format that will be sent to the peer upon request.

-J certAuthFileName

Certificate authority (CA) file in PEM format to use for peer certificate verification.

-K keyFileName

Private key in PEM format for the certificate (-C option).

-Q passphrasestring

Private key passphrase. Required if the -K option is used and the private key is encrypted.

-S

Enable SSL mode. Must be specified to use any other SSL options and must also be specified when starting the peer process.

-V

Disable verification of the peer's certificate.

This utility starts up a logsender process. As part of a hot standby setup, the logsender process runs on the master system to transmit transaction log records, as they are generated, to a logreceiver process that is running on a slave system. See Hot Standby for complete information on setting up a hotstandby system.

The logsender writes logging output to a file with the path and name or in the directory specified by the -l argument. If this file is a directory, the file name is logsender_listeningPort.log. If no -l argument is used, it writes to /opt/gemstone/log/logsender_listeningPort.log. If a file with the specified name exists, it is appended to. It is not deleted on process exit.

The logsender process will continue running until explicitly stopped using the stoplogsender command. If connection to the stone is lost, it will attempt to reconnect.

gslist will report running logsender processes.

To start the logsender using SSL to establish a secure connection between logsender and log receiver, both startlogsender and startlogreceiver can be provided with SSL credentials. When SSL arguments are provided, startlogsender will start the logsender in secure mode, requiring an SSL connection with the logreceiver. This is described under Connecting using SSL Mode.

startnetldi

startnetldi [ netLdiName ] [ -g | [ -s ] [ -k keytab ] ] [ -a name ] [ -A addresses ]+ [ -b ] [ -d ] [ -H ] [ -X nrs ] [ -D directoryPath ] [ -l logFile ] [ -n ] [ -P portNumber ] [ -r ] [ -t numThreads ]

startnetldi [ x509NetLdiName ] [ -b ] [ -d ] [ -E configFileName ] [ -l logFile ] [ -n ] [ -X nrs ] [ -H ] [ -P portNumber ] [-r ] -D directoryPath -S -J certAuthFileName -R keyFileName -certFileName -L crlFileName

startnetldi  -h | -v 

netLdiName

The name or port number of the GemStone network server.
If netLdiName is a numeric value equal to or less than 65535, it is interpreted as a port number. If the given port is in use, it will result in an error. Other values are interpreted as the netldi name. If the -P argument is omitted, this name is looked up in the network services database to determine the port number. Network resource syntax is not permitted.

If this argument is omitted, netLdiName defaults to:

  • a netldi: specification in GEMSTONE_NRS_ALL, if present
  • a netldi: specification in the -X argument, if present
  • gs64ldi

-a name

Captive account; all child processes created by the NetLDI will belong to the account named name. By default, child processes belong to the client’s account.

-A addresses

Address to listen on. Up to 10 arguments are accepted. If no -A arguments are provided, listening is on the default wildcard address ::. If this default wildcard address is included, then other -A arguments are ignored. If the -A entry arguments do not include :: or ::1, then ::1 is also listened on.

-b

Maximum client connection backlog (default: 64).

-d

Debug mode; inserts more extensive messages in the log file. You can modify the debug mode during runtime using netldidebug.

-D directoryPath

Specifies a directory that will be used to compose log file paths for process log files. It is the default log path if the NRS does not include a #dir directive. This directory must exist and be writable, and the $GEMSTONE_NRS_ALL in the startnetldi’s environment must not include a #dir directive.

If the NRS includes the %D pattern in the #dir or #log, when spawning a child process, the %D in the NRS is replaced with directoryPath before forking. Path separator is appended if necessary.

-g

Guest mode; no accesses are authenticated. This option is not allowed if the NetLDI’s effective user id is the root account. Not compatible with -k.

-h

Print usage and exit.

-H

Do reverse DNS lookup on IP addresses of hostnames, and print both name and IP address in the log.

-k

Enable Kerberos and set the keytab file name; logins with empty host password will authenticate using Kerberos. Not compatible with -g.

-l logFile

The logged output of the NetLDI; the default is
/opt/gemstone/log/NetLdiName.log

-n

Do not allow any ad hoc processes to be created (ad hoc processes are ones not listed in $GEMSTONE/sys/services.dat).

-N

Use numeric IP addresses for printing peer info in logs. This is the default.

-P portNumber

The well-known port number that NetLDI will listen on.

-r

If there is a running NetLDI (version 3.3 or above) with this name, and that NetLDI has different version than specified in the current environment, stop the running NetLDI and restart it.

-s

Secure; require authentication for all NetLDI accesses.

-t numThreads

Start the NetLDI with numThreads threads. For an X509-Secured NetLDI, or if the NetLDI will be running as root, only uses one thread. Default 10, min 1, max 500.

-v

Print version and exit

Additional arguments for use only when starting a X509-Secured NetLDI:

-E configFileName

For use when starting a X509-Secured NetLDI on a remote node (not the Stone’s node). Provides specifications for starting the remote cache. The actual cache startup is initiated by starthostagent on the Stone's node. See the GemStone/S 64 Bit X509-Secured GemStone System Administration Guide.

-J certAuthFileName

Specifies a certificate authority certificate (CA) in PEM format to use. Requires -S.

-L crlFileName

Specifies a certificate revocation list (CRL) file in PEM format.

-R keyFileName

Specifies host private key in PEM format to use. Requires -S.

-S

Start a X509-Secured NetLDI. Certificates must also be provided using -U, -R, and -J, and -E is required for remote caches. The NetLDI will do mutual authentication for all connections.

-U certFileName

Specifies a host X509 certificate in PEM format to use. Requires -S.

-X nrs

Specifies an NRS containing one or more of #log:, #dir:, and #netldi:, which take precedence over an GEMSTONE_NRS_ALL setting in the environment of the startnetldi.

This command starts a GemStone network server with the specified netLdiName and timeout (given in seconds). The server spawns GemStone processes in response to login requests from remote applications and requests for remote repository access from Stone repository monitor processes. If your machine is slow or heavily loaded, and RPC logins time out before completing, specify a larger timeout value.

Legal characters in a NetLDI name are A-Z, a-z, 0-9, and the characters period, underscore, and dash (. _ -). NetLDI names with other characters are disallowed. NetLDI names should not start with period or dash, and should include at least one letter or digit. Also, NetLDI names must not match an existing system service, such as ldap, syslog, etc.

The NetLDI listens for requests, including RPC login requests, on a specified or configured port and optionally on a specific address. During the RPC login process, it uses a separate set of ports to establish communication between the Gem and its client. If you are running over a firewall, you can specify the port using the -P option, and configure your firewall to permit access via this port.

The locations and names of log files for process started by the NetLDI are defined by NRS directives in the login parameters or by settings in the GEMSTONE_NRS_ALL. Using the -D logfile argument to startnetldi sets a default log file path. For more on managing log file paths, see Controlling log file directory locations.

NetLDI can be configured to authenticate starting processes, or all accesses. It may configure to authenticate the UNIX userId (including by using Kerberos) or to run in guest mode, which does not authenticate. These options work in conjunction with permissions for the extent files to provide security while also ensuring the appropriate access to GemStone for authorized users. How to configure the NetLDI is described in Chapter 4, “NetLDI and Interprocess Access”.

To use startnetldi within an X509-Secured GemStone configuration, see the GemStone/S 64 Bit X509-Secured GemStone System Administration Guide.

For assistance with startup failures, refer to To Troubleshoot NetLDI Startup Failures.

Return values

The startnetldi utility returns one of the following codes to the command line:

  • 0 (success) Successful start
  • 1 (informational) The specified NetLDI is already running
  • 2 (warning) The sspecified NetLDI is already running, but the exectuables have been deleted or overwritten
  • 3 or above (error) an error occurred and gemStoneName was not started.

netldid

$GEMSTONE/sys/netldid is the executable that is invoked by startnetldi. While startnetldi blocks until startup is complete, then returns control to the command line, executing netldid directly does not return. This can allow you to run the NetLDI as a background process.

The options described for startnetldi are also available for netldid, with the exception of -r.

startstone

startstone [ gemStoneName ] [ -l logFile ] [ -e exeConfig ] [ -z systemConfig ] [ -R ] [ -N ] [ -H ]

startstone [ gemStoneName ] [ -l logFile ] [ -e exeConfig ] [ -z systemConfig ] [ -R ] [ -N ] [ -H ] -D privateKey -K dir-K dir+ ] [ -j passPhrase |  -J passphraseFile ]

startstone -h | -v

gemStoneName

Name of the GemStone repository monitor, default is gs64stone. Network resource syntax is not permitted.

-D privateKey

For encrypted extents, specifies the private key file corresponding to the public key used to encrypt the extents. The file must be in PEM format. Requires -K, and if the private key has a passphrase, also -j or -J.

-e exeConfig

The GemStone executable configuration file. See Executable Configuration File.

-h

Print usage and exit.

-H

Do reverse DNS lookup on IP addresses of hostnames, and print both name and IP address in the log.

-j Passphrase

For encrypted extents, use the given passphrase to read the private key specified by -D.

-J passphraseFile

For encrypted extents, use the passphrase contained in file passphraseFile to read the private key specified by -D. passphraseFile must be the full path and filename.

-K keyRingDirs

For encrypted extents, specifies one or more colon-separated directories which contain keys and certificates. May be included more than once.

-l logFile

The location (or filename) for the logged output of the stone; the default is (1) the setting of the $GEMSTONE_LOG environment variable, if defined; (2) $GEMSTONE/data/gemStoneName.log

-N

Do not replay transaction logs as part of startup. Unless used with the -R option, and transaction logs are replayed manually, work may be lost.

-R

Start up from the most recent checkpoint and go into restore mode. Used when restoring from backup, to allow transaction logs to be restored. With this option, the stone does not create or write to a transaction log on startup.

-v

Print version and exit

-z systemConfig

The GemStone system configuration file. See System Configuration File.

This command opens the GemStone repository specified by the configuration files. For details on how startstone determines which the configuration file/s to use, see How GemStone Uses Configuration Files.)

Legal characters in a Stone name are A-Z, a-z, 0-9, and the characters period, underscore, and dash (. _ -). Stone names with other characters are disallowed. Stone names should not start with period or dash, and should include at least one letter or digit. Also, Stone names must not match an existing system service, such as ldap, syslog, etc.

The -N option is intended for use when the repository needs recovery, but the transaction logs specified in the configuration file cannot be found or have become corrupted. The -N forces the repository to start up anyway, even though transactions committed since the last checkpoint will be lost.A new transaction log will be initialized as part of the startup.

The -R option is used when restoring from backup. This starts up the repository at the point of the most recent checkpoint in the extents, and puts the repository into restore mode. You can then invoke Topaz to restore from transaction logs and commit the restored state.

If the extents against which Stone is being started require recovery, or if you are restoring from online extent backups, then you must specify the -N option along with the -R option; otherwise, an error will result and the repository monitor will not start.

For startup failures, refer to To Troubleshoot Stone Startup Failures.

If you are using encrypted extent files, you must also specify the private key corresponding to the public key used to encrypt the extents, with -D, and the directory or directories containing public and private keys, with -K. If the private key has a pass phrase, you must also provide this with the -j or -J arguments. If the repository was uncleanly shutdown, the associated encrypted transaction logs must be encrypted with the same key as the repository extents, for the automatic recovery to succeed. However, if you are restoring tranlogs from backup, you may specify alternate private keys. See Chapter 12 for more details on using encrypted extents and tranlogs.

stoned

$GEMSTONE/sys/stoned is the executable that is invoked by startstone. While startstone blocks until startup is complete, then returns control to the command line, executing stoned directly does not return. This can allow you to run the Stone as a background process.

The options described for startstone are also available for stoned.

Return values

The startstone utility returns one of the following codes to the command line:

  • 0 (success) Successful start
  • 1 (informational) The stone named gemStoneName is already running
  • 2 (warning) The stone gemStoneName is already running, but the exectuables have been deleted or overwritten
  • 3 or above (error) an error occurred and gemStoneName was not started.

 

statmonitor

statmonitor stoneName [ options, see below ]

stoneName

Required; the name of the Stone to monitor.

-a

Collect all available system statistics except per-core CPU statistics.

-A

Collect all available system statistics.

-B count

Number of persistent shared counters to sample. Maximum is 1536, default is 0.

-C

Collect system statistics for each individual CPU.

-d directory

Directory where output files are written. Cannot be used with the -f or -F options; to specify a directory with those options, include it in the filename or pattern.

-D

Collect system statistics for all disks and partitions.

-f fileName

The output file name. If not specified, the output filename is statmonN.out, where N is the process ID. If the file already exists, statmonitor will append -N to the filename, and the correct extension will be appended if not already present.

To send output to stdout instead of a file, specify -f stdout.

May not be used with the -d option.

-F pattern

Pattern used to generate the file name. Values in the pattern starting with a single '%' character have the meaning described in the strftime(3) function call. Additionally, the following patterns which start with double '%' characters are also accepted:

   %%C - name of the shared page cache

   %%H - name of the host

   %%i - sample interval in seconds

   %%I - sample interval in milliseconds

   %%P - process ID of statmonitor

   %%S - name of the stone

May not be used with the -d option. %%C and %%S cannot be used when statmonitor is started with the -X argument.

If the file already exists, statmonitor will append -N to the filename, and the correct extension will be appended if not already present.

-h

With no argument, print usage and exit.

-h hours

The number of hours (default: forever).

-i interval

The interval in seconds (default: 20). Select either -i or -I.

-I intervalMs

The interval in milliseconds (default 20000; minimum 10). Select either -i or -I.

-J

Sample the Stone, shared cache monitor, and page manager only.

-k listOfTimes

List of times at which statmonitor should be restarted. The restart is performed at the next sample interval after the specified time has passed.

  • Either the -r or -R command must also be specified.
  • -t and -h are disallowed
  • List must start and end with a single quote.
  • times include hours and minutes, colon separated.
  • hours are in 24-hour format.
  • Multiple times are comma separated.
  • Duplicates should not be included.

-K numOldFilesLimit

Tells statmonitor to automatically delete old output files as new ones are created. numOldFilesLimit specifies how many old files to keep (excluding the current file). Files are deleted in order of age, oldest files first. Requires either -r or -R.

-n numAppStats

The number of application statistics (default: 0).

-N

Collect system statistics for all network interfaces.

-p sessionId

A GemStone sessionId to monitor. You may specify multiple sessions. (Default: monitor all sessions.)

-P

Sample the Stone, shared cache monitor and AIO page server threads only.

-q

Quiet mode. Only print messages if an error occurs.

-Q pid1,pid2,...

Record statistics for a list of process IDs.

-r

Restart a new output file when the current one completes. Each file will be given a unique name. This option may only be used with the -h, -t or -k switches, which control when a restart is done.

-R

Same as -r except the output file name is regenerated for each restart if the -F option is used.

-S

Sample only the Stone and shared cache monitor.

-t times

The maximum number of samples to collect before starting a new output file (default is forever). Select either -h or -t.

-T

Do not collect statistics for all NetLDI processes.

-u seconds

The maximum number of seconds to wait before flushing the cached information to the output file (default: 60). If 0 then the flush will be done every interval.

-Uuid1,uid2,...

Record statistics for all processes owned by one or more UNIX user IDs.

-v

Print version and exit

-W

Collect system statistics for system memory pages (Solaris only).

-X

Run in host-only mode. Sample host system statistics only and do not attach to a shared page cache. May be combined with other flags EXCEPT: -B, -n, -p, -P, -S, or -Y. There are some limitations in log file name patterns in this mode; see -F.

-Y

Disable collection of all system statistics, including per-process data.

-z

Write the output in compressed gzip format.

-Z

Write the output in compressed lz4 format.

statmonitor records statistics for a repository and/or the operating system to a disk file.

statmonitor runs in the background, sampling specified data at a specified interval and recording the data to a text file. The data in this file can be viewed by the graphical application VSD, version 5.5 or later. See vsd and the VSD Users Guide for more information.

For details on the statistics that statmonitor records, see the online documentation at https://docs.gemtalksystems.com/current/statisticsdefinitions.

Statistics are collected from the shared page cache and directly from the OS. Only data for GemStone processes attached to the shared page cache on the host on which statmonitor is running, are collected. To monitor Gems on systems with remote Gem servers, you must run statmonitor both on the Stone’s machine and on the Gem server machine.

The stonename argument is used to specify the cache to monitor, both for caches that are local to the Stone and caches that are remote from the Stone with that name. Configurations in which a single machine is hosting remote caches for multiple stones that are running with the same Stone name are ambiguous and will not work correctly; this configuration is strongly discouraged.

In addition to running statmonitor from the command line, you can also specify that statmonitor be automatically started at stone startup, and the startup for remote gem caches and remote mid-level caches, to ensure statmonitor data is collected. See the configuration parameters STN_STATMONITOR_ARGS, GEM_STATMONITOR_ARGS, and GEM_STATMONITOR_MID_CACHE_ARGS.

Statmonitor Filenames and locations

Statmonitor by default writes to a file named statmonNNNNN.out, statmonNNNNN.out.gz, or statmonNNNNN.out.lz4., in the current directory from where statmonitor was started. NNNNN is the pid of the statmonitor process.

You can control both the directory and the filename, including pattern-based file naming.

To use the default statmontitor data file name, but write the statmonitor files to a different directory, use the -d option. This cannot be used with the -f or -F filename options. To specify both directory and filename, include the directory as part of the file name specification.

To simply provide a filename and optionally directory, use the -f option. For example,

statmonitor -f /gsadmin/stats/ManagerStats gs64stone

If this file already exists, statmonitor will append an -N to the filename, where N starts at 1, or the next available number, incrementing as needed.

statmonitor will append the correct .out, .out.gz, or .out..lz4 extension to the specified filename, if it does not already exist, to ensure the file is correctly detected by VSD. It is recommended that you omit the extension, since using the incorrect ending will result in extra, possibly duplicate extensions.

The -F option allows you to specify a pattern used to generate the statmonitor filename. The following patterns are availabe:

GemStone specific filename pattern options:

%%C - name of the shared page cache

%%H - name of the host

%%i - sample interval in seconds

%%I - sample interval in milliseconds

%%P - process ID of statmonitor

%%S - name of the stone

Some useful values from stftime()

Note that this list does not include all possible values and may vary by operating system.

%b The abbreviated month name according to the current locale.

%B The full month name according to the current locale.

%c The preferred date and time representation for the current locale.

%d The day of the month as a decimal number (range 01 to 31).

%F Equivalent to %Y-%m-%d

%H The hour as a decimal number using a 24-hour clock (range 00 to 23).

%m The month as a decimal number (range 01 to 12).

%M The minute as a decimal number (range 00 to 59).

%R The time without seconds in 24-hour notation (%H:%M).

%S The second as a decimal number (range 00 to 60).

%T The time with seconds in 24-hour notation (%H:%M:%S).

%y The year as a decimal number without a century (range 00 to 99).

%Y The year as a decimal number including the century.

Automatic restart

It is recommended to have statmonitor running at all times, since if an error occurs, the information leading up to the problem may be important.

There are a number of feature that make this process easy to automate.

Using the -r or -R option, startmonitor will automatically restart monitoring when an existing statmonitor stops itself (this does not apply if you manually stop statmonitor).

Statmonitor will stop itself if:

  • When using the -h option, the given number of hours has passed
  • When using the -t option, the given number of samples are recorded
  • If a list of times was passed in using the -k option, one of these times was reached

With the -R option, on restart, a new filename is calculated based on the pattern. With -r, on restart, the same filename is used (appending the -N as needed)

Using the -K option, you can specify how many old files you wish to keep. The number specified does not include the statmonitor file that is currently being written.

Limiting what is recorded

Statmonitor by default records a moderate amount of data that is most commonly needed. It can be configured to record fewer kinds of data, or more kinds of data.

The following options limit the GemStone processes that are collected:

-S — record stone and shrpcmon only

-P — record stone, shrpcmon, and aio pgsrvs only

-J — record stone, shrpcmon, and page manager only

-G — record stone, shrpcmon, admin and reclaim gems only

-T — do not record statistics on NetLDI processes.

-ppid — do not record gem statistics other than for the specified PID.

-UuserId — do not record gem statistics other than for processes owned by the given UNIX userID

-Y — Disable collection of all system stats, including per-process data.

The following collect additional host information

-A — Collect all available system statistics.

-a — Collect all available system statistics except per-core CPU statistics.

-C — Collect system statistics for each individual CPU.

-D — Collect system statistics for all disks and partitions

-N — Collect system statistics for all network interfaces.

-Qpid — Collect system statistics for processIds, which do not need to be GemStone processes.

To not collect any GemStone statistics, but only statistics on the host machine itself, use:

-X — record host stats only

This can be combined with the other host information statitics to manage the amount of host information collected.

Example

To run statmonitor on an application named plantis, with:

  • 30 second sample rate
  • files zipped using gzip
  • collect all system statistics except CPU stats, as well as GemStone statistics
  • automatic restart at 2am every day
  • keep three old files but delete older files as new ones are generated
  • each file has a filename that includes the date and time. The stone name is hard coded into the filename, but statmonitor will automatically add the correct zip extension.

The following expression can be used:

statmonitor -i30 -z -a -R -K3 -k'02:00' -F /gshost/GemStone3.6/statmon/plantis30sec-%y%m%d_%H%M plantis

This creates files with a filename such as plantis30sec.200520_0500.out.gz.

Up to four files will be in the directory /gshost/GemStone3.6/statmon/ (this includes three older files and the current file).

Example 2

The previous example requires manual restart every time the stone is started. The following example shows setting up start statmonitor automatically every time the stone is started, using the STN_STATMONITOR_ARGS configuration parameter.

This example also sets up to collection two series of statstics; statistics with a small sample rate that are discarded after a week, and statistics with a longer sample rate that are kept indefinitely.

The first one:

  • 1 second sample rate
  • files zipped using LZ4
  • new files are started every day at midnight; old files are deleted after one week
  • each file has a filename that includes the stone name (the %%S pattern), and the date and time.

The second one:

  • 5 minute sample rate
  • files zipped using LZ4
  • new files are started weekly (after 168 hours); old files are kept forever.
  • each file has a filename that includes the stone name (the %%S pattern), and the date.

The following is added to the Stone’s configuration file:

STN_STATMONITOR_ARGS =
"-i1 -Z -R -k '00:00' -K7 -F /gshost/GemStone3.6/statmon/%%S-dailyStats_%F_%H-%M",
"-i360 -Z -R -h168 -F /gshost/GemStone3.6/statmon/%%S-weeklyStats_%F";

When the stone is started, this creates files with a filenames such as:

plantis-dailyStats_2020-08-12_16-23.out.lz4
plantis-weeklyStats_2020-08-12.out.lz4

stoplogreceiver

stoplogreceiver -P listeningPort

stoplogreceiver -v | -h

-h

Print usage and exit.

-P listeningPort

The port that the logreceiver is listening on for stoplogreceiver connections. If -p was used in the startlogreceiver command, that port must be specified here; otherwise the port specified by the -P argument to startlogreceiver.

-v

Print version and exit.

This utility stops a logreceiver process that was started by a previous startlogreceiver command. This may only be executed on the same node as the logreceiver is running.

stoplogsender

stoplogsender -P listeningPort

stoplogsender -v | -h

-h

Print usage and exit.

-P listeningPort

The port on which this logsender is listening. It must be the same port as specified in the -P argument of the startlogsender.

-v

Print version and exit

This utility stops a logsender process that was started by a previous startlogsender command. This may only be executed on the same node as the logsender is running.

stopnetldi

stopnetldi [ netLdiName ]

stopnetldi -h | -v

netLdiName

The name of the GemStone network server; the default is gs64ldi. Network resource syntax is not permitted.

-h

Print usage and exit.

-v

Print version and exit

Gracefully stop a GemStone network server.

If name is not specified, the name of the NetLDI to stop is taken from GEMSTONE_NRS_ALL environment variable, if defined there. If GEMSTONE_NRS_ALL does not define a NetLDI name, then a NetLDI with the default name gs64ldi is stopped.

If a portNumber was used to start the netldi process, then the portNumber can be used to stop the netldi process.

Return values

The stopnetldi utility returns one of the following codes to the command line:

  • 0 (success) Successful stop
  • 1 (informational) The stone named gemStoneName is already running
  • 2 (warning) The stone gemStoneName is already running, but the exectuables have been deleted oroverwritten
  • 3 or above (error) an error occurred and gemStoneName was not started.

 

 

stopstone

stopstone [ gemStoneName [ gemStoneUserName [ gemStonePassword ] ] ] [ -i ] [ -t ] [ -h ]

gemStoneName

The name of the GemStone repository monitor, commonly gs64stone. Network resource syntax is not permitted.

gemStoneUserName

A privileged GemStone user account name, such as “DataCurator” or “SystemUser”.

gemStonePassword

The GemStone password for the specified gemStoneUserName.

-h

Print usage and exit.

-i

Causes any current GemStone sessions to be terminated immediately.

-t

Specifies how long to wait for other processes to detach from the cache. Default is -1, wait forever.

Gracefully shut down a GemStone repository monitor. In the process, a checkpoint is performed in which all committed transactions are written to the extents. If you specify the -i (immediate) option, the repository monitor is shut down even if there are GemStone users logged in. The -t option specifies how long to wait for all session to detach from the cache before returning; if omitted, stopstone will wait forever. If you do not supply the gemStoneName, gemStoneUserName, and gemStonePassword on the command line, this command will prompt you for them.

Because this command uses a Gem session process to connect to gemStoneName, it fails if the Gem is unable to connect for any reason, such as inability to attach a shared page cache. For assistance, refer to To Troubleshoot Session Login Failures.

Return Values

stopstone returns one of the following codes:

  • 0 (success) Successful stop
  • 1 (informational) No running stone with gemStoneName
  • 3 or above (error) an error occurred and gemStoneName was not stopped.
  • 10 syntax error
  • 11 bad user or password
  • 12 gemStoneUserName does not have privilege to stop the stone.
  • 13 stone not stopped; other users are logged in. Use -i to override.

topaz

topaz [ -r ] [ -q ] [ -i | -I topazini ] [ -S scriptFile ] [ -n hostName:netldiName ] [ -u useName ] [ -X caCertPaths ] [ -- other args ]

topaz -l | -L [ -q ] [ -i | -I topazini ] [ -S scriptFile ] [ -u useName ] [ -exeConfig ] [ -systemConfig ] [ -tocSizeKB ] [ -C configParams ] [ -- other args ]

topaz -h | -v

-C configParams

Provides configuration parameters, in configuration file syntax, that override settings in the configuration files. Only applies to linked sessions (RPC sessions may use the -C syntax in the Gem’s NRS).

-e exeConfig

The GemStone executable configuration file (only allowed with linked sessions). See Executable Configuration File.

-h

Print usage and exit.

-i

Ignore the initialization file, .topazini.

-I topazini

Specify a complete path and file to a topazini initialization files, and use this rather then any .topazini in the default location.

-l

Invoke the linked version of Topaz.

-L

Invoke the linked version of Topaz, and do not apply any command set gemnetid that may appear in the .topazini file or a file passed in using -I.

-n hostName:netldiName

For a login using X509-Secured GemStone, to specify the NetLDI to spawn the Gem, part of the X509-secured GemStone login parameters. The host name or IP, and the netldi name or listening port, for an X509-secured NetLDI.

-q

Start Topaz in quiet mode, suppressing printout of the banner and other information.

-r

Invoke the RPC (remote procedure call) version of Topaz.

-S scriptFile

Specifies a script file that will be processed with INPUT, suppressing output except if an error occurs.

-T tocSizeKB

The GEM_TEMPOBJ_CACHE_SIZE that will be used. Overrides any settings provided in configuration files passed as arguments with the -e or -z options. Only applies to linked sessions.

-u useName

Sets the cache name, as recorded by statmonitor for viewing in VSD. This is also useful for identifying processes in OS utilities such as top or ps.

-v

Print version and exit.

-w

On Windows client only; forces terminal behavior regardless of I/O device.

-X caCertPaths

For a login using X509-Secured GemStone, to set certificates. Requires additional infrastructure to be running, including X509-secured NetLDIs and caches. The argument specifies the CA cert, user cert, and user private key with 3 paths in this order: 'stoneCA-dev.cert.pem;DataCurator.chain.pem;DataCurator.privkey.pem'

-systemConfig

The GemStone system configuration file (only allowed with linked sessions). See System Configuration File.

-- otherArgs

Arbitrary text arguments otherArgs may be included after the “--” end of arguments marker, which must follow any of the above topaz arguments are included.

This command invokes various forms of topaz. The default is to invoke the remote procedure call (RPC) version of topaz; to do this explicitly, use the -r option.

To invoke the linked version of topaz, which is recommended or required for some maintenance operations, use the -l or -L option. The advantage of the -L option is that .topazini initialization file command cannot inadvertently configure the login to be RPC rather than linked.

Several topaz arguments only apply in linked topaz. The arguments -eexeConfig and -zsystemConfig determine the configuration files that linked topaz reads. For more information about this, see How GemStone Uses Configuration Files.

Settings within topaz can allow linked topaz to perform RPC logins.

Topaz is available for Windows, in addition to regular server platforms, as part of the Windows Client installation. Options are more limited since linked logins are not possible.

For further information, see the Topaz Programming Environment.

updatesecuredbf

updatesecuredbf-F ] [-d] [ -O ] extentFile -e newEncrCert -D oldPrivEncrKey -K keyRingDir [ -K keyRingDir+ ] -j encrPP | -J encrPPFile ]

updatesecuredbf tranlogFile-F ] [-d] -e newEncrCert -D oldPrivEncrKey -K keyRingDir [ -K keyRingDir+ ][ -j encrPP | -J encrPPFile ]

updatesecuredbf backupFile-F ] [-d] -e newEncrCert -D oldPrivEncrKey -K keyRingDir [ -K keyRingDir+ ] -S sigPrivKey-j encrPP | -J encrPPFile ] [ -t sigPP | -T sigPPFile ]

updatesecuredbf -h | -v

extentFile,

tranlogFile, or

backupFile

The name of the secure dbf file to be updated; either an extent, transaction log, or backup.

-d

Dry run; reports the output as if the updatesecuredbf operation was performed, but does not actually make the modifcation.

-D oldPrivEncrKey

Specifies the file containing the private key that corresponds to the public cert that was used to encrypt the source extent, backup or tranlog. Used to decrypt the dbf prior to reecrypting with the new key. If the private key has a passphrase, requires -j or -J.

-e newEncrCert

Specifies the public public key or certificate file to encrypt the data.

-F

(flush) Use fsync(2) to flush all data to disk before exit.

-h

Print usage and exit.

-j encrPP

The passphrase for the private key specified by -D.

-J encrPPFile

A file containing the passphrase for the private key specified by -D.

-K keyRingDirs

List of colon-separated directories which contain keys and certificates. -K may be included more than once.

-O

(Override) for use with secure extents only. Some operations on extent require a clean shutdown. Specifying this option overrides that requirement. Use with caution.

-S sigPrivKey

For use with secure backups only. Specifies a private signing key used to sign the secure backup. Requires -t or -T if the private signing key protected with a passphrase.

-t sigPP

The passphrase for the private signing key specified by -S.

-T sigPPFile

A file containing the passphrase for the private signing key specified by -S

-v

Print version information and exit.

updatesecuredbf accepts an encrypted extent, tranlog file, or full backup file, and replaces the private key with a new private key. the modification is done in place. It is strongly recommended to make a backup copy of the file prior to executing updatesecurebackup.

In order to decrypt the dbf file, required arguments include the private key corresponding to the public key that was used to encrypt the database file previously, and if this key has a passphrase, this must also be provided.

In addition, the new public key that will be used to re-encrypt the file is required. Since encrypted backups are always signed, additional arguments when using updatesecuredbf for a backup are required to provide the signing key and passphrase.

When using updatesecuredbf with encrypted backups, which may have up to 8 encryption keys, any single one of the keys can be replaced using updatesecuredbf. The other keys are not affected. Note that encrypted backups, which are always signed, also require the signing key and passphrase.

For example, for a backup that was encrypted using the backup_encrypt_1_clientcert.pem with passphrase backup_encrypt_1_client_passwd.txt, the following will replace that with backup_encrypt_3_clientcert.pem.

unix> updatesecuredbf backupEn1.sdbf
-e backup_encrypt_3_clientcert.pem
-D backup_encrypt_1_clientkey.pem
-J $GEMSTONE/allcerts/backup_encrypt_1_client_passwd.txt 
-S backup_sign_2_clientkey.pem
-T $GEMSTONE/allcerts/backup_sign_2_client_passwd.txt
-K $GEMSTONE/allcerts

For more information on encrypted extents, transaction logs and backup files, and using copydbf and updatesecuredbf to manage them, see Chapter 12, “Encrypted Extents and Transaction Logs”.

 

verify_backup_with_openssl

verify_backup_with_openssl [ -h ] backupFile [ publicKeyPathAndFile ]

-h

Display a usage line and exits

backupFile

The name of the signed GemStone backup file.

publicKeyPathAndFile

The full back to the public key file corresponding to the private key that was used to sign backupFile.

Use openSSL to verify the backup file backupFile, with the public certificate publicKeyPathAndFile.

The public key can be omitted, in which case it performs verification using the public key extracted from the private key, which is not useful for verification, and only demonstrates that the backup is signed.

 

vsd

vsd [ -b color ] [ -u | -a | -A ] statmonDataFile+ ] [ directory ]

vsd -h | -v

-a

Append mode. Files following the -a are appended to the first one; the data in these files is merged so statistics are viewed as if they were a single file.

-A

Like -a, and also enable continuous appending with auto-append mode.

-color

Set the master background color. Color may be a hex RGB value (e.g.: #d3d3ff) or a valid color name (e.g.: white). The list of recognized color names may be found at: http://www.tcl.tk/man/tcl8.6/TkCmd/colors.htm

-h

Displays a usage line and exits.

-u

Open one or more files and enable auto-update mode.

-v

Print version information and exit.

statmonDataFile

The name of a statistics data file to load into the VSD as it is started.

directory

directory is the name of a directory; VSD will set this as the working directory for the executable, and after startup, opens the Open Statmonitor File dialog on this directory.

This command starts VSD, the graphical tool to view and analyze statmonitor data. The default is to open an empty instance of VSD, into which you can then load one or multiple statmonitor data files. After loading data files, you may select one or multiple GemStone processes, and view charts on one or multiple statistics for these processes.

VSD is available for Windows, in addition to regular server platforms, as part of the Windows Client installation.

For a complete description of VSD, see the VSD User’s Guide.

waitstone

waitstone [ -h ] [ gemStoneName | netLdiNameOrPort ] [ timeout ] [ waitForWarming ]

-h

Display a usage line and exit

gemStoneName

The Stone name.

netLdiNameOrPort

The name or port of the NetLDI.

timeout

How many seconds to wait for GemStone to initialize before reporting a problem. The default (0) means wait forever; -1 means don’t wait, try once and return the result. Only valid when specifying either gemStoneName or netLdiName.

waitForWarming

If larger than 0, block until cache warmers finish.

This command reports whether the GemStone repository gemStoneName is ready to accept logins or whether netLdiName is ready to accept requests. If neither gemStoneName nor netLdiName are specified, waitstone will report on the default stone name, gs64stone.

Waitstone checks every 0.5 seconds to see if the Stone or NetLDI is ready. When the service is ready, waitstone issues a message to stdout. If the service is not ready by the time the specified number of seconds have elapsed, waitstone reports an error.

With a -1 timeout, waitstone will make one connection attempt to the Stone or NetLDI. Note that if the stone is inaccessible, the timeout may be longer, since the configured TCP/IP timeout may apply. This can result in a 20 second timeout regardless of the specified timeout value.

Use of timeout requires that the Stone or NetLDI name is also specified.

If a positive value for the waitForWarming argument is specified, waitstone will block until cache warming completes; this is useful when cache warming is automatically run on startup. The specific value of the waitForWarming is not important. Use of the waitForWarming positional argument requires specifying each of the preceding arguments.

You may specify the gemStoneName and netLdiName arguments as a GemStone network resource string. (See Appendix C, “Network Resource Strings (NRS)”)

This command returns 0 exit status if the operation is successful; otherwise, it returns a non-zero value.

 

Previous chapter

Next chapter