Domanda

I am new to amazon web services.And I want to install Magento 1.9.1.1 on it.Can anyone suggest me how to do that?

È stato utile?

Soluzione

check this link maybe help in your condition.

  1. Launch an Ubuntu instance using the management console. When launching the instance , make sure you open port 80 in the security groups.

    1. Connect the instance using putty.

    2. Login as root user.

    sudo su

    1. Update the server

Install LAMP stack: Magento backend need apache , Php and Mysql database. You can configure all three applications using one command.

  1. Install and configure Lamp stack.

apt-get install -y lamp-server^

  1. Create a root password for mysql and confirm it.

  2. You can check if apache and mysql service is running using the following commands

service apache2 status service mysql status

  1. Magento needs a database on mysql server. You can create a databse on mysql server using command line and phpmyadmin. I prefer phpmyadmin, since you can manage your mysql server from the browser using GUI.

  2. Install phpmyadmin on Ubuntu instance

apt-get install phpmyadmin

You will be prompted to select the webserver. Select apache using the space bar and hit enter. Then you will be prompted to enter the phpmyadmin root password. Give a strong password.

Phpmyadmin has to be integrated with mysql-server. So when prompted select db-conf and enter the mysql root password you created during the LAMP stack installation.

  1. Once installed, you can access the phpmyadmin dashboard using the public ip, elastic ip or the Public dns of your instance followed by /phpmyadin.

54.154.35.67/phpmyadmin

  1. Login to phpmyadmin using the credentials you created . The defatult username is root and password is the password you created during phpmyadmin setup.

  2. Create a database magentoDB for magento application using phpmyadmin.

  3. Click the database option in the top navigation panel and enter magentodb for the database name and hit enter.

Download Magento 1. Download magento to the /var/www folder.

wget http://www.magentocommerce.com/downloads/assets/1.8.1.0/magento-1.8.1.0.tar.gz

  1. Untar the file

tar –xvzf mag*

  1. Change the file permissions for the following folders to give Magento write permission on those folders.

chmod -R o+w magento/app/etc/ chmod -R o+w magento/var/ chmod -R o+w magento/media/

  1. Add mcrypt extension to the php.ini file located in /etc/php5/apache2/php.ini

vi /etc/php5/apache2/php.ini extension=mcrypt.so

  1. Install php5 curl.

apt-get install php5-curl

  1. Add curl extension to the php.ini file.

vi /etc/php5/apache2/php.ini Extension=curl.so

Installing Magento stack: 1. Go to http:// /magento from your browser. Magento installation wizard will appear.

eg : http://54.23.154.34/magento

  1. Tick the terms and conditions and hit continue.

apt-get update

Altri suggerimenti

This doc from AWS itself has a very thorough walkthrough and a lot of useful information on what you're setting up and how to do it properly, securely, and using best practices on AWS.

From the AWS Quick Start Overview

The Quick Start includes a deployment guide that describes the Magento architecture on AWS, provides step-by-step instructions for deploying and configuring the software, and discusses design and performance considerations.

http://docs.aws.amazon.com/quickstart/latest/magento/welcome.html

Hi Friends i need detail and power full magento deploy guide with aws load balance, CDN, and all availability service for my store fast and stable please help me

Here are the steps:

  1. First, create instance of ec2
  2. Generate elastic ip from network and security.
  3. Assign elastic ip to instance
  4. Generate pem file
  5. Convert it to ppk file using puttygen.
  6. Generate and get Privatekey
  7. Start putty -> default pwd is : ubuntu
  8. Enter elastic ip to connect server using putty
  9. Connectivity -> ssh - > auth -> give ppk file path

You should be able to connect to the Amazon server now.

Now follow this link to install Apache, Php and MySQL

https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-on-ubuntu-12-04

Here are some useful articles we have followed to set up Magento on amazon

http://www.inkthemes.com/how-to-install-wordpress-on-amazon-aws-ec2/

https://help.ubuntu.com/community/phpMyAdmin

http://www.inkthemes.com/how-to-install-wordpress-on-amazon-aws-ec2/

create ftp :

http://quadloops.com/blog/installing-up-ftp-server-in-amazon-ec2-ubuntu-server-12-04/

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top