InfoHeap
Tech
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

AWS and EC2

  • AWS benefits
  • Broken sudoers file
  • EBS and reliability/durability
  • EC2 api tools on Ubuntu
  • How to extend disk (EBS) size on Amazon Linux
  • Install wordpress AWS Classic Ubuntu
  • Linux instance on AWS Classic
  • Mysql access
  • Mysql service and micro instance
  • Route53 as DNS
  • Upgrade Linux micro instance to small
  • ssh automation
 
  • Home
  • > Tutorials
  • > AWS and EC2

How to install wordpress on Amazon AWS-EC2 Classic Ubuntu Linux micro instance

By admin | Last updated on Mar 15, 2016

[Update: This post is applicable for Amazon classic infrastructure. Now you should use Amazon VPC infrastructure and steps may be slightly different. We’ll soon write another post for that.]

Setting up wordpress on Amazon cloud using EC2 is one of the most popular options. You can either use Centos or Ubuntu linux if you are looking for cheaper options without support. Red Hat Enterprise lunux is slightly more costly. We’ll use Ubuntu for this article. When you are starting up, you may want to take a micro instance as there won’t be much traffic initially. In case you anticipate lot of traffic soon, then you can consider small or other instances.

Steps to setup the instance

  1. First login to Amazon AWS console and click on launch instance. The create new instance screen, choose Classic wizard.
    ec2-launch-new-instance
  2. At the time of writing this article, there are two Ubuntu linux flavors:
    1. Ubuntu server 12.04.1 LTS (with support available from canonical)
    2. Ubuntu server 12.10 (with support available from canonical)

    You can choose any of these. LTS version mean it will have long term support as compared to other one. As per Ubuntu release page:

    Normal Ubuntu releases are supported for 18 months. Previous Ubuntu LTS (Long Term Support) releases are supported for 3 years on the desktop and 5 years on the server. Starting with Ubuntu 12.04 LTS, LTS releases will be supported for 5 years on both the desktop and the server.

    Some people may prefer normal release as it has higher version. We’ll choose LTS version.
    ec2-ubuntu-versions

  3. Choose EC2 classic on instance details screen. Proceed with default options till you reach key value screen on instance details. Give a name to your instance. e.g. test-ubuntu-instance.
  4. Continue till you reach create a key pair section. Create a new keypair and download it. You will need it later to login. You can also use an existing key pair.
    ec2-create-key-pair
  5. Continue and complete remaining steps and launch the instance. You may optionally want to enable termination protection during the setup flow when it is asked. You can do it from EC2 console as well later. I believe this is to prevent accidental termination using API. If you don’t intent to use API, this option does not matter.

Steps to setup softwares on the server

  1. Once the server is setup, find its name from EC2 console by clicking on instances in left menu.
    ec2-instance-hostname
  2. Change the permission of the key pair file (.pem extension) you downloaded to 600. This step is for macbook which should work on any linux machine. In case you are using windows machine, the ssh connection method will change accordingly.
    chmod 600 test-keypair1.pem

    If this is not done, ssh won’t work.
    Now login to your instance using this command:

    ssh -i test-keypair1.pem -l ubuntu ec2-54-234-63-73.compute-1.amazonaws.com

    Replace the keyfile and hostname appropriately.

  3. Now install apache2 on the ubuntu server box using
    sudo apt-get update
    sudo apt-get install apache2

    If it works fine, then you should be able to hit http://yourhostname.com/ and a default page should appear similar to this:

    It works!
    
    This is the default web page for this server.
    
    The web server software is running but no content has been added, yet.

    you can also see the status of apache2 using:

    $sudo service apache2 status
    
    Apache2 is running (pid 3918).

    In case apache2 is running but web page does not work, you may have to open port 80 using security groups on AWS console.

  4. Now install mysql and php5 using these commands:
    $sudo apt-get install mysql-server
    $sudo apt-get install php5
    $sudo apt-get install php5-mysql
  5. Test php installation by creating a file info.php in /var/www2/ with following content
    <?php
    phpinfo();
    ?>

    Now open http://yourhostname.com/info.php in the browser. You should see the installed php info.

  6. Enable these apache modules also
    $sudo a2enmod rewrite
    $sudo a2enmod expires

    In case you get these warnings

    perl: warning: Setting locale failed.
    perl: warning: Please check that your locale settings:

    Then run this:

    $export LC_ALL="en_US.UTF-8"
  7. The default docroot folder is /var/www. For wordpress it is better to create a new root. e.g. /var/www2
    $sudo mkdir /var/www2
    $sudo chown ubuntu /var/www2
    (You can make some other user as owner of this dir)
  8. Create your apache conf file (e.g. yourhost_vhost.conf) in /etc/apache2/conf.d/ with something like this:
    Options -Indexes
    <VirtualHost *:80>
      ServerName youhostname.com
      DocumentRoot /var/www2
      <Directory /var/www2>
        AllowOverride All
      </Directory>
      RewriteEngine on
    </VirtualHost>

    Restart apache now using:

    $sudo service apache2 restart
  9. Now download the wordpress (latest version is 3.5.1 as of now), unzip it in /var/www2 dir. Access http://yourhostname.com/ from browser and follow regular wordpress installation process. You will need to download zip utility also for unpacking wordpress download.
    $sudo apt-get install zip
  10. When your are asked for a db name create a mysql db using this command:
    echo "create database blog;" | mysql -u root -h localhost
  11. Use blog as your wordpress db name (or whatever you created) and root as user in installation flow. The default password is blank.You may also want to change it later. Use wp_ as table prefix and leave other settings to default.
  12. The web installation flow will ask you to create wp-config.php. Copy the content and create a file wp-config.php in /var/www2/ with this content using vi or some other editor.
  13. Create wordpress admin user and password whenever asked. and proceed to login.
  14. Thats it! Congratulations on installing wordpress! You can hit http://yourhostname.com/ to view the blog and http://yourhostname.com/wp-admin for writing.

Some points to note

  1. AWS hostname may change if the instance is restarted. In one of the steps apache conf file needs to have host name for virtual host configuration. Ideally you should get a domain name and public IP address for your instance and set the DNS aname entry to that IP.
  2. Default apache2 access log is at /var/log/apache2/access.log and error log is at /var/log/apache2/error.log

Suggested posts:

  1. How to capture php code or included file output in a variable
  2. PHP echo – comma (,) vs dot (.) performance benchmarks
  3. Ubuntu – dpkg and apt-get beginner tutorial
  4. How to locally override website domain (or hostname) to IP mapping
  5. Why and how to log Content-Type in apache access log
  6. How to check the performance of a plugin using mysql query log
  7. How to install and monitor memcache for php on Ubuntu Linux
  8. Setup xdebug for remote wordpress debugging
Share this article: share on facebook share on linkedin tweet this submit to reddit
Posted in Tutorials | Tagged AWS and EC2, Cloud, Linux, Tutorials, Ubuntu Linux, Wordpress
  • Browse content
  • Article Topics
  • Article archives
  • Contact Us
Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | Company results | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries | InfoHeap Money

Copyright © 2025 InfoHeap.

Powered by WordPress