Ошибка при установке apache2 E: Подпроцесс / usr / bin / dpkg вернул код ошибки (1)

Я переустановил apache2, потому что все мои сайты были кэшированы, и теперь, когда я пытаюсь установить его, я получаю:

root@vps139242:~# sudo apt-get install apache2
Reading package lists... Done
Building dependency tree
Reading state information... Done
apache2 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 48 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up apache2 (2.4.7-1ubuntu4.18) ...
ERROR: Config file dir.conf not properly enabled: /etc/apache2/mods-enabled/dir.conf is a real file, not touching it
dpkg: error processing package apache2 (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 apache2
E: Sub-process /usr/bin/dpkg returned an error code (1)

Я пытался очистить его и автоматически удалить, но все равно ничего не знаю, что делать любую помощь приветствуется.

1
задан 24 November 2017 в 01:28

1 ответ

Если вы действительно хотите сбросить конфигурацию apache2, выполните следующие действия.

# Rename your Apache2 configuration folder (just in case of).
sudo mv /etc/apache2 /etc/apache2.old

# Look up for all Apache2 package installed
dpkg -l | grep apache2

# Remove all Apache packages, usualy the following
apt remove --purge apache2 apache2-data apache2-bin

# Finally reinstall your Apache2 server
apt install apache2
1
ответ дан 24 November 2017 в 01:28

Другие вопросы по тегам:

Похожие вопросы: