I have to set up a dev/test platform on the Amazon Web Service. So I was told, “install it” but I have no clue how to do that. I’m very used to 1&1, OVH and other hosting companies on which I upload my data through FileZilla but here it seems to be completely different. Am I wrong?
I read that I would need to install centOS to communicate with the server, right? is there no other way to do so? FileZilla?
And By the Way, how do I set up Magento on AWS? I found some documentation about it :
http://loadstorm.com/2009/magento-setup-amazon-associates-web-service
http://www.zetaprints.com/magentohelp/category/overview/
http://www.greengecko.co.nz/magento_on_amazon_ec2
But each time, it seems that I missed something in the first lines, the VERY FIRST step.
Could someone enlightene me please because I think I missed something at the starting point of this process and I clearly don’t understand the way it works.
I downloaded both elasticFirefox extension and S3 organizer, but they are not very helpful for the understanding. In each of the docs I have read, the guy starts from a point I can’t reach ..
PS: I’ve started developing the website with Magento so it is about transfering this version of Magento instead of installing a new one .. except if it’s much much more complicated ..
Any Help or full documentation would be appreciated 🙂
Thanks for your help !
I did something very much alike (using CentOS 5.5 on rackspase) – follow the steps below. all the lines that start with “–” should be treated as remarks. Before you start “transferring” Magento you should install PHP, httpd and MySql:
— MySql
— httpd
— open port 80 in iptables
— add a line:
— configure httpd.conf (enable the use of .htaccess)
change the line under “< Directory “/var/www/html >” from “AllowOverride None” to “AllowOverride All”
— install php 5
— go to /var/www/html
— and copy there all the content of Magento
–then clean cache if any:
— you have to create a schema:
— create sql dump on your computer:
— and import it on centos
–Make sure that the username/password are configured properly:
— Login the DB as [your user]:
— Locate the entry that is configured to localhost (since you developed it on your computer) and change it to the installation-server’s IP (say 1.1.1.1):
— now restart all the services
— Troubleshooting