检查 Amazon Linux AMI 中是否安装了 Apache

检查 Amazon Linux AMI 中是否安装了 Apache

如何检查基于 RHEL 6 的 Amazon Linux AMI 中是否安装了 Apache?在 Ubuntu 中,我使用:

dpkg --get-selections | grep apache

但这在这种情况下不起作用。请注意,我需要能够判断 Apache 是否已安装,即使它不是服务。

答案1

我想到了两个选择:

yum info httpd

检查输出以查看它是否已安装,您会得到类似以下内容的信息:

[0 1003 12:18:33] ~ % yum info httpd
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: ftp.halifax.rwth-aachen.de
 * extras: ftp.rrzn.uni-hannover.de
 * remi: mirror5.layerjet.com
 * remi-php56: mirror5.layerjet.com
 * remi-safe: mirror5.layerjet.com
 * updates: ftp.halifax.rwth-aachen.de
Installed Packages
Name        : httpd
Arch        : x86_64
Version     : 2.2.15
Release     : 47.el6.centos
Size        : 2.9 M
Repo        : installed
From repo   : updates
Summary     : Apache HTTP Server
URL         : http://httpd.apache.org/
License     : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
            : web server.

或者做

rpm -qf /etc/httpd

查看是否有任何包认为它负责 httpd 的配置目录——在 CentOS6 上,你得到

[0 1001 12:12:46] ~ % rpm -qf /etc/httpd
httpd-2.2.15-47.el6.centos.x86_64

(最简单的最后一点,RH/CentOS 上的约定是配置位于 中/etc/httpd/,因此它的存在可能只是一个指标。)

答案2

最简单的方法是调用 httpd,例如通过检查版本:

httpd -V

相关内容