Solve GoAgent Socket Error
Warning: Listen on 127.0.0.1:8086 failed. Traceback (most recent call last): File "./startup.py", line 8, in <module> main() File "<string>", line 1510, in _______ File "<string>", line 1475, in _93 File "<string>", line 1469, in _17 File "<string>", line 1449, in _36 File "<string>", line 1311, in __init__ File "/usr/lib/python2.7/SocketServer.py", line 408, in __init__ self.server_bind() File "/usr/lib/python2.7/SocketServer.py", line 419, in server_bind self.socket.bind(self.server_address) File "/usr/lib/python2.7/socket.py", line 224, in meth return getattr(self._sock,name)(*args) socket.error: [Errno 98] Address already in use
According to the error message, port 8086 is occupied.
using command: lsof -i:8086
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
Python 302 zsq 3u IPv4 0xfd435e3061042831 0t0 TCP localhost:8086 (LISTEN)
Then kill the related PID and re-run GoAgent!










