Amazon Linux AMI에 Apache가 설치되어 있는지 확인

Amazon Linux AMI에 Apache가 설치되어 있는지 확인

RHEL 6 기반 Amazon Linux AMI에 Apache가 설치되어 있는지 확인하는 방법은 무엇입니까? 우분투에서는 다음을 사용합니다.

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

관련 정보