Skip to content

Instantly share code, notes, and snippets.

@aronwoost
Created July 25, 2011 19:46
Show Gist options
  • Star 87 You must be signed in to star a gist
  • Fork 36 You must be signed in to fork a gist
  • Save aronwoost/1105007 to your computer and use it in GitHub Desktop.
Save aronwoost/1105007 to your computer and use it in GitHub Desktop.
How to install LAMP on a EC2 Amazon AMI

Launch the instance and connect with ssh.

##Update the server

sudo yum update

##Install php and MySQL packages

sudo yum install https mod_ssl mysql mysql-server php php-mysql php-xml

##Install phpMyAdmin

Get the RPMforge repo (32-bit, for 64-bit use http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.i386.rpm)

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
sudo rpm -Uvh rpmforge-release-0.3.6-1.el5.rf.i386.rpm

Install

sudo yum install phpmyadmin

##Start MySQL service

cd /etc/rc.d/init.d/
sudo ./mysqld start
sudo /usr/bin/mysql_secure_installation //follow instructions

##Setup startup scripts for apache and MySQL

cd /etc/rc.d/rc3.d
sudo rm K15httpd
sudo rm K36mysqld
sudo ln -s ../init.d/mysqld S30mysql
sudo ln -s ../init.d/httpd S85httpd

##Setup phpMyAdmin

Allow access from external IP's

sudo chmod 0700 /etc/httpd/conf.d/phpmyadmin.conf
sudo nano /etc/httpd/conf.d/phpmyadmin.conf
#  Web application to manage MySQL
#  #
#  Order Deny,Allow
#  Deny from all
  Allow from 127.0.0.1
#
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

Set blowfish_secret to make it work with cookie auth

sudo chmod 0700 /usr/share/phpmyadmin/config.inc.php
sudo nano /usr/share/phpmyadmin/config.inc.php 
...
$cfg['blowfish_secret'] = 'put-a-magic-string-here'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
...
sudo chmod 0755 /usr/share/phpmyadmin/config.inc.php

##Make mod_rewrite (.htaccess) work in subdirectories

cd /etc/httpd/conf
sudo nano httpd.conf

Find <Directory "/var/www/html"> Replace AllowOverride none with AllowOverride all

(optional if apache is running already, restart it)

sudo service httpd restart

##Start apache

sudo /etc/rc.d/init.d/httpd start

##Sources

@kendantinio
Copy link

when i run sudo service httpd restart

[root@ip-address conf]# sudo service httpd restart
Stopping httpd: [FAILED]
Starting httpd: [Sun May 24 11:38:23.414527 2015] [alias:warn] [pid 3332] AH00671: The Alias directive in /etc/httpd/conf.d/phpmyadmin.conf at line 11 will probably never match because it overlaps an earlier Alias.
[Sun May 24 11:38:23.414611 2015] [alias:warn] [pid 3332] AH00671: The Alias directive in /etc/httpd/conf.d/phpmyadmin.conf at line 12 will probably never match because it overlaps an earlier Alias.
[ OK ]

is this ok? Stopping httpd: [FAILED]

when i access http://54.152.126.19/phpmyadmin
its says:
Forbidden

You don't have permission to access /phpmyadmin on this server.

@rbtmarshall
Copy link

This was a top result when searching for a way to set up phpMyAdmin on amazon EC2.

Thanks. but...

I guess this distro has not been updated in awhile
once I got it working after about 4 hours of looking for workarounds with errors, etc.. and reading through them to try and understand what the issue was, I finally got it working, buit its an old version, and doing sudo yum update shows no newer version from this repository.

"Version information: 4.0.10.10, latest stable version: 4.4.9"

Now I need to figure out how to upgrade, and not lose the settings, since it seems to be working. I just dont want to have an older version that may have vulnerabilities.

@atorresbr
Copy link

Por favor, este tutorial para instalar phpmyadmin não funciona mais com AMI Linux 2015

Please, this tutorial to install phpmyadmin no longer works with Linux AMI 2015

Here the updated tutorial:

1 - Enter in the folder
cd /var/www/html

2 - Download the updated phpMyAdmin
wget https://files.phpmyadmin.net/phpMyAdmin/4.4.13.1/phpMyAdmin-4.4.13.1-all-languages.tar.bz2

3 - Unzip
tar -jxf phpMyAdmin-4.4.13.1-all-languages.tar.bz2 -C /var/www/html

4- Rename the directory by typing:
mv phpMyAdmin-4.4.13.1-all-languages.tar.bz2 phpmyadmin

5 Make a config directory in the phpmyadmin main folder:
cd /var/www/html/phpmyadmin

mv config.sample.inc.php config.inc.php

sudo nano config.inc.php /* find the code below and past you key - ache o código abaixo e cole sua key */

/*

Exit and save.

Thats it.

http://jafty.com/blog/tag/install-phpmyadmin/

@azazqadir
Copy link

You could also use some managed PHP MySQL hosting platform that lets you host lamp stack on aws ec2 in one click. This will save you a lot of time that could have gone into setting up a server and then managing it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment