Je recommanderais
dpkg --get-selections | grep apache
Il répertorie tous les packages installés qui contiennent "apache" dans leur nom. Par exemple :
apache2 install
apache2-doc install
apache2-mpm-prefork install
apache2-utils install
apache2.2-bin install
apache2.2-common install
libapache2-mod-php5 install
libapache2-svn install
Il indique que le package apache2
est installé sur le système.
Une autre approche, pour trouver tout exécuter le démon HTTP sur le port par défaut serait :
sudo lsof -nPi | grep ":80 (LISTEN)"
Qui répertorie quelque chose comme :
apache2 1026 root 4u IPv6 3739 0t0 TCP *:80 (LISTEN)
apache2 3966 www-data 4u IPv6 3739 0t0 TCP *:80 (LISTEN)
apache2 4014 www-data 4u IPv6 3739 0t0 TCP *:80 (LISTEN)
apache2 4015 www-data 4u IPv6 3739 0t0 TCP *:80 (LISTEN)
apache2 4016 www-data 4u IPv6 3739 0t0 TCP *:80 (LISTEN)
Essayez le which
commande :
# which apache2
D'après mon expérience, le binaire Apache est situé dans /usr/sbin
sur la plupart des installations.
Pour vérifier si apache est en cours d'exécution ou non (le statut), tapez :
sudo service apache2 status
sur la ligne de commande.