I can't host ktor server
I get an error
I'm encountering an issue when trying to build my project with the following command:
java -Xmx512m -jar build/libs/com.ilya.ktor-meetmap-all.jar
The error message I receive is:
Exception in thread "main" java.lang.IllegalArgumentException: Neither port nor sslPort specified. Use command line options -port/-sslPort or configure connectors in application.conf
Even when I try to specify the sslPort directly with the following command:
java -Xmx512m -jar build/libs/com.ilya.ktor-meetmap-all.jar -sslPort 8080
Solution:Jump to solution
i did write this https://dev.to/coltonidle/how-to-deploy-a-ktor-app-on-railway-3jde
does that help by any chance?...
DEV Community
How to deploy a Ktor app on Railway
Deploying Ktor onto Railway isn't too popular, but I have found two different ways to do it. ...
18 Replies
Project ID:
N/A
do not specify anything relating to SSL as railway handles that for you.
you need to listen on the
$PORT
environment variable
n/aI have already recorded this change in both the main file and configuration.conf
fun main() {
val port = System.getenv("PORT")?.toInt() ?: 8080
embeddedServer(Netty, host = "0.0.0.0", port = port, module = Application::module).start(wait = true)
}
@Brody And it doesn't help
I don't have much experience with java so the best advice I could give would be to tell you to do some research on this error because it would not be platform specific
Thanks, everything is fine
I meant thanks for the advice
ay. i do ktor exclusively on railway. lemme see if i can see whats up
Solution
i did write this https://dev.to/coltonidle/how-to-deploy-a-ktor-app-on-railway-3jde
does that help by any chance?
DEV Community
How to deploy a Ktor app on Railway
Deploying Ktor onto Railway isn't too popular, but I have found two different ways to do it. ...
No it didn't help
weird.
let me go through my own tutorial again to see if something is now out of date
following my tutorial everything works. sounds like something in your config is wrong
if you have a sample repo that causes the issue id be more than happy to check it out
I've done everything.
Server is
Working
success?
:thinkies:
good enough for me
TIL about answer overflow!
role given, congrats!