1

How to kill a running CTS instance.Suppose one CTS instance is running on a terminal and if we abruptly close that terminal, that CTS instance will not be closed and when we try to start CTS again in a fresh terminal,we get this error[CTS_ERROR >>> Error: CTS is being used at the moment. No more than one CTS instance is allowed simultaneously] so how to go to CTS Host this time or kill this running instance.

L2G
  • 846
  • 6
  • 28
KVR
  • 11
  • 1

1 Answers1

2

type command: ps -al -> it will show all running instances, and select appropriate running instance id (a integere value) like adb instance and kill that instance with following command: kill -9 id(integer value)

Basu
  • 21
  • 4