How can I run the Ubuntu EC2 AMI images locally?

Link provided Istvan is down. Amazon now provides tool to export your EC2 image as Virtual Machine image ready to run locally: http://aws.amazon.com/ec2/vmimport/ PS Please note that this method only works for Windows VMs Export the instance using the ec2-create-instance-export-task command. The export command captures the parameters necessary (instance ID, S3 bucket to hold the … Read more

Creating an EC2 AMI Image from a running instance vs. from a volume snapshot

They do exactly the same if you select the no reboot option when creating the AMI directly from EC2. This basically creates a snapshot that can potentially be in a inconsistent state. For example, you are risking more having an inconsistent state if you are doing a lot of disk writes when creating the snapshot. … Read more

phpMyAdmin Error – The configuration file now needs a secret passphrase

This might help, https://wiki.archlinux.org/index.php/PhpMyAdmin#Add_blowfish_secret_passphrase If you see the following error message at the bottom of the page when you first log in to /phpmyadmin (using a previously setup MySQL username and password) : ERROR: The configuration file now needs a secret passphrase (blowfish_secret) You need to add a blowfish password to the phpMyAdmin’s config file. … Read more

How to install Docker on AWS EC2 instance with AMI (CE/EE Update)

To get Docker running on the AWS AMI you should follow the steps below (these are all assuming you have ssh’d on to the EC2 instance). Update the packages on your instance [ec2-user ~]$ sudo yum update -y Install Docker [ec2-user ~]$ sudo yum install docker -y Start the Docker Service [ec2-user ~]$ sudo service … Read more