ToolTalk User's Guide

4 Setting Up and Maintaining the ToolTalk Processes


Contents of Chapter:
4.1 Location of the ToolTalk Service Files
4.2 Version
4.3 Requirements
4.4 Environment Variables
ToolTalk Environment Variables
Other Environment Variables
Environment Variables Required to Start Programs on Remote Hosts
Using Context Slots to Create Environment Variables
4.5 Installing the ToolTalk Database Server
When the ToolTalk Service is Installed Elsewhere on the System
4.6 Running the New ToolTalk Database Server
4.7 Redirecting the ToolTalk Database Server
Redirecting the Host Machine
Redirecting the File System Partition

Note: The ToolTalk database server program must be installed on all machines which store files that contain ToolTalk objects or files that are the subject of ToolTalk messages.

4.1 Location of the ToolTalk Service Files

The ToolTalk directories and files are:

/tt/bin/
   ttsession
   rpc.ttdbserverd

4.2 Version

All ToolTalk commands except the ttce2xdr command support a -v option that prints the version string.

4.3 Requirements

The software required by the ToolTalk service includes ONC RPC.

4.4 Environment Variables

ToolTalk Environment Variables

There are several ToolTalk environment variables that may be set:

Table 4-1 describes these variables.

Table 4-1 Environment Variables

A process is given a modified environment when it is automatically started by the ToolTalk service. The modified environment includes the environment variables $_TT_SESSION, $_TT_TOKEN, and any contexts in the start-message whose keyword begins with the dollar sign symbol ($). Optionally, the environment variable $_TT_FILE may also be included in the modified environment if it is a file-scoped message.


Note: If the tt_open call will be invoked by a child process, the parent process must propagate the modified environment to that child process.

Other Environment Variables

The TMPDIR environment variable is another environment variable that you can set to manipulate the ToolTalk development environment; for example:


TMPDIR=/var/tmp
redirects files to the /var/tmp directory.

Environment Variables Required to Start Programs on Remote Hosts

The start string is always executed on the host on which ttsession is running; however, the executed process can start another process on another host.

To do this, first make your start string be similar to the following:


# rsh farhost myprog
Next, to make sure myprog is placed in the right session and receives its initial message, you need to propagate the important ToolTalk environment variables. The ttrsh shell script shown in Code Example 4-1 propagates these environment variables.

Code Example 4-1 Propagating ToolTalk Environment Variables


#! /bin/sh # This command runs a command remotely in the background, by pointing # stdout and stderr at /dev/null. # By running this through the Bourne shell at the other end, and # we get rid of the rsh and rshd which otherwise hand around at either # end. # Hacked from a posting by clyde@emx.utexas.edu to list.xpert # #set -x user= debug= HOST=${HOST-`hostname`} if [ "$1" = "-debug" ]; then debug=1 shift fi if [ $# -lt 2 -o "$1" = "-h" -o "$1" = "-help" ]; then echo "Usage: ttrsh [-debug] remotehost [-l username] remotecommand" echo "Usage: ttrsh [-h | -help]" exit 1 else host=$1 shift if test "$1" = "-l" ; then shift user=$1 shift fi fi xhostname=`expr "$DISPLAY" : "\([^:]*\).*"` xscreen=`expr "$DISPLAY" : "[^:]*\(.*\)"` if test x$xscreen = x; then xscreen=":0.0" fi if test x$xhostname = x -o x$xhostname = x"unix"; then DISPLAY=$HOST$xscreen fi if [ "$user" = "" ]; then userOption="" else userOption="-l $user" fi if [ $debug ]; then outputRedirect= else outputRedirect='> /dev/null 2>&1 &' fi ( echo "DTHOME=$DTHOME;export DTHOME;\ _TT_SESSION=$_TT_SESSION;export _TT_SESSION;\ _TT_TOKEN=$_TT_TOKEN;export _TT_TOKEN;_TT_FILE=$_TT_FILE;\ export _TT_FILE;DISPLAY=$DISPLAY;export DISPLAY;($*)" \ $outputRedirect | rsh $host $userOption /bin/sh & ) &

Using Context Slots to Create Environment Variables

