web-dev-qa-db-ja.com

ApacheがAmazon Linux AMIにインストールされているかどうかを確認する

RHEL6に基づくAmazonLinux AMIにApacheがインストールされているかどうかを確認するにはどうすればよいですか? Ubuntuでは、次を使用します。

dpkg --get-selections | grep Apache

しかし、この場合は機能しません。 Apacheがサービスでなくても、インストールされているかどうかを確認できる必要があることに注意してください。

3
Rick Helston

私の頭に浮かぶ2つのオプション:

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/なので、単なる存在は指標のビットかもしれません。

3
Ulrich Schwarz

最も簡単なアプローチは、たとえばバージョンを確認してhttpdを呼び出すことです。

httpd -V
1
jeffmcneill