When I typed the command grails run-app
into my terminal, I got this error message:
Error Server failed to start for port 8080: Address already in use (Use --stacktrace to see the full trace)
How do I get my application to launch?
When I typed the command grails run-app
into my terminal, I got this error message:
Error Server failed to start for port 8080: Address already in use (Use --stacktrace to see the full trace)
How do I get my application to launch?
Copyright © 2021 Jogjafile Inc.
That would indicate you already have something running on port
8080
. If you want to run your application on another port you can use the following command:The above will run your application on port
8090
.