Skip to content

Commit eb366c8

Browse files
committed
readme
1 parent 9faec65 commit eb366c8

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,53 @@ If you don't have pip, follow the instructions [here](http://docs.aws.amazon.com
4545
4. Extract the configuration files over the WordPress installation
4646

4747
~/wordpress-beanstalk$ unzip ~/eb-php-wordpress-v1.0.zip
48+
creating: .ebextensions/
49+
inflating: .ebextensions/dev.config
50+
inflating: .ebextensions/efs-create.config
51+
inflating: .ebextensions/efs-mount.config
52+
inflating: .ebextensions/loadbalancer-sg.config
53+
inflating: .ebextensions/wordpress.config
54+
inflating: LICENSE
55+
inflating: README.md
56+
inflating: wp-config.php
4857

4958
## Create an Elastic Beanstalk environment
5059

5160
1. Configure a local EB CLI repository with the PHP platform. Choose a [supported region](http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region) that is close to you.
5261

53-
~/wordpress-beanstalk$ eb init --platform php7.0 --region us-west-2
62+
~/wordpress-beanstalk$ eb init --platform php7.0 --region us-west-
63+
Application wordpress-beanstalk has been created.
5464

5565
2. Configure SSH. Create a key that Elastic Beanstalk will assign to the EC2 instances in your environment to allow you to connect to them later. You can also choose an existing key pair if you have the private key locally.
5666

57-
~/wordpress-beanstalk$ eb ssh --setup
67+
~/wordpress-beanstalk$ eb init
68+
Do you want to set up SSH for your instances?
69+
(y/n): y
70+
71+
Select a keypair.
72+
1) [ Create new KeyPair ]
73+
(default is 1): 1
74+
75+
Type a keypair name.
76+
(Default is aws-eb): beanstalk-wordpress
5877

5978
3. Create an Elastic Beanstalk environment with a MySQL database.
6079

6180
~/wordpress-beanstalk$ eb create wordpress-beanstalk --sample --database
81+
Enter an RDS DB username (default is "ebroot"):
82+
Enter an RDS DB master password:
83+
Retype password to confirm:
84+
Environment details for: wordpress-beanstalk
85+
Application name: wordpress-beanstalk
86+
Region: us-west-2
87+
Deployed Version: Sample Application
88+
Environment ID: e-nrx24yzgmw
89+
Platform: 64bit Amazon Linux 2016.09 v2.2.0 running PHP 7.0
90+
Tier: WebServer-Standard
91+
CNAME: UNKNOWN
92+
Updated: 2016-11-01 12:20:27.730000+00:00
93+
Printing Status:
94+
INFO: createEnvironment is starting.
6295

6396
## Networking configuration
6497
Modify the configuration files in the .ebextensions folder with the IDs of your [default VPC and subnets](https://console.aws.amazon.com/vpc/home#subnets:filter=default), and [your public IP address](https://www.google.com/search?q=what+is+my+ip).

0 commit comments

Comments
 (0)