Step 1 - 新建VPC, 2个Public subnets
lab009
192.168.0.0/16
public subset 1
pub1
192.168.10.0/24
public subset 2
pub2
192.168.20.0/24
Internet Gateway
ig-lab009
Step 2 - 新建一个EC2(AMAZON LINUX)
EC2
lab009-ec2
启动时的脚本,安装PHP,HTTPD
创建一个安全组,允许从任何地方通过 SSH 和 HTTP 访问EC2实例
#!/bin/bash
yum update -y
sudo yum install -y php php-cli php-fpm php-gd php-xml php-mbstring php-mysqlnd
yum install httpd -y
cd /var/www/html
wget
https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz
systemctl enable httpd
systemctl start httpd
Step 3 - 启动RDS实例
Database creation method: Standard Create
Engine option: MySQL
Templates: Free tier
DB instance identifier: lab009
Master password: iloveAWS
DB instance size: Standard classes
Storage: default options are fine for this lab
Connectivity: Connect to an EC2 compute resource
RDS安全组名:lab009-rds-sg
Step 4 - Configure phpMyAdmin
编辑 config.inc.php 并搜索对 localhost 的引用。将其替换为 RDS 实例节点
cd /var/www/html
tar xvf phpMyAdmin-latest-all-languages.tar.gz
rm -rf phpMyAdmin-latest-all-languages.tar.gz
ln -s phpMyAdmin-5.2.1-all-languages phpMyAdmin
cd phpMyAdmin
cp config.sample.inc.php config.inc.php
Step 5 - Test and Validation
打开浏览器并使用 EC2 实例的公共 IP 地址,通过 phpMyAdmin 连接到数据库。
http://18.141.196.232/phpMyAdmin