GNU/Linux >> Tutoriels Linux >  >> Linux

Comment puis-je déterminer si Apache est installé sur un système ?

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.


Linux
  1. Comment installer apache bench sur RHEL 8

  2. Comment installer Apache sur AlmaLinux

  3. Comment installer Apache sur Ubuntu ?

  4. Comment pouvez-vous déterminer les versions installées des bibliothèques glibc ?

  5. Comment installer Apache Cassandra sur Ubuntu 20.04

Comment installer Apache sur Fedora 22

Comment installer Apache sur Ubuntu 20.04

Comment installer Apache sur Debian 8.2

Comment installer Cockpit sur Debian 10

Comment installer Apache Tomcat sur Ubuntu 18.04

Comment installer Nginx sur CentOS 8