Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

NtpClient was unable to set a manual peer to use as a time source because of duplicate error on '...'.

경고를 재현하는 방법은 그냥 w32time 서비스를 재시작하면,

C:\temp> net stop w32time & net start w32time

이런 경고가 나오고,

Log Name: System
Source: Microsoft-Windows-Time-Service
Date: 2020-03-08 오전 11:17:03
Event ID: 135
Task Category: None
Level: Warning
Keywords:
User: LOCAL SERVICE
Computer: testad2.testad.com
Description:
NtpClient was unable to set a manual peer to use as a time source because of duplicate error on '1.pool.ntp.org,'. The same time source '0.pool.ntp.org,' has been either specified as manual peer in NtpServer or selected as domain peer. NtpClient will try again in 15 minutes and double the reattempt interval thereafter. The error was: The entry already exists. (0x800706E0)


이어서 NTP 서버명만 바꿔 또 이런 메시지가 나온 후,

NtpClient was unable to set a manual peer to use as a time source because of duplicate error on '2.pool.ntp.org,'. The same time source '0.pool.ntp.org,' has been either specified as manual peer in NtpServer or selected as domain peer. NtpClient will try again in 15 minutes and double the reattempt interval thereafter. The error was: The entry already exists. (0x800706E0)


어쨌든 정상적으로 동기화되었다는 메시지가 뜹니다.

Log Name:      System
Source:        Microsoft-Windows-Time-Service
Date:          2020-03-08 오전 11:17:17
Event ID:      35
Task Category: None
Level:         Information
Keywords:      
User:          LOCAL SERVICE
Computer:      testad2.testad.com
Description:
The time service is now synchronizing the system time with the time source 0.pool.ntp.org, (ntp.m|0x0|0.0.0.0:123->211.233.40.78:123) with reference id 1311304147. Current local stratum number is 3.




일단 "0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org" 서버를 지정하는 것은 이전 글에서 살펴봤습니다.

Hyper-V 내에 구성한 Active Directory 환경의 시간 구성 방법 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/11136

그래서 레지스트리를 직접 수정하든지, 아니면 다음의 명령어로 설정하든지,

c:\temp> w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org"

Time server를 하나만 지정하면 오류 메시지가 사라집니다. 그래도 두 번째 DC 서버이기 때문에 첫 번째 DC 서버를 지정하는 것으로 바꿔봤습니다.

w32tm /config /syncfromflags:manual /manualpeerlist:"TESTAD1.testad.com, 0.pool.ntp.org"

애석하게도 TESTAD1.testad.com도 분명히 Time Server로 잘 동작하는데도 불구하고,

C:\temp> w32tm /stripchart /computer:TESTAD1.testad.com /dataonly
Tracking TESTAD1.testad.com [192.168.0.90:123].
The current time is 2020-03-08 오후 12:27:32.
12:27:32, -00.0341780s
12:27:34, -00.0341578s
12:27:36, -00.0341487s
^C

C:\temp> w32tm /monitor /computers:TESTAD1.testad.com
TESTAD1.testad.com[192.168.0.90:123]:
    ICMP: 2ms delay
    NTP: -0.0182927s offset from local clock
        RefID: send.mx.cdnetworks.com [211.233.40.78]
        Stratum: 3

Warning:
Reverse name resolution is best effort. It may not be
correct since RefID field in time packets differs across
NTP implementations and may not be using IP addresses.

여전히 "0.pool.ntp.org"로 통신하게 되는데,

C:\temp> w32tm /query /source
0.pool.ntp.org

이유를 모르겠습니다. ^^; 게다가, 그냥 신규 DC이긴 해도 기존 DC에 얹어 가려고 도메인 NtpServer를 사용하려고 지정해 봤지만,

C:\temp> w32tm /config /syncfromflags:domhier /update
The command completed successfully.

C:\temp> w32tm /dumpreg /subkey:parameters /computer:localhost

Value Name                 Value Type          Value Data
------------------------------------------------------------

ServiceDll                 REG_EXPAND_SZ       %systemroot%\system32\w32time.dll
ServiceDllUnloadOnStop     REG_DWORD           1
ServiceMain                REG_SZ              SvchostEntry_W32Time
Type                       REG_SZ              NT5DS
NtpServer                  REG_SZ              TESTAD1, 0.pool.ntp.org

