HTTPD Service Centos 7 dan Centos 8

# start httpd service
sudo systemctl start httpd.service
# stop httpd service
sudo systemctl stop httpd.service
# check status httpd service
sudo systemctl status httpd.service
# restart httpd service
sudo systemctl restart httpd.service
Naveed Shahzad