唐突にNTPの記事ですが、なぜこの記事を持ってきたかというと、 最初に時刻合わせを設定しておかないと、後々のトラブルの元になるからです。 本日は、「NTPのインストール」についてです。
こんにちは。猫ITソリューションズ広報の齊藤メイ(♀)です。 本日は、「NTPのインストール」についてです。インストール
1 |
# yum -y install ntp |
NTP設定ファイル編集
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# vi /etc/ntp.conf # Hosts on local network are less restricted. #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap ← 追加(内部からの時刻同期を許可) # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). server 0.rhel.pool.ntp.org server 1.rhel.pool.ntp.org server 2.rhel.pool.ntp.org ↓ 時刻同期先NTPサーバーを変更 server -4 ntp.nict.jp # 日本標準時を提供しているNTPサーバー(stratum 1) server -4 ntp.jst.mfeed.ad.jp # 上記サーバーと直接同期しているNTPサーバー(stratum 2) server -4 ntp-tk01.ocn.ad.jp # OCN東日本用 server -4 ntp-tk02.ocn.ad.jp # OCN東日本用 |
手動で時刻を合わせる
1 2 |
# ntpdate ntp.nict.jp 2 Oct 10:11:11 ntpdate[2815]: adjust time server 133.243.238.244 offset 0.076957 sec |
NTPサーバー起動
1 2 |
# /etc/rc.d/init.d/ntpd start ntpd を起動中: [ OK ] |
NTPサーバー自動起動設定
1 |
# chkconfig ntpd on |
NTPサーバー自動起動設定確認
1 2 |
# chkconfig --list ntpd ntpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off ← ランレベル2~5のonを確認 |