"Type == NT5DS"로 설정되었는데도 이상하게 "Local CMOS Clock"으로 소스가 바뀝니다.

C:\temp> w32tm /query /source
Local CMOS Clock

(혹시 이 현상에 대해 잘 아시는 분은 덧글 부탁드립니다. ^^)




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







[최초 등록일: ]
[최종 수정일: 7/7/2021]

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

비밀번호

댓글 작성자
 




... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13043정성태5/3/20225920오류 유형: 807. C# - 닷넷 응용 프로그램에서 Informix DB 사용 시 오류 메시지 정리
13042정성태5/3/20226309.NET Framework: 2000. C# - 닷넷 응용 프로그램에서 Informix DB 사용 방법파일 다운로드1
13041정성태4/28/20226574개발 환경 구성: 642. Informix 데이터베이스 docker 환경 구성
13040정성태4/27/20227115VC++: 156. 비주얼 스튜디오 - Linux C/C++ 프로젝트에서 openssl 링크하는 방법
13039정성태4/27/20227872.NET Framework: 1999. C# - Playwright를 이용한 간단한 브라우저 제어 실습
13038정성태4/26/20225799오류 유형: 806. twine 실행 시 ConfigParser.ParsingError: File contains parsing errors: /root/.pypirc
13037정성태4/25/20226106.NET Framework: 1998. Azure Functions를 사용한 간단한 실습
13036정성태4/24/20226826.NET Framework: 1997. C# - nano 시간을 가져오는 방법 [2]
13035정성태4/22/20227386Windows: 204. Windows 10부터 바뀐 QueryPerformanceFrequency, QueryPerformanceCounter
13034정성태4/21/20226808.NET Framework: 1996. C# XingAPI - 주식 종목에 따른 PBR, PER, ROE, ROA 구하는 방법(t3320, t8430 예제)파일 다운로드1
13033정성태4/18/20227405.NET Framework: 1195. C# - Thread.Yield와 Thread.Sleep(0)의 차이점(?)
13032정성태4/17/20227081오류 유형: 805. Github의 50MB 파일 크기 제한 - warning: GH001: Large files detected. You may want to try Git Large File Storage
13031정성태4/15/20226617.NET Framework: 1194. C# - IdealProcessor와 ProcessorAffinity의 차이점
13030정성태4/15/20226323오류 유형: 804. 정규 표현식 오류 - Quantifier {x,y} following nothing.
13029정성태4/14/20226704Windows: 203. iisreset 후에도 이전에 설정한 전역 환경 변수가 w3wp.exe에 적용되는 문제
13028정성태4/13/20226601.NET Framework: 1193. (appsettings.json처럼) web.config의 Debug/Release에 따른 설정 적용
13027정성태4/12/20226898.NET Framework: 1192. C# - 환경 변수의 변화를 알리는 WM_SETTINGCHANGE Win32 메시지 사용법파일 다운로드1
13026정성태4/11/20228433.NET Framework: 1191. C 언어로 작성된 FFmpeg Examples의 C# 포팅 전체 소스 코드 [3]
13025정성태4/11/20227794.NET Framework: 1190. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 vaapi_encode.c, vaapi_transcode.c 예제 포팅
13024정성태4/7/20226305.NET Framework: 1189. C# - 런타임 환경에 따라 달라진 AppDomain.GetCurrentThreadId 메서드
13023정성태4/6/20226618.NET Framework: 1188. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 transcoding.c 예제 포팅 [3]
13022정성태3/31/20226494Windows: 202. 윈도우 11 업그레이드 - "PC Health Check"를 통과했지만 여전히 업그레이드가 안 되는 경우 해결책
13021정성태3/31/20226650Windows: 201. Windows - INF 파일을 이용한 장치 제거 방법
13020정성태3/30/20226415.NET Framework: 1187. RDP 접속 시 WPF UserControl의 Unloaded 이벤트 발생파일 다운로드1
13019정성태3/30/20226388.NET Framework: 1186. Win32 Message를 Code로부터 메시지 이름 자체를 구하고 싶다면?파일 다운로드1
13018정성태3/29/20226916.NET Framework: 1185. C# - Unsafe.AsPointer가 반환한 포인터는 pinning 상태일까요? [5]
... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...