Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试通过 eclipsc 运行 gwt 时,它显示错误,例如,
**
无法打开请求的套接字:地址已在使用中尝试覆盖 --address 和/或 --port。
像这样的错误意味着该端口上已经有一个进程正在运行,它可能已经崩溃并且可能已死,因此当您搜索它时它不会显示在您的浏览器中。您需要停止该过程,这里有几个命令
如果您正在运行linux,则在控制台中运行几行
让所有应用程序在端口上运行 [需要他们的 pid]
sudo lsof -w -n -i tcp:8888
杀死端口上运行的应用程序
sudo kill -9 pidnumber
如果窗口那么只是:
查找特定端口的死进程的 pid
netstat -a -o -n
杀死进程
taskkill /F /PID <pid>