web-dev-qa-db-fra.com

apache2 configtest a échoué avec la sortie "Aucun MPM chargé".

root@tasnim:/home/tara# service Apache2 restart
 * Restarting web server Apache2                                         [fail] 
 * The Apache2 configtest failed.

La sortie du test de configuration était:

AH00534: Apache2: Configuration error: No MPM loaded.
Action 'configtest' failed.

En utilisant

Sudo a2enmod mpm_prefork
service Apache2 restart

J'ai eu:

root@tasnim:/home/tara# service Apache2 restart
 * Restarting web server Apache2                                  [fail] 
 * The Apache2 configtest failed.

La sortie du test de configuration était:

AH00526: Syntax error on line 156 of /etc/Apache2/Apache2.conf:
Invalid command 'Require', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.

Ensuite, j'ouvre le fichier /etc/Apache2/Apache2.conf et je l'obtiens:

//access here, or in any related virtual Host.
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Require all denied //this is line 156
</Directory>

En utilisant

 apt-cache policy Apache2

j'ai eu:

root@tasnim:/home/tara# apt-cache policy Apache2
Apache2:
Installed: 2.4.7-1ubuntu4.4
Candidate: 2.4.7-1ubuntu4.4
Version table:
*** 2.4.7-1ubuntu4.4 0
    500 http://archive.ubuntu.com/ubuntu/ trusty-updates/main AMD64 Packages
    500 http://archive.ubuntu.com/ubuntu/ trusty-security/main AMD64 Packages
    100 /var/lib/dpkg/status
 2.4.7-1ubuntu4 0
    500 http://archive.ubuntu.com/ubuntu/ trusty/main AMD64 Packages

En utilisant

 a2query -v

j'ai eu:

root@tasnim:/home/tara# a2query -v
2.4.7
3
Tasnim Tara

J'ai eu le même problème.

Starting web server Apache2 
* The Apache2 configtest failed. 
Output of config test was: Apache2: 
Syntax error on line 140 of /etc/Apache2/Apache2.conf: 
Syntax error on line 2 of /etc/Apache2/mods-enabled/mpm_itk.load: 
Cannot load /usr/lib/Apache2/modules/mpm_itk.so into server: 
/usr/lib/Apache2/modules/mpm_itk.so: cannot open shared object file:
No such file or directory Action 'configtest' failed. 
The Apache error log may have more information.

J'essaie ceci: apt-get install libapache2-mpm-itk donc je résous mon problème, réinstalle les fichiers manquants pour que je puisse récupérer.

Merci j'espère que vous pouvez trouver une solution.

4
ashish bhatt
Sudo a2enmod auth_basic authn_core authn_file authz_core authz_Host authz_user access_compat

activer les modules pour démarrer le serveur

Tiré de cette réponse par A.B. à cette question sous Unix et Linux SE

0
suraj kakade