安装之前首先要检测是否安装过
apt list --installed | grep tool
tool:要检测的名称,如mysql、apache 、ngnix 等
安装 apache
sudo apt install apache2
安装apache 默认是开启的
可以通过浏览器 检测一下
service apache stop # apache 停止服务
Linux中 服务的 开启 、关闭、重启
1、 service 服务名 stop
2、 service 服务名 start
3、 service 服务名 restart
或者
1、 systemctl stop 服务名 systemctl stop apache2
2、 systemctl restart 服务名 systemctl restart apache2 systemctl reload apache
3、 systemctl start 服务名 systemctl start apache2
4 systemctl status apache2
/var/www 放置网页的目录
/var/log/apache2/
/etc/apache2 配置文件所在目录
查看Ubuntu 安装的apache 版本
dpkg -l |grep apache2