Mobile app version of vmapp.org
Login or Join
Kaufman445

: Hosting terminology explained I am learning the Play framework, and while looking for a place to host (never hosted a site before) I find myself lost in this world. I do not understand the

@Kaufman445

Posted in: #WebHosting

I am learning the Play framework, and while looking for a place to host (never hosted a site before) I find myself lost in this world. I do not understand the terminology used for pricing.

I have visited several sites:

www.cloudbees.com/pricing-standard-services.cb www.heroku.com/pricing#1-1 aws.amazon.com/en/ec2/#pricing http://www.playapps.net/pricing


All have various tables with hard to understand pricing elements (some of which you need to set) such as


Build Usage (Builds per day, Average build duration, Working days per month..)
Dynos? worker dynos, web dynos?


I am just looking to host a small website I developed (currently for learning purposes with an option to maybe grow). I don't know if the listed hosting options above are actually good for me, can any one explain the basics, or at least point me at the right direction? (also can I use any site that supports Java hosting such as javaprovider.net/ for running a Play app?)

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Kaufman445

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kaufman445

If you have just a small website, or developing for learning, cloud service is too expensive. amazon, heroku, other cloud server, you should paid more than /month. I will suggest you to rent a VDS. you can full access with SSH. the cost is nearly half of the clouding computer.

If you still need a clouding computer, godaddy release a new production few days ago, may be you can reference.
www.godaddy.com/hosting/cloud-computing.aspx
This is not an advertisement. I haven't tried it. But they have a good introducing, I think they will provide good service than other small server providers.

10% popularity Vote Up Vote Down


 

@Sims2060225

As described on the Heroku page, dynos are processes running on the Heroku platform. If you follow the links, they cover what dynos are in great depth. All you need to know are in those two links ("web dyno" and "worker dyno").

If you don't know what builds are yet, then you probably don't need to be concerned with CloudBees, which is a PaaS provider, not a web host. They provide a full solution stack for Java development in the cloud, which includes code repository, a continuous integration environment, and assorted Java enterprise middleware.

If you're just learning Java web development, then I suggest sticking to a shared web host that supports JSP/Tomcat or just set up a local test server to develop on. Alternatively, you could install Eclipse and the Google App Engine plugin. This will give you everything you need to develop and run your Java web app locally, and you can sign up for a free GAE account to deploy your web app to, with a very generous request quota before you need to upgrade to a paid account.

If you really want to dive into cloud hosting, then these tutorials might help:


getting started with Play Framework on Heroku
getting started with Spring Roo on CloudBees' Run@Cloud platform


This Play framework plugin for CloudBees might also help.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme