
아파치 명령어는 systemctl, httpd 또는 apachectl 을 사용합니다.
3가지 명령어중 쉬운 명령어 하나를 사용하시면 됩니다.
1. Apache 버전 확인
# httpd -v

2. Apache 상태 확인
# systemctl status httpd
# service httpd status

3. Apache 시작
# systemctl start httpd
# service httpd start
# apachectl start
4. Apache 중지
# systemctl stop httpd
# service httpd stop
# apachectl stop
5. Apache 재시작
# systemctl restart httpd
# service httpd restart
# apachectl restart
출처: https://yjshin.tistory.com/entry/CentOS-Apache-아파치-실행-상태-확인 [YJUN IT BLOG]