Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Amit
My requirement is also to install my web2py application to ubuntu running on amazon cloud , but before that i need to setup the prerequisite(web2py framework, apache, database etc..) to ubuntu, so just going through the script shared by pbreit..meanwhile i am trying to get the amazon cloud (Amazon

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Jason Brower
Yeah, I did the script I mentioned to you earlier on ubuntu running on amazon. Very easy install. Once your have everything setup, installing your app is very easy. Let's see how far you get with the script and then we can go from there. Do you have an application you have already made on your

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread pbreit
Both MySQL and Postgres are fine. Use whichever you or anyone on your team has experience with and/or is comfortable with. The Rocket web server that comes with Web2py is great for development but most or all people use something like Apache or Nginx in production for various reasons, performan

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Amit
Okay, I understood at high level is: Rocket web server is bit slow as it will traverse to all layers so we can go for apache( I can go for apache also, as it seems like it serves our purpose because server has to run 24*7 on ubuntu so the client can access my application over the network, but I am

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Jason Brower
Built into web2py for when you develop locally is a server called Rocket. This helps a lot because you don't have to setup the server to be running all the time. Take a look at the diagram I have given in this email. The webserver is what listens to requests from somewhere on the network/intern

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Amit
Thanks Jason for providing the useful inputs, I have to use ubuntu machine as a server so will not be used for development purpose, will develop web2py application in other PC and simply deploy that application into ubuntu machine, my application will use MySql database and default web server which

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Jason (spot) Brower
You can run the script on your system by typing python web2py.py but I assume you know this. To install it permanently there is a script just for this. It does the following: * Installs any required features that you would need to run web2py. * Setups apache for you with access to https:// for you

[web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Amit
I am new bee in web2py development so can anyone share me whole procedure of how to install web2py in ubuntu machine? And how to run web2py application in ubuntu machine? Please share me the procedure in details. Thanks in advance.