Centos 5.8을 사용하다가 7.x로 넘어온 지금…
세팅한지는 한달이 다되가는데..
시간대가 한국보다 하루가량 빠른걸 발견하고 rdate로 시간을 맞추려 했는데…
이런.. rdate가 설치되어있지 않군…!
알아보니 Centos 7.x minimal에는 rdate가 들어있지 않다는…
yum으로 rdate를 설치하자…
yum -y install rdate
그리고 시간을 맞추자~
rdate -s time.bora.net
끝~~
일정 시간마다 동기화하려면 cron에 등록을…
# vi /etc/crontab
SHELL=/bin/
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# For details see man 4 crontabs
# Example of job definition:
# .—————- minute (0 – 59)
# | .————- hour (0 – 23)
# | | .———- day of month (1 – 31)
# | | | .——- month (1 – 12) OR jan,feb,mar,apr …
# | | | | .—- day of week (0 – 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
# date time sync
0 5 * * * root /usr/bin/rdate -s time.bora.net && /sbin/hwclock -w
시스템이 재부팅될 때 동기화하려면!! 다음과 같이..
# vi /etc/rc.d/rc.local
#!/bin/sh
# date sync
/usr/bin/rdate -s time.bora.net
/sbin/hwclock -w