■ NATS 서버를 윈도우즈 서비스로 실행하는 방법을 보여준다.
▶ 윈도우즈 서비스 설치하기
1 2 3 |
sc.exe create gnatsd1 binPath= "d:\NATS\Server01\Bin\gnatsd.exe --config d:\NATS\Server01\Config\server.conf" |
▶ 윈도우즈 서비스 시작하기
1 2 3 |
sc.exe start gnatsd1 |
▶ 윈도우즈 서비스 중단하기
1 2 3 |
sc.exe stop gnatsd1 |
▶ 윈도우즈 서비스 제거하기
1 2 3 |
sc.exe delete gnatsd1 |