I installed the Nginx Proxy Manager on the same server and this address already in use error occurred when I started the ASF. How can I fix it
#2947
-
|
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
You've started at least two processes, very likely more, and very likely one of them is holding and actually listening on that port - see your logs. ASF does not support being started more than once from existing directory, and if you intend to start two or more instances (each one in its own directory) then each one must have its own exclusive port, you can't start two on the same one. If you still don't know what holds the port for you, |
Beta Was this translation helpful? Give feedback.






You've started at least two processes, very likely more, and very likely one of them is holding and actually listening on that port - see your logs. ASF does not support being started more than once from existing directory, and if you intend to start two or more instances (each one in its own directory) then each one must have its own exclusive port, you can't start two on the same one.
If you still don't know what holds the port for you,
netstat -tulpn | grep 1242will give you the PID.