Programming/Apache, PHP
Apache 웹서버 Windows 서비스 등록
파란크리스마스
2011. 11. 20. 16:21
728x90
출처
서비스 등록
httpd -k install -n "Apache2.2" -f "C:\server\Apache2.2\conf\httpd.conf"
서비스 제거
httpd -k uninstall -n "Apache2.2"
환경파일(httpd.conf) syntax 확인
C:\server\Apache2.2\bin>httpd -n "Apache2.2" -t httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.123.104 for ServerName Syntax OK
서비스 실행
httpd -n "Apache2.2" -k start 또는 net start "Apache2.2"
서비스 종료
httpd -n "Apache2.2" -k shutdown 또는 net stop "Apache2.2"
728x90