如果我还运行VSCode,我的docker服务(epst)无法启动。错误是:
month1 = pd.Series(apple.index.month)
month2 = pd.Series(apple.index.month).shift(-1)
mask = (month1 != month2)
apple[mask.values].head(10)
如果我关闭VSCode并重新启动docker-compose,那么一切都很好。
所以我的问题是如何识别VSCode中绑定到端口5123的内容?
答案 0 :(得分:0)
我相信您可能正在寻找lsof -i :5123
?
请参阅man page for lsof。
这将返回您输入的端口(5123
)上运行的进程列表。
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
appName 5123 yourUser -- ---- -------------------------
然后您可以kill 5123
释放所需的端口。