Message contexts have a special meaning when the ToolTalk service starts an application. If the name of a context slot begins with a dollar sign ($), the ToolTalk service interprets the value as an environment variable. For example,


start "my_application $CON1"
uses the value of context slot $CON1.

4.5 Installing the ToolTalk Database Server

The ToolTalk Database server is used to store three types of information:

  1. ToolTalk objects specs.

  2. ToolTalk session IDs of sessions with clients that have joined a file using the tt_file_join call.

  3. File-scoped messages that are queued because the message disposition is TT_QUEUED and a handler that can handle the message has not yet been started.


Note: The ToolTalk database server does not store messages that are scoped to file-in-session.

The ToolTalk service requires that a database server run on each machine that stores files that contain ToolTalk objects or files that are the subject of ToolTalk messages. When an application attempts to reference a file on a machine that does not contain a database server, an error similar to the following message is displayed:


% Error: Tool Talk database server on integral is not running: tcp
where integral is the hostname and tcp is the application protocol. This error message indicates that the connection failed. A failed connection can also be caused by network problems.

When the ToolTalk Service is Installed Elsewhere on the System

To install the ToolTalk database server from another machine on the system that already has the ToolTalk service installed:

  1. Login as superuser.

  2. Copy the database server image from a machine that has the ToolTalk software installed to the machine that does not.

    For example:


    # rcp client:/tt/bin/rpc.ttdbserverd /tt/bin/rpc.ttdbserverd

    where client is the machine where the ToolTalk binaries are located.


    Caution: Before you copy the database server image, verify that the operating systems are the same levels.


  3. Check that the /etc/inetd.conf file contains the following line.


    # 100083/1 stream rpc/tcp wait root /tt/rpc.ttdbserverd rpc.ttdbserverd

  4. Cause inetd to reread the configuration file.

    (inetd-pid in the following example is from the ps listing.)


    # ps -ef | grep inetd
    # kill -HUP inetd-pid

4.6 Running the New ToolTalk Database Server

Once the new version of the ToolTalk database server has been run on a machine, you cannot revert to a previous version of the ToolTalk database server. Any attempt to run a previous version of the ToolTalk database server displays the following error message:


rpc.ttdbserverd: Any data written using a ToolTalk 1.0.x DB server
after using a new ToolTalk DB server will be ignored.

4.7 Redirecting the ToolTalk Database Server

You can redirect both database host machines and the file system partitions.

Redirecting the Host Machine

When you redirect a database host machine, a ToolTalk client can physically access ToolTalk data from a machine that is not running a ToolTalk database server. To redirect the host machine, you need to map the hostnames of the machines the ToolTalk client is to access. On the machine running the ToolTalk client that is making the database query:

  1. Create a hostname_map file.

    For example:


# Map first host machine oldhostname1 newhostname1 # Map second host machine oldhostname2 newhostname2
where oldhostname is the name of the machine the ToolTalk client needs to access and newhostname is the name of a machine that is running the ToolTalk database server.

  • Store the file in the same location at which the ToolTalk Types databases are stored.

    The map files have the same order of precedence as the ToolTalk Types (usr, system, or network) databases.


    Note: A file defined in the _TT_HOSTNAME_MAP environment variable has a higher precedence than the map in the user database.

    The map file is read into a ToolTalk client when the client makes a tt_open call.

    Redirecting the File System Partition

    When you redirect a file system partition, a ToolTalk database can logically read and write ToolTalk data from and to a read-only file system partition by physically accessing a different file system partition. To redirect a file partition, you need to map the partitions to where the ToolTalk database will write. On the machine running the ToolTalk database server:

    1. Create a partition_map file.

      For example:


    # Map first partition /cdrom /usr # Map second partition /sr0/export/home /export/home
    maps the read-only partition /cdrom to /usr, a read-write partition; and maps the read-only partition /sr0/export/home to /export/home, a read-write partition.

  • Store the map file in the same location at which the system ToolTalk Types databases are stored.


    Note: A file partition defined in the _TT_PARTITION_MAP environment variable has a higher precedence than the file partition defined in this map file.

    The map file is read when the ToolTalk database server is started, or when the database receives a USR2 signal.



    Generated with CERN WebMaker