[LINUX] RDATE로 시간동기화 하기

개요

rdate 명령어는 리눅스의 시간을 timeserver와 동기화하는 명령어입니다.

리눅스는 서버로 운영되는 경우가 많은데 서버 시간은 서버에서 동작하는 여러 서비스에 영향을 주게 되기 때문에 항상 정확한 시간 정보를 유지하는 것이 좋습니다.

정확한 시간 정보 유지를 위해 타임서버(Time Server)의 시간 정보를 불러와서 기준 시간으로 삼을 수 있습니다.

사용법

리눅스에서 사용되는 명령어는 모두 대소문자를 구분하니 주의해주세요.

rdate 명령어에 필요한 argument들의 대한 usage 정보는 rdate 라고만 입력하고 실행하면 볼 수 있습니다.

Usage: rdate [-s] [-p] [-u] [-l] [-t sec] <host> …

기본 사용법은 아래와 같습니다.

rdate -s timeserver

timeserver 에 시간 서버 주소를 넣어주면 해당 서버와 시간 동기화를 수행합니다.

시간 서버 목록

현재 사용 가능한 시간 서버 목록입니다. 아래 중에 하나의 서버를 선택하여 동기화 해주시면 됩니다.

  • time.bora.net
  • time.nuri.net
  • time.windows.com
  • ntp.kornet.net
  • time.nist.gov

예제

ex) time.bora.net 에 시간 동기화
rdate -s time.bora.net

rdate 설치

만일 rdate가 설치되어 있지 않다면 아래와 같이 yum 을 이용해 설치해줍니다.

[root@peterdev ~]# yum -y  install rdateLoaded plugins: fastestmirrorLoading mirror speeds from cached hostfile * base: ftp.iij.ad.jp * epel: mirror.dmmlabs.jp * extras: ftp.iij.ad.jp * ius: mirrors.kernel.org * updates: ftp.iij.ad.jpResolving Dependencies--> Running transaction check---> Package rdate.x86_64 0:1.4-25.el7 will be installed--> Finished Dependency ResolutionDependencies Resolved================================================================================================== Package              Arch                  Version                     Repository           Size==================================================================================================Installing: rdate                x86_64                1.4-25.el7                  base                 19 kTransaction Summary==================================================================================================Install  1 PackageTotal download size: 19 kInstalled size: 29 kDownloading packages:rdate-1.4-25.el7.x86_64.rpm                                                |  19 kB  00:00:00Running transaction checkRunning transaction testTransaction test succeededRunning transaction  Installing : rdate-1.4-25.el7.x86_64                                                        1/1  Verifying  : rdate-1.4-25.el7.x86_64                                                        1/1Installed:  rdate.x86_64 0:1.4-25.el7Complete![root@peterdev ~]#

정기적인 시간 동기화

정확한 시간을 유지하기 위해 rdate 명령을 정기적으로 실행하고자 한다면, crontab에 등록하면 됩니다.

출처: https://gracefulprograming.tistory.com/91

위 글에 문제가 있다면, 삭제하겠습니다.

댓글 없음:

참고: 블로그의 회원만 댓글을 작성할 수 있습니다.

Powered by Blogger.