Apache 服务器(重新)安装问题

Apache 服务器(重新)安装问题

我是 Ubuntu 新手,我按照以下命令删除了所有 apache 文件

sudo chown user /etc/init.d/apache2
sudo chmod 755 /etc/init.d/apache2
sudo rm /etc/init.d/apache2 

我知道删除 apache 的方法不对,现在我想再次安装 apache

编辑 尝试重新安装 apache

sudo apt-get install --reinstall apache2

工作正常,但是当我输入命令时

sudo service apache2 start

响应为,

apache2: unrecognized service

答案1

最后我找到了解决方案

sudo service apache2 stop
sudo apt-get remove --purge $APACHE_PKGS
sudo apt-get install --reinstall apache2

答案2

打开终端并输入

sudo apt-get install --reinstall apache2

相关内容