goagent 报错

socket.error: [Errno 98] Address already in use

有时候运行Goagent 报上面那个错误 原因是我们肯能后台在运行一个

root@xuxiangdong-G41M-ES2L:~# lsof -i:8087
COMMAND  PID        USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
python  1692         。。。    4u  IPv4  12321      0t0  TCP localhost.localdomain:8087 (LISTEN)
:~# kill 1692



用 lsof -i:8087 查看是哪个进程占用了 8087 端口,然后

kill <进程的Pid号>

你可能感兴趣的:(翻强)