Programming/Apache

    [Apache] 아파치 기본 명령어

    아파치(Apache) 기본 명령어 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 # = 루트 이용자 (sudo su) [linux] 아파치(apache) 서비스 활성 여부 리눅..