美文网首页
Ubuntu 中 Apache2 安装、配置、卸载

Ubuntu 中 Apache2 安装、配置、卸载

作者: 一川烟草i蓑衣 | 来源:发表于2019-07-05 20:30 被阅读0次

    一、软件包安装

    命令:

    sudo apt-get update

    sudo apt-get install apache2

    配置

    /etc/apache2/apache2.conf 是主要配置文件(这个文件的末尾可以看到,include了其它所有的配置文件)。

    /etc/apache2/ports.conf 始终包含在主配置文件中。它用于确定传入连接的侦听端口,默认为80,我们一般都会重新配置新的端口。

    其它配置文件在 /etc/apache2/sites-enabled,/etc/apache2/conf-enabled,/etc/apache2/mods-enabled 目录下。

    apache2的默认web目录:/var/www/html。(在/etc/apache2/sites-enabled/000-default.conf 里可以看到这个 DocumentRoot /var/www/html 配置)

    apache2 的默认用户是 www-data,定义在 /etc/apache2/envvars 文件中。

    设置默认主页的配置文件/etc/apache2/mods-enabled/dir.conf

    修改端口,这里我修改为8099

    修改它的监听端口:

    sudo vim /etc/apache2/ports.conf

    1

    修改它的主机端口:

    2

    3)apache2 的几个简单命令:启动、停止、重启、状态

    sudo /etc/init.d/apache2 [ start | stop | restart | status ]

    service apache2 [ start | stop | restart | status ]

    (4)重启apache2 并查看状态

    sudo /etc/init.d/apache2 start

    sudo /etc/init.d/apache2 status

    卸载

    sudo apt-get –purge remove apache2

    sudo apt-get –purge remove apache2-common

    sudo apt-get –purge remove apache2-utils

    sudo apt-get autoremove apache2

    –purge 是不保留配置文件的意思

    删掉/etc/apache2文件夹:

    sudo rm -rf /etc/apache2

    删掉/var/www文件夹:

    sudo rm -rf /var/www

    删掉/etc/init.d/apache2文件:

    sudo rm -rf /etc/init.d/apache2

    linux命令:

    rm -f:删除文件

    相关文章

      网友评论

          本文标题:Ubuntu 中 Apache2 安装、配置、卸载

          本文链接:https://www.haomeiwen.com/subject/pcjyhctx.html