[server] Windows 서비스 시작 시간 초과를 늘리는 방법

소프트웨어를 매우 느린 서버로 마이그레이션했습니다. 일부 소프트웨어 서비스는 시스템 시간 초과로 인해 시작을 거부합니다. 기본 30 초 (?)에서 몇 분으로 시간 초과를 늘리려면 어떻게합니까?

미리 감사드립니다!



답변

레지스트리에서 시간 초과 값을 수정할 수 있습니다 .


1. Click Start, click Run, type regedit, and then click OK.
2. Locate and then click the following registry subkey:
 - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
3. In the right pane, locate the ServicesPipeTimeout entry.

**Note**: If the ServicesPipeTimeout entry does not exist, you must create it. To do this, follow these steps:

 - On the Edit menu, point to New, and then click DWORD Value.
 - Type ServicesPipeTimeout, and then press ENTER.
4. Right-click ServicesPipeTimeout, and then click Modify.
5. Click Decimal, type 60000, and then click OK.
 - This value represents the time in milliseconds before a service times out.
6. Restart the computer.


답변