# linux 6 타임서버 시간 동기화 방법 #

1. 서버의 현재시간 확인  – date 라는 명령어를 입력하면 서버의 현재시간을 확인할 수 있습니다. [root@localhost ~]# date 2018. 07. 23. (월) 15:35:06 KST  – 실제 시간과의 오차범위가 크다면 시간 동기화가 필요합니다. 2. rdate설치  – 먼저 yum으로 rdate를 설치해줍니다. 설치전에 설치가 되어있는지 확인! [root@localhost ~]# rpm -qa|grep rdate rdate-1.4-16.el6.x86_64 [root@localhost ~]# yum -y install rdate   … Read more

# redhat 8.x 시간 동기화 / Centos 8.x #

# redhat 8.x 시간 동기화 / Centos 8.x # linux 8.x 시간 동기화 방법 입니다. 기존에 7.x 버전은 rdate 를 사용 했지만 8 버전부터는 변경 되었습니다.   6 , 7버전 시간동기화 방법 링크 <—-   아래는 8 버전 동기화 방법 입니다. [root@localhost ~]# date 2020. 08. 12. (수) 21:38:14 EDT [root@localhost ~]# rpm -qa|grep timedate timedatex-0.5-3.el8.x86_64 [root@localhost ~]# timedatectl set-timezone Asia/Seoul [root@localhost ~]# … Read more

Rockylinux 8.x 시간 동기화 방법

Rocky linux 8.x 시간동기화 방법 입니다. 9버전도 가능하고  Centos 8 , redhat 8, 9 버전도 가능 합니다.   현재 시간은 2023. 04. 12. (수) 10:57:46 # 시간확인 # [root@localhost ~]# date 2023. 04. 12. (수) 06:28:26 EDT timezone 를 변경했지만 시간이 더 이상해졌습니다. [root@localhost ~]# timedatectl set-timezone Asia/Seoul [root@localhost ~]#  [root@localhost ~]# date 2023. 04. 12. (수) 19:29:13 KST   chront.conf 에서  pool 2.rhel.pool.ntp.org iburst 는 주석처리 후  server time.bora.net iburstserver send.mx.cdnetworks.com iburst 입력 [root@localhost ~]# cat /etc/chrony.conf  # Use public servers from the pool.ntp.org project. # Please consider joining the pool … Read more