如何配置 PHP +亚马逊 EC2 上的 Apache?
我当然对此很陌生。
我正在尝试在新的 Amazon EC2 AMI 上配置 PHP 和 Apache。这是一个非常轻量级的服务器,因此微型实例符合要求。
我只需要 阿帕奇 PHP
我运行
sudo yum install apache2
sudo yum install php
我将 info.php
复制到 /var/www/html
info.php 仅
<? phpinfo(); ?>
在我浏览到 http://www.example.com/info.php Apache 提供 info.php 但不渲染它。我看起来 apache 没有配置为处理 php 文件。我缺少什么步骤?
谢谢,
I am new to this of course.
I am trying to configure PHP and Apache on a new Amazon EC2 AMI. This is a very lightweight server so the Micro instance fits the bill.
I just need
Apache
PHP
I ran
sudo yum install apache2
sudo yum install php
I copied info.php
to /var/www/html
info.php only contains
<? phpinfo(); ?>
when i browse to http://www.example.com/info.php Apache serves info.php but it does not render it. I looks like apache is not configured to handle php files. What step or steps am I missing?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先尝试使用完整标签,这样你的脚本就可以了。
而不是
如果运气不好,请尝试:
然后
service httpd restart
或者尝试使用预构建的 AMI 之一。社区 AMI 有多种 LAMP 配置。
First try using full tags, so your script would be.
instead of
<? ?>
If no luck, try:
then
service httpd restart
Alternatively try using one of the pre-built AMI's. Community AMI's have several LAMP configurations.
对于那些从 Google 到达这里的人,请尝试以下操作:
如果您需要开发版本:
如果您需要 Apache 2.4 和 PHP 5.4:
来自:
安装 Apache、PHP 和Amazon Linux 上的 MySQL
在 Amazon Linux 上安装 Apache 2.4、PHP 5.4 和 MySQL
Just for those who get here from Google, try this:
If you need development versions:
If you need Apache 2.4 and PHP 5.4:
From:
Install Apache, PHP, and MySQL on Amazon Linux
Install Apache 2.4, PHP 5.4, and MySQL on Amazon Linux
只需 tar 你的 info.php 即可;
上传到另一个公共目录;
使用 wget 将文件获取到 ec2;
解压文件。
就是这样 ;)
Just tar your info.php;
Upload it to another public directory;
Get the file to ec2 with wget;
Untar the file.
That's it ;)