如何在Ubuntu和Debian中安装和删除Apache web服务器
时间:2019-08-20 17:58:15 来源:igfitidea点击:
在Ubuntu和Debian中安装apache web服务器很容易。
如果我们使用过任何基于redhat的操作系统,我们可能会发现apache web服务器包的名称是不同的。
在基于Red Hat的操作系统中,包名为 httpd。
在基于Debian的操作系统中,比如Ubuntu,linuxmint等,我们可以使用下面的命令来安装apache web服务器。
sudo apt-get install apache2
Debian操作系统中,与Apache web服务器相关的重要信息
Apache用户:www-data
配置目录:/etc/apache2
默认配置文件/etc/apache2/sites-enabled/000-default
默认数据目录或者文件目录/var/www
日志目录路径/var/log/apache2
要启动apache Web服务器,使用的命令:
/etc/init.d/apache2 start 或者 service apache2 start
Ubuntu中停止apache Web服务器
/etc/init.d/apache2 stop 或者 service apache2 stop
Ubuntu中重启apache Web服务器
/etc/init.d/apache2 restart 或者 service apache2 restart
Ubuntu中检查apache Web服务器的状态
/etc/init.d/apache2 status 或者 service apache2 status
Ubuntu中重新加载apache Web服务器配置
/etc/init.d/apache2 reload 或者 service apache2 reload
对于Apache服务,有很多用法,我们可以使用命令/etc/init.d/apache2 --help
来获取信息:
/etc/init.d/apache2 –help * Usage: /etc/init.d/apache2 {start|stop|graceful-stop|restart|reload|force-reload|start-htcacheclean|stop-htcacheclean|status}
删除Debian和Ubuntu中的apache web服务器
删除Debian的操作系统中apache web服务器,使用下面的命令。
sudo apt-get remove apache2
如果要完全移除包,使用下面的命令
sudo apt-get --purge apache2