설치 및 업그레이드 > 설치 및 구성 안내서 > 고급 구성 > 다른 옵션으로 HTTP Server 및 Embedded Servlet Engine 구성 > HTTP Server를 Windows 서비스로 실행
  
HTTP Server를 Windows 서비스로 실행
Embedded Servlet Engine 또는 HTTP Server를 Windows 서비스로 실행하도록 설정하려면 다음 지침을 완료합니다.
HTTP Server를 Windows 서비스로 실행
HTTP Server를 Windows 서비스로 구성하는 방법은 HTTP Server Ant 명령을 사용하는 방법과 Ant 명령을 사용하지 않는 방법 두 가지가 있습니다.
Without Ant
다음 명령을 Apache/bin 디렉토리에서 실행합니다.
apache -k install -n <ServiceName>
여기서 <ServiceName>은 이 서비스를 참조하기 위한 고유 이름입니다.
HTTP Server Ant가 설치되어 있는 경우, Ant 명령으로 구현할 수 있습니다.
With Ant
HTTP Server 루트 디렉토리에서 Ant 명령을 실행합니다.
ant -f config.xml installService -DserviceName=<ServiceName>
여기서 <ServiceName>은 이 서비스를 참조하기 위한 고유 이름입니다.
HTTP Server Windows 서비스 제거
HTTP Server Windows 서비스를 제거하는 방법은 HTTP Server Ant 명령을 사용하는 방법과 Ant 명령을 사용하지 않는 방법 두 가지가 있습니다.
Uninstall without Ant
<Apache>/bin 디렉토리에서 다음 명령을 실행합니다.
apache -k uninstall -n <ServiceName>
여기서 <ServiceName>은 HTTP Server Windows 서비스를 작성할 때 지정한 이름입니다.
Uninstall with Ant
<Apache> 디렉토리에서 다음 명령을 실행합니다.
ant -f config.xml uninstallService -DserviceName <ServiceName>
여기서 <ServiceName>은 HTTP Server Windows 서비스를 작성할 때 지정한 이름입니다.