Oscar Yuandinata
Oscar Yuandinata

Reputation: 1035

play framework - run in ubuntu 11.10

how to correctly run play framework in ubuntu 11.10? i mean, i can run the sample app (helloworld) on terminal, but when i tried to open localhost:9001 (i run it at port 9001) on browser, i got "Connection was reset" response. I tried opening localhost:9001/helloworld, i got this enter image description here

Then, i tried opening localhost:9001/hello, i got "Connection was reset" again. the reason i run it at port 9001 was because i have php-fpm running.

additional info: i have nginx and apache2 running. i stopped them, it still didn't work

Upvotes: 0

Views: 199

Answers (1)

Steve Chaloner
Steve Chaloner

Reputation: 8202

For the initial issue, the problem is with your request path. Looking at the routes, you don't have /helloworld mapped to anything.

Upvotes: 2

Related Questions