a prompt such as the following appears when you run the adb command:
ADB server is an out of date. Killing ...
Causes the adb to fail to start properly and to run other commands.
What if there is a problem? Baidu Bai. Checked, said that the port is occupied,adb default port is 5037, then look at it:
Shell command:Netstat-ano | findstr "5037"
5037 Port is actually occupied by the 5676 process. The simplest and most brutal way: Restart your computer. Of course, we don't have to be so rude and gentle to kill the process.
The commands that are based on the process ID kill process are:
Taskkill/pid process id/f (forcibly kill the specified process)
or taskkill/pid process id/t (kill the specified process and its child processes)
We'll be able to use taskkill/pid 5676/f here.
OK, the problem is overcome.
Resolves the ADB server is out of date. Killing ... Problem