1. ホーム
  2. android

[解決済み] エラーです。"Adb connection Error:An existing connection was forcibly closed by the remote host" (既存の接続がリモートホストによって強制的に閉じられました。

2022-02-05 20:59:19

質問

をリセットしようとしたところ adb と表示され、以下のエラーが発生します。

[2011-09-14 09:34:06 - DeviceMonitor]Adb connection Error:An existing connection was forcibly closed by the remote host
[2011-09-14 09:34:07 - DeviceMonitor]Connection attempts: 1

私は簡単な "hello world" プログラムを作っているだけです。

どのように解決するのですか?

エミュレータの再起動は必須ではありませんが、eclipse本体からadbをリセットすることも可能です。

1.) DDMSに移動して、adbのリセットオプションがあります。

2.) コマンドプロンプトから手動でadbを再起動することができます

  run->cmd->your_android_sdk_path->platform-tools>

次に、以下のコマンドを記述します。

adb kill-server - サーバーを強制終了させる場合

adb start-server - サーバーを起動する

UPDATEされました。

F:\android-sdk-windows latest\platform-tools>adb kill-server

F:\android-sdk-windows latest\platform-tools>adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *