vote up 0 vote down star

Can someone give specific steps how to implement hosting a Django based website by using Amazon EC2 hosting service?

Is that possible?

My website source code can be found here

I goolged and found this article

But before doing anything I just want to get some basic ideas about Amazon EC2 hosting.

flag

1  
What questions do you have which are not answered if you read the article you found? – dar Oct 28 at 17:50
After reading that article I feel EC2 is not a simple hosting like FTP my website to some folder, I have to follow lots of steps make it work. Just want to know from high level why i need to do those steps not simply upload my website and database to hosting machine. – CodeYun Oct 28 at 18:13
Django code will NEVER be "just simply upload my website". It doesn't work like that. Any host at all will require extensive setup and configuration. Django is not PHP, sorry. – Paul McMillan Oct 29 at 8:39

2 Answers

vote up 3 vote down check

It certainly is possible. For example, google for "django ec2" and check out the first and second links.

In a very oversimplified sense, EC2 is just a server you can rent by the hour. You can have it run windows or linux, and then install python and django like you normally would. In fact there is probably an image that has django preconfigured already. What stage of your project are you at? Just researching, or have you gotten stuck on a particular problem with either django or ec2?

UPDATE: Ok, I think what you are confused about is that there are all different types of hosting out there. At one extreme, you can pay for your very own physical server, install your own operating system (like windows or linux), install your own python, you own web server like apache or IIS, your own django libraries, your own database (like mysql) etc, and then upload your web site to that. At the other extreme you can pay for an account on a shared hosting service, where someone else has done all the setup of the OS, the python, the web server, etc, and all you need to do is upload your web site code. EC2 is a lot closer to the first extreme, and is probably overkill for you. I think in your case you should be looking for a more managed solution.
I would check out this web page, which lists a bunch of different django hosting companies: Django hosting

link|flag
2  
As an added point I would recommend they go with a managed solution if they don't know how to manage a server. Chances are they will spend less time pulling their hair out and the web will enjoy not having another bot in the farm. – envalid Oct 28 at 17:47
I am a newbie in terms of django and python. I want to try to run an open source website on EC2 just because I believe EC2 is cheapest one I can use. I can run my django website on my local machine. Just want to publish it to Internet. – CodeYun Oct 28 at 17:50
1  
EC2 is far from the cheapest you can use. If you NEED a dedicated VPS, try slicehost.com. Otherwise, look at one of the hosted solutions. – Paul McMillan Oct 29 at 8:40
vote up 1 vote down

A good step by step guide can be found here: http://uswaretech.com/blog/2009/03/django-with-mysql-and-apache-on-ec2/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.