Perform operations on running objects

 

  1. Invoke AdminControl

  2. Obtain the object name of the running object with the following command:

    $AdminControl completeObjectName name
    

  3. Issue the following command:

    set s1 [$AdminControl completeObjectName type=Server,name=servername,*]
    

  4. Invoke the operation with the following command:

    $AdminControl invoke $s1 stop
    

    Here is an example that uses parameters:

    set traceServ [$AdminControl completeObjectName type=TraceService,process=servername,*]