環境
CentOS 6.6
事象
ntpq -p
コマンドを実行したところ、以下のメッセージ出力。
ntpq: read: Connection refused
原因
指定したサーバの ntp サービスが起動していません
ntp -p コマンドで 「ntpq: read: Connection refused」のエラーが表示 | Redhat Enterprise Linux 4Red Hat Linux EL 6 FAQ :ntp -p コマンドで 「ntpq: read: Connection refused」のエラーが表示
対応
ntpデーモンを起動する。
# /etc/init.d/ntpd start
ついでに、常時起動させておきたい場合、
# chkconfig --list |grep ntpd
で、
ntpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
になっちゃってたら、
以下のコマンドで、システム起動時にntpdが自動起動するように設定する。
# chkconfig ntpd on
↓
設定後確認
# chkconfig --list | grep ntpd
ntpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
コメント