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


33

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

미리 감사드립니다!

답변:


69

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


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.


1
user149591이 답변으로 표시하십시오.
Nick DeMayo

@NickDeMayo 그가 8 월 19 일 이후로 돌아 오지 않은 방식으로 보면 그럴 것 같지 않습니다.
HopelessN00b

@ HopelessN00b 모드는 사용자를 대신하여 응답 된 것으로 표시 할 수 없습니까? :)
MichelZ

1
다른 상황 (Windows 다시 시작 등)에서이 시간 초과를 제어하는 ​​방법에 대한 자세한 내용은 다음 SO 답변을 참조하십시오. stackoverflow.com/a/29928342/434413
Chris Kline

1
@Dominique 2-32의 제곱에서 마이너스 1을 빼십시오. 프로세스가 시작하는 데 오랜 시간이 걸리면 시작하는 데 문제가있는 것처럼 들리며 Windows 서비스 시간 초과가 아프지 않을 수도 있습니다.
HopelessN00b
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.