CentOS7.6中Apache服务常见操作——启动关闭查看状态等

1. 启动、终止、重启

systemctl start httpd.service #启动

systemctl stop httpd.service #停止

systemctl restart httpd.service #重启

2. 设置开机启动/关闭

systemctl enable httpd.service            #开机启动

systemctl disable httpd.service           #开机不启动

systemctl list-unit-files | grep httpd     # 检查Apache是否已经安装了开机自动启动

显示以下内容即已成功设置:

3. 检查httpd状态

systemctl status httpd.service  #检查状态

参考文章:CentOS7.6中安装Apache及Apache常见操作和配置说明

猜你喜欢

转载自blog.csdn.net/qq_39564555/article/details/88413634