Duas opções que me vêm à mente:
yum info httpd
verifique a saída para ver se ela está instalada ou não, você recebe algo como:
[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.
ou faça
rpm -qf /etc/httpd
para ver se algum pacote acha que é responsável pelo diretório de configuração do httpd - no CentOS6, você obtém
[0 1001 12:12:46] ~ % rpm -qf /etc/httpd
httpd-2.2.15-47.el6.centos.x86_64
(e mais fácil por último, a convenção no RH / CentOS é que a configuração vive em /etc/httpd/
, então sua mera presença pode ser um indicador).