ADSM-L

Re: client acceptor question

2002-05-09 15:58:07
Subject: Re: client acceptor question
From: Bill Boyer <bill.boyer AT VERIZON DOT NET>
Date: Thu, 9 May 2002 15:57:54 -0400
Burak,
        You need to tell the CAD service the name of the scheduler service to
control with the /CADSCHEDNAME: parameter to the DSMCUTIL command. I've
included a file (SERVICE.BAT) that we use to install the 3 services on a
Window box. We also use a SERVICER.BAT file (also included) that removes the
services. We copy both these files into the BACLIENT directory as part of
installation. That way we can remove (SERVICER.BAT) and re-install
(SERVICE.BAT) the services as much as we want with a simple interface.

Bill Boyer
DSS, Inc.

<<<<<<<<<<<<<<<<<<<< Start SERVICE.BAT file >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
REM
REM  This file will install the TSM services
REM  Change <node> to the nodename for the client
REM  Change <pass> to the client node password
REM

set NODE=%COMPUTERNAME%
set PASS=<pass>

REM Install the TSM Scheduler
REM
dsmcutil install /name:"TSM Schedule Service" /node:%NODE% /password:%PASS%
/clientdir:"C:\Program Files\tivoli\tsm\BACLIENT" /optfile:"c:\program
files\tivoli\tsm\baclient\dsm.opt" /autostart:no /startnow:no

REM Install and start the Client Acceptor service..
dsmcutil install CAD /name:"TSM Client Acceptor" /password:%PASS%
/CADSCHedname:"TSM Schedule Service" /clientdir:"C:\Program
Files\tivoli\tsm\BACLIENT" /optfile:"C:\Program
Files\tivoli\tsm\BACLIENT\DSM.OPT" /autostart:yes /startnow:no /node:%NODE%

REM
REM Now install the Remote Client Agent...
dsmcutil install REMOTEAGENT /name:"TSM Remote Client Agent"
/password:%PASS% /clientdir:"C:\Program Files\tivoli\tsm\BACLIENT"
/optfile:"C:\Program Files\tivoli\tsm\BACLIENT\DSM.OPT" /node:%NODE%

REM
net start "TSM Client Acceptor"
<<<<<<<<<<<<<<<<<<<< End SERVICE.BAT file >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

<<<<<<<<<<<<<<<<<<<< Start SERVICER.BAT file >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
REM
REM This file will remove the TSM services
REM

dsmcutil remove /name:"TSM Schedule Service"
dsmcutil remove /name:"TSM Client Acceptor
dsmcutil remove /name:"TSM Remote Client Agent"
<<<<<<<<<<<<<<<<<<<< End SERVICER.BAT file >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

<Prev in Thread] Current Thread [Next in Thread>