Hi everyone, I started to learn Ktor. However I a...
# ktor
b
Hi everyone, I started to learn Ktor. However I am not even able to run the application. It throws an error saying that Exception in thread "main" java.net.BindException: Address already in use: bind. I appreciate for any help!
r
Means something is already running on the port you selected. Quickest is just change the port you are wanting to use
🙌 1
g
you can change the port by updating the
application.conf
file
🙌 1
a
You might also want to ensure you don't have any other instances of your app currently running; as they may already be bound to your chosen port.
🙌 1
b
Thank you!!!