25

我想确保 apache2 服务已停止。

1. I need to verify if apache2 is installed or not.

当我输入:

sudo /etc/init.d/apache2 stop

我有:

sudo: /etc/init.d/apache2: command not found

这是否意味着没有安装apache2?还是安装在其他地方?

2. check apache2 process:

当我输入:

ps a | grep apache2

我有:

10448 pts/4    S+     0:00 grep --color=auto apache2

这是否意味着apache2正在运行?

3. http://localhost test

我有:

Google Chrome could not connect to localhost

如何验证 Apache2 是否已停止?

4

2 回答 2

72

在命令行类型中service apache2 status,然后按回车键。结果应该说:

Apache2 正在运行 (pid xxxx)

于 2013-04-22T20:27:54.767 回答
4

您还可以键入“top”并查看正在运行的进程列表。

于 2013-04-22T20:31:47.940 回答