Jakob Nielsen
Jakob Nielsen

Reputation: 5198

Problems while deploying play framework app

So I finally managed to start my application on my server without any exceptions:

[info] Done packaging.

(Starting server. Type Ctrl+D to exit logs, the server will remain in background                   )

Play server process ID is 12205
[info] play - database [default] connected at jdbc:mysql://localhost/botlane
[info] play - Application started (Prod)
[info] play - Listening for HTTP on /0:0:0:0:0:0:0:0:9000

What confuses me is the /0:0:0:0:0:0:0:0:9000

So the problem is I am not able to access the started server, also I cant figure out how to stop and restart it.

My config file looks like this:

# The application languages
# ~~~~~
application.langs="en"

%production.application.mode=prod
%production.jpa.ddl=create
%production.http.port=80

# Default database configuration using MySQL database engine
db.default.driver=com.mysql.jdbc.Driver
db.default.url="jdbc:mysql://localhost/"
db.default.user=
db.default.pass=""

ebean.default="models.*"

evolutionplugin=disabled

Thanks for any help this is my first time deploying a web application on a remote server

Upvotes: 0

Views: 114

Answers (1)

i.am.michiel
i.am.michiel

Reputation: 10404

Well there is not much info in your post. I'll assume you are using a linux OS. That means, you should be able to see the java process using basic unix tools :

ps -elf | grep java 

Secondly, 0.0.0.0:9000 simply means that the server will be bind to all incoming ip on port 9000.

Upvotes: 1

Related Questions