如何在ubuntu-16.04中安装apache?

时间:2017-12-01 06:58:46

标签: ubuntu-16.04

早些时候我已经安装了apache而没有问题。但在格式化我的笔记本电脑后,我遇到了这个问题。

根据错误消息,我搜索解决方案代码并浏览这些代码。但它没有用。

5 个答案:

答案 0 :(得分:1)

sudo apt-get install apache2 -y

答案 1 :(得分:0)

通过执行以下步骤,您可以轻松地将Apache安装到您的Ubuntu 16.04中。

  1. 打开终端(alt + ctrl + T)
  2. $ sudo apt-get update
  3. $ sudo apt-get install apache2

答案 2 :(得分:0)

  1. x
  2. sudo apt-get install libpcre3 libpcre3-dev libapr1 libapr1-dev libaprutil1 libaprutil1-dev
  3. wget http://mirrors.fibergrid.in/apache//httpd/httpd-2.4.37.tar.gz
  4. tar -xvzf httpd-2.4.37.tar.gz
  5. cd httpd-2.4.37
  6. ./configure --prefix=/usr/local/apache
  7. 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服务器是否正常工作。 在浏览器中输入

http://server_domain_or_IP

您将找到默认页面。

管理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)

  1. sudo apt-get更新
  2. sudo apt-get install apache2
  3. sudo vim /etc/apache2/apache2.conf

    选项索引FollowSymLinks 全部允许覆盖(从无更改为全部) 要求全部授予(更改要求全部授予)

    AccessFileName .htaccess

    要求全部授予(全部都不更改)

  4. sudo chmod -R 777 / var / www / html /
  5. sudo a2enmod重写
  6. sudo systemctl重新启动apache2

完成.. 检查您的IP(本地主机) http://server_domain_or_IP