The reason for this exception is that the server port is occupied, so the solution is as follows:
1. CMD enters the command line to check whether the port is occupied
Use command: netstat – ANO
C:\Users\admin> netstat -ano
Protocol local address external address status PID
TCP 0.0.0.0:8009 0.0.0.0:0 LISTENING 1256
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 5500
2. execute tasklist | findstr “5500” command under CMD to query which program is occupied
C:\Users\admin> tasklist|findstr “5500”
javaw.exe 1256 Console 1 81,864 K
Finally, close the javaw. Exe process, the problem is solved
Similar Posts:
- adb server is out of date. killing [How to Solve]
- [Solved] events.js:183 throw er; // Unhandled ‘error’ event Error: listen EADDRINUSE 127….
- [Solved] Error: listen EADDRINUSE: address already in use 127.0.0.1:3000
- How to Solve “adb server is out of date. killing… ”
- How to Solve React Native Error: Could not get BatchedBridge
- [Solved] ADB Connect Error: failed to start daemon
- [Solved] Adb Start Error: adb server version (32) doesn’t match this client (39)
- [Solved] VUE npm run devevents.js:160 throw er; // Unhandled ‘error’ event listen EADDRIN…
- Error reporting using ADB; error: unknown host service
- Error: listen EADDRINUSE: address already in use :::80 [How to Solve]