PHP Velho Oeste 2024

Amazon EC2

PHP installs on the » EC2 cloud platform.

See also the » AWS SDK for PHP.

add a note add a note

User Contributed Notes 4 notes

up
1
vishalsabnis82 at rediffmail dot com
3 years ago
In the console.aws.amazon.com, while launching the EC2 instance, we can specify user data to configure an instance or run a configuration script(installing PHP, Mysql, Apache, etc...) during launch in the UserData section in the Step 3: Configure Instance Details.
up
-13
tolgambaev at hotmail dot com
12 years ago
The easy way to deploy PHP environment into Amazon EC2 is to use AWS Elastic Beanstalk service. It automatically runs all the infrastructure including EC2 instance with PHP installed. See http://aws.amazon.com/elasticbeanstalk/.

yum installation is also available on EC2.
up
-21
jstillings1 at nc dot rr dot com
7 years ago
if you installed Django via bitnami using AWS EC2
use this line at as root
apt-get install php5
up
-23
krp dot sindhu at gmail dot com
10 years ago
The amazon EC2 Platform comes with the basic PHP platform you just have to call your modules which you want to install with the amazon platform. you can simply call
<b>sudo yum install php-"your_modules"<b/> and then restart your server by using <b>sudo restart service httpd</b>
now you are able to use php on your amazon cloud environment.
To Top