Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)

The processing of Group Policy failed. Windows attempted to read the file \\[도메인]\sysvol\[도메인]\Policies\{...GUID...}\gpt.ini

다음과 같은 이벤트 로그가 쌓였습니다.

Log Name:      System
Source:        Microsoft-Windows-GroupPolicy
Date:          2014-10-09 오후 1:44:29
Event ID:      1058
Task Category: None
Level:         Error
Keywords:      
User:          TESTAD\TestUser
Computer:      testdc.testad.com
Description:
The processing of Group Policy failed. Windows attempted to read the file \\testad.com\sysvol\testad.com\Policies\{31B2F340-016D-11F2-945F-00C04FB984F9}\gpt.ini from a domain controller and was not successful. Group Policy settings may not be applied until this event is resolved. This issue may be transient and could be caused by one or more of the following: 
a) Name Resolution/Network Connectivity to the current domain controller. 
b) File Replication Service Latency (a file created on another domain controller has not replicated to the current domain controller). 
c) The Distributed File System (DFS) client has been disabled.

로그에서 보는 바와 같이 실제로 "\\testad.com\sysvol\testad.com\Policies\{31B2F340-016D-11F2-945F-00C04FB984F9}\gpt.ini" 파일이 없었는데요. 여기서 "\\testad.com\sysvol\testad.com" 경로는 JUNCTION 연결이 된 것으로 원본 물리 경로는 "C:\Windows\SYSVOL\domain"입니다. 따라서, 전체 경로는 다음과 같습니다.

C:\Windows\SYSVOL\domain\Policies\{31B2F340-016D-11F2-945F-00C04FB984F9}

다행히 보조 Active Directory 서버에 해당 경로의 파일들이 있는 것을 확인했고, 그 서버의 "C:\Windows\SYSVOL\domain\Policies" 폴더 하위에 있는 모든 GUID 유형의 폴더를 문제가 발생한 주 Active Directory 서버의 "C:\Windows\SYSVOL\domain\Policies" 폴더에 복사 후 재부팅하는 것으로 해결했습니다.

만약 백업 본이 없는 경우에는 기존 설정한 Group Policy를 포기하고 새롭게 정책을 만들어서 적용하면 해당 이벤트 로그가 더 이상 남지 않게 됩니다.




참고로, 이 오류에 대해 다음의 글에서 자세한 해결 방법을 설명하고 있습니다.

Event ID 1058 ? Group Policy Preprocessing (Networking)
; http://social.technet.microsoft.com/wiki/contents/articles/1456.event-id-1058-group-policy-preprocessing-networking.aspx

The Group Policy service logs the name of the domain controller and the error code. This information appears on the Details tab of the error message in Event Viewer. The error code (displayed as a decimal) and error description fields further identify the reason for the failure. Evaluate the error code with the list below:

- Error code 3 
- Error code 5 
- Error code 53 

제 경우에 이벤트 로그 항목의 "Details" 탭에 "Error code 3"이 있었고, 이는 "The system cannot find the path specified"라는 의미입니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 10/10/2014]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...
NoWriterDateCnt.TitleFile(s)
1836정성태1/4/201527558디버깅 기술: 67. windbg - 덤프 파일과 handle 정보
1835정성태1/3/201528094개발 환경 구성: 254. SQL 서버 역시 SSL 3.0/TLS 1.0만을 지원하는 듯!
1834정성태1/3/201552728개발 환경 구성: 253. TLS 1.2를 적용한 IIS 웹 사이트 구성
1833정성태1/3/201528916.NET Framework: 490. System.Data.SqlClient는 SSL 3.0/TLS 1.0만 지원하는 듯! [3]
1832정성태1/2/201521556오류 유형: 266. Azure에 응용 프로그램 게시 중 로그인 오류
1831정성태1/1/201529656디버깅 기술: 66. windbg 분석 사례 - cpu 100% 현상 (1) [1]
1830정성태1/1/201528798오류 유형: 265. svchost.exe 프로세스(IP Helper: IPHLPSVC)의 CPU 100% 현상
1829정성태12/16/201432590VC++: 86. Windows Vista부터 바뀐 Credential Provider 예제 분석 (2) [2]파일 다운로드1
1828정성태12/15/201429065VC++: 85. Windows Vista부터 바뀐 Credential Provider 예제 분석 (1) [4]파일 다운로드1
1827정성태12/12/201425459VC++: 84. CredUIPromptForWindowsCredentials Win32 API 사용법 정리
1826정성태12/11/201429797.NET Framework: 489. Socket.Listen에 전달된 backlog 인자의 의미 [6]
1825정성태12/11/201477288.NET Framework: 488. TCP 소켓 연결의 해제를 알 수 있는 방법 [10]파일 다운로드1
1824정성태12/10/201427062.NET Framework: 487. Socket.Receive 메서드의 SocketFlags.Peek 동작을 이용해 소켓 연결 유무를 확인? [8]파일 다운로드1
1823정성태12/10/201424082.NET Framework: 486. Java의 ScheduledExecutorService에 대응하는 C#의 System.Threading.Timer [2]
1822정성태12/3/201426264개발 환경 구성: 252. Xamarin 라이선스 관리 [8]
1821정성태12/1/201433061VS.NET IDE: 96. Visual Studio에서 /* ~ */ 주석을 위한 단축키(매크로)
1820정성태11/23/201421343.NET Framework: 485. Mono Profiler에서 IL 코드 변경이 가능할까? - 두 번째 이야기파일 다운로드1
1819정성태11/22/201421163오류 유형: 264. MSBuild 에러 - warning MSB3052: The parameter to the compiler is invalid,
1818정성태11/22/201424091개발 환경 구성: 251. NUMA 노드 수에 따른 IIS Worker Process(w3wp.exe) 설정 [1]
1817정성태11/22/201427207VS.NET IDE: 95. Macros for Visual Studio 2013 [1]
1816정성태11/20/201421900.NET Framework: 484. Mono Profiler에서 IL 코드 변경이 가능할까?
1815정성태11/18/201419885.NET Framework: 483. 코드로 살펴 보는 ETW의 활성화 시점 [2]
1814정성태11/18/201421383오류 유형: 263. Unable to find the requested .Net Framework Data Provider. It may not be installed.
1813정성태11/18/201423136오류 유형: 262. Build Events에 robocopy 작업이 있는 경우 "VCEnd exited with code 3" 오류 발생
1812정성태11/17/201420821.NET Framework: 482. ETW 자동 생성 코드의 VerificationException 예외 발생
1811정성태11/16/201422122.NET Framework: 481. Mono 내부의 문자열 처리 방식은 UTF-8
... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...