早些时候我已经安装了apache而没有问题。但在格式化我的笔记本电脑后,我遇到了这个问题。
根据错误消息,我搜索解决方案代码并浏览这些代码。但它没有用。
答案 0 :(得分:1)
sudo apt-get install apache2 -y
答案 1 :(得分:0)
通过执行以下步骤,您可以轻松地将Apache安装到您的Ubuntu 16.04中。
答案 2 :(得分:0)
x
sudo apt-get install libpcre3 libpcre3-dev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
wget http://mirrors.fibergrid.in/apache//httpd/httpd-2.4.37.tar.gz
tar -xvzf httpd-2.4.37.tar.gz
cd httpd-2.4.37
./configure --prefix=/usr/local/apache
make
Apache将以给定的前缀安装,即 / usr / local / apache /
答案 3 :(得分:0)
在Ubuntu中安装Apache
sudo apt-get update
sudo apt-get install apache2
sudo ufw app list
sudo ufw allow 'Apache Full'
sudo ufw status // Status will be inactive.
sudo systemctl status apache2 // Apache server will be Active.
检查Apache服务器 您可以通过IP检查apache服务器是否正常工作。 在浏览器中输入
您将找到默认页面。
管理Apache进程
sudo systemctl stop apache2 // Stop Apache Server
sudo systemctl start apache2 // Start Apache Server
sudo systemctl restart apache2 // Restart Apache Server
sudo systemctl reload apache2 // Reload Apache Server
sudo systemctl disable apache2 // Disable Auto Start Server
sudo systemctl enable apache2 // Enable Auto Start Server
答案 4 :(得分:0)
sudo vim /etc/apache2/apache2.conf
选项索引FollowSymLinks 全部允许覆盖(从无更改为全部) 要求全部授予(更改要求全部授予)
AccessFileName .htaccess
要求全部授予(全部都不更改)
完成.. 检查您的IP(本地主机) http://server_domain_or_IP