8

I run the following command to connect device over TCP ;

adb connect 192.168.56.102:5555

I am not able now to disconnect it I even made two attempts :

 adb disconnect 192.168.56.102:5555 

The second is , I reboot adb

  adb reboot

Unfortunately, when I run adb devices , the connection is still there :

List of devices attached
192.168.56.102:5555 device

Brief, I am looking for the opposite of this answer

xavier_fakerat
  • 10,065
  • 6
  • 41
  • 101
Abdennour TOUMI
  • 245
  • 3
  • 4
  • 9

3 Answers3

16

I just use "adb disconnect" and it worked fine for me. See the photo below: enter image description here

Van Thuan Pham
  • 186
  • 1
  • 3
3

To kill the server currently running you need to type: adb kill-server in command prompt. This should stop the instance of a running server.

xavier_fakerat
  • 10,065
  • 6
  • 41
  • 101
2

Use adb -s deviceName disconnect.

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
user322778
  • 21
  • 1