Linux - trillium_quality - 17.1

Trillium Quality for SAP Reference Guide

Product type
Software
Portfolio
Verify
Product family
Trillium
Product
Trillium > Trillium Quality
Version
17.1
Language
English
Product name
Trillium Quality
Title
Trillium Quality for SAP Reference Guide
Topic type
Overview
Administration
Configuration
Installation
Reference
How Do I
First publish date
2008

Use the Director System Manager or Linux console to start the TS Connector components in a Linux environment. The startup scripts are installed into the/bin directory.

To start and stop the connector on Linux

  1. Change to the tsq/Software/bin directory:

    ./startupD &

    Starts Director server in background.

    ./startupSAPC &

    Starts Cleansing server in background.

    ./startupSAPM &

    Starts Matching server in background.

    ./startupSAPM001 &

    Starts Search server in background.

    ./startupClientU &

    Starts the Unicode TS Client for SAP in the background.

    ./stopClientU

    Sends a SIGTERM to all client processes for the current user.

  2. To ensure that the services are terminated entirely, use the Director System Manager to stop the Director server, cleansing server, and matcher server.

Alternatively, all Director, Cleanser, and Matcher servers can be terminated from the Linux console using the kill –9 command. It is recommended that you use only the term ”-9” (SIGKILL – Software kill signal from kill */) and no other terms to ensure that the services are terminated entirely.

These commands can also be placed in a single termination script, with some additional syntax to assist with the termination. For example:

where:

Syntax

Description

kill -9

Cancel the nominated process ID completely

ps -ef|grep TrilliumDirector|grep au

Search the argument for all occurrences of the search string, such as TrilliumDirector and au, and list them.

paste -s -d"\t\n" -|cut -d" " -f3

Cut and paste the value from column 3, the process ID.

The kill -9 command is equivalent to "kill -15 process id" of the Director server.