如何在 EC2 上启动 Apache
我是 EC2 的绝对新手。我的目标是在 EC2 上运行 php-mysql-网站。
我刚刚基于 这个ami
好像apache没有运行?如何启动阿帕奇?有关于如何启动 EC2 作为 Web 服务器的一般教程吗?
谢谢!
I'm an absolute newbie to EC2. My goal is to run a php-mysql-website on EC2.
I've just setup a new instance based on this ami
It seems that apache isn't running? How do I start apache? Is there a general tutorial on how to start EC2 as a web server?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这实际上取决于您选择的发行版。不过,通常情况下,您可以使用 init 脚本启动 Apache。例如,在 Ubuntu 服务器上,它将是:
在 CentOS 或 Redhat 上,它可能是:
It really depends on the distribution you have chosen. Typically, though, you can start Apache using the init scripts. For example, on Ubuntu server it will be:
On CentOS or Redhat it might be:
对于 Suse 11,请尝试
如果尚未安装,您可以使用
此服务器安装 LAMP 教程,请检查
http://www.susegeek.com/internet-browser/install-configure-lamp-apachemysqlphp-in-opensuse-110/
For Suse 11, try
If it is not installed, you can install with
for a tutorial on LAMP with this server, check
http://www.susegeek.com/internet-browser/install-configure-lamp-apachemysqlphp-in-opensuse-110/
那么,您需要设置一个 LAMP 服务器。要使用一个命令安装 LAMP 服务器,请尝试以下操作:
请注意,最后一个
^
不是拼写错误,它包含在命令中。请参阅此页面了解更多信息。Well, you need to set up a LAMP server. To install LAMP server with one command, try the following:
Note that the last
^
is not a typo, it's included in the command. See this page for more information.sudo apt-get 更新
sudotaskel
并享受。
sudo apt-get update
sudo tasksel
and enjoy.
如果您正在运行 bitnami 的 Drupal Stack,您可以
1) cd /opt/bitnami
2)须藤bash
(输入密码)
3) sh ctlscript.sh restart
这将重新启动 LAMP 堆栈
If you are running bitnami's Drupal Stack, you can
1) cd /opt/bitnami
2) sudo bash
(enter password)
3) sh ctlscript.sh restart
this will restart the LAMP stack