R
Railway2mo ago
smaig

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
No description
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. ...
Jump to solution
18 Replies
Percy
Percy2mo ago
Project ID: N/A
Brody
Brody2mo ago
do not specify anything relating to SSL as railway handles that for you. you need to listen on the $PORT environment variable n/a
smaig
smaig2mo ago
I 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) }
smaig
smaig2mo ago
No description
smaig
smaig2mo ago
No description
smaig
smaig2mo ago
@Brody And it doesn't help
Brody
Brody2mo ago
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
smaig
smaig2mo ago
Thanks, everything is fine I meant thanks for the advice
coltonidle
coltonidle2mo ago
ay. i do ktor exclusively on railway. lemme see if i can see whats up
Solution
coltonidle
coltonidle2mo ago
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. ...
smaig
smaig2mo ago
No it didn't help
coltonidle
coltonidle2mo ago
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
smaig
smaig2mo ago
I've done everything. Server is Working
Brody
Brody2mo ago
success?
coltonidle
coltonidle2mo ago
:thinkies:
Want results from more Discord servers?
Add your server