如何在 EC2 上启动 Apache

发布于 2024-09-29 18:13:43 字数 289 浏览 2 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

半暖夏伤 2024-10-06 18:13:43

这实际上取决于您选择的发行版。不过,通常情况下,您可以使用 init 脚本启动 Apache。例如,在 Ubuntu 服务器上,它将是:

sudo /etc/init.d/apache2 start

在 CentOS 或 Redhat 上,它可能是:

sudo /etc/init.d/httpd start

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:

sudo /etc/init.d/apache2 start

On CentOS or Redhat it might be:

sudo /etc/init.d/httpd start
2024-10-06 18:13:43

对于 Suse 11,请尝试

 rcapache2 status
 rcapache2 start

如果尚未安装,您可以使用

yast2 --install apache2

此服务器安装 LAMP 教程,请检查

http://www.susegeek.com/internet-browser/install-configure-lamp-apachemysqlphp-in-opensuse-110/

For Suse 11, try

 rcapache2 status
 rcapache2 start

If it is not installed, you can install with

yast2 --install apache2

for a tutorial on LAMP with this server, check

http://www.susegeek.com/internet-browser/install-configure-lamp-apachemysqlphp-in-opensuse-110/

忘羡 2024-10-06 18:13:43

那么,您需要设置一个 LAMP 服务器。要使用一个命令安装 LAMP 服务器,请尝试以下操作:

sudo apt-get install lamp-server^ 

请注意,最后一个 ^ 不是拼写错误,它包含在命令中。请参阅页面了解更多信息。

Well, you need to set up a LAMP server. To install LAMP server with one command, try the following:

sudo apt-get install lamp-server^ 

Note that the last ^ is not a typo, it's included in the command. See this page for more information.

别挽留 2024-10-06 18:13:43

sudo apt-get 更新
sudotaskel

并享受。

sudo apt-get update
sudo tasksel

and enjoy.

掌心的温暖 2024-10-06 18:13:43

如果您正在运行 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文