DevTest Coordinator increase capacity
search cancel

DevTest Coordinator increase capacity

book

Article ID: 135346

calendar_today

Updated On:

Products

CA Application Test Service Virtualization

Issue/Introduction

The capacity of the Coordinator can be set with the -c flag when running the CoordinatorServer command.

For example:  

./CoordinatorServer -c 300 

 

How can this be set for the 'CoordinatorService start' command so it does not use a terminal permanently and stops when exiting the terminal?

 

 

 

Environment

All supported DevTest releases.

Cause

N/A

Resolution

Adding the -c flag at the end of the start option in the CoordinatorService script resolved the problem.

The string to add to increase the capacity to 300 would be (make sure there are 2 double quotes either side of the flag):

""-c 300""


So in the CoordinatorService script, it should look something like: 

    start)

        echo "Starting CoordinatorService"

... com.itko.lisa.coordinator.CoordinatorServerImpl ""-c 300"" > /dev/null 2>&1 &