Hi Edwin, > any chance ideas on how to fix this on osx?
In which situation does this error appear? An IP bind error occurs if a port is already used by (bound to) some other process. This either happens if another, already running, application uses the same port, or if you start your app a second time while the first instance is still listening on that port. You can find out if a port is used by some process (best as 'root', to see all): # lsof -i :<port> e.g. # lsof -i :80 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME httpGate 1660 root 3u IPv4 4618 0t0 TCP *:www (LISTEN) or # lsof -i :8080 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME pil 8649 abu 17u IPv4 2560247 0t0 TCP *:http-alt (LISTEN) Cheers, - Alex -- UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe
