Finding all Harvest processes
search cancel

Finding all Harvest processes

book

Article ID: 124497

calendar_today

Updated On:

Products

CA Harvest Software Change Manager - OpenMake Meister CA Harvest Software Change Manager CA Harvest Software Change Manager - OpenMake Meister

Issue/Introduction

When looking for any Harvest related process on the operating system, it can be complicated because there are 4 different types of processes  (bkrd, hserver, rtserver, agntd) for which to look.  Here's how you can do it with a single command.

Environment

CA Harvest SCM all versions and platforms

Resolution

On Linux or Unix you would use the "ps" command and grep for multiple strings, like this:

ps -ef | grep 'bkrd\|hserver\|rtserver\|agntd'

On Windows you can use Powershell to accomplish the same thing with this command:

tasklist | select-string -pattern "bkrd|hserver|rtserver|agntd"