adb socket not working and daemon

孤街浪徒 提交于 2019-12-31 13:29:35

问题


I am getting this type of error

error: could not install smartsocket listener: cannot bind to 127.0.0.1:5037: Only one usage of each socket address (protocol/network address/port) is normally permitted. (10048) 1:34:26 PM could not read ok from ADB Server 1:34:26 PM * failed to start daemon * 1:34:26 PM error: cannot connect to daemon 1:34:26 PM 'C:\Users\MITESH SUTHAR\AppData\Local\Android\Sdk\platform-tools\adb.exe,start-server' failed -- run manually if necessary 1:38:14 PM Unable to obtain result of 'adb version'

my genymotion device is running but it shows me that no device


回答1:


I came across same error.I gave below command.It got solved

COMMAND :- taskkill /f /im adb.exe




回答2:


  1. Close Eclipse or Android Studio if either is running (Optional).
  2. Open Command Prompt.
  3. Go to the Android SDK platform-tools directory.
  4. Type adb kill-server.
  5. Type adb start-server.
  6. If no error message is thrown while starting ADB server, then adb is started successfully.

OR

  1. Go to Task Manager, open the Processes tab, and end the adb.exe process.
  2. Then restart Android Studio.

This may work if there is any problem with adb.




回答3:


In my case, none of the above solution worked. I solved it strangely maybe it can be a bug.

Do not run Genymotion emulator before Android Studio. Firstly, I opened android studio then I clicked run project and select deployment target windows appeared. Then I run genymotion emulator and now the emulator is shown in the select deployment target windows in Android Studio. Then deployed to the emulator without errors. Done!

As another way, you can try to set Genymotion sdk to the same as Android studio sdk. To do this, first find your sdk location. You can find it by right clicking the Android Studio project -> Open Module Settings-> Select SDK location -> under Android SDK location, it is shown. Then open Genymotion -> Settings -> ADB tab -> Click Use custom Android SDK tools radio button -> navigate to SDK folder used by Android studio -> Restart Genymotion virtual device




回答4:


i've encountered same error in my ionic 2. i just uninstall and reinstall ionic. and it works fine again..

npm uninstall -g ionic
npm install -g ionic



回答5:


If none of the above worked for you, just make sure that you have closed Genymotion emulator as it caused this issue with me.




回答6:


Easiest Way! I just ran into this issue trying to connect a React-Native App to an Android Studio emulator. If you read the error message it tells you that "Only one usage of each socket address (protocol/network address/port) is normally permitted." So you can assume that something other than React-Native is also attempting to connect to the emulator.

Terminate The Connections:

  1. Leave the emulator running.

  2. Close out of and uninstall any Android Studio/Eclipse Apps you have on the emulator. This terminates apps trying to connect.

  3. Close Eclipse or Android Studio if either are running. Android Studio doesn't have to be open in order for the emulator to work (This is important). This terminates software trying to connect.

After doing so I went back into my React-Native App and connected to Expo no problem.

All you have to do is terminate all connections. However you so choose.




回答7:


I came across the same error, it worked simply after restarting the AS on windows, of course, it asked for SDK update.



来源:https://stackoverflow.com/questions/38845579/adb-socket-not-working-and-daemon

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!