CentOS 7.3(1611)では、日付/時刻を永久に変更することはできません。

CentOS 7.3(1611)では、日付/時刻を永久に変更することはできません。

クラウドサーバー(中国のTencent提供)にCentOS7(1611)がdateありますtimedatectl。時間は変わりますが、時間は非常にすばやく「実際の現在時刻」に自動的に変更されます(時間を変更してから約1分でリセットされる場合もあります)。 NTPとchronydをオフにしました。しかし、私だけがサーバーにアクセスでき、他の人は時間を変更できません。

この問題を確認する方法は?それとも時間を永久に変更する方法はありますか?

[user@VM_227_172_centos bin]$ systemctl status chronyd
● chronyd.service - NTP client/server
Loaded: loaded (/usr/lib/systemd/system/chronyd.service; disabled; vendor preset: enabled)
Active: inactive (dead)
[user@VM_227_172_centos bin]$ timedatectl 
      Local time: Thu 2017-08-03 19:33:12 CST
  Universal time: Thu 2017-08-03 11:33:12 UTC
        RTC time: Thu 2017-08-03 13:31:19
       Time zone: Asia/Shanghai (CST, +0800)
     NTP enabled: no
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a
[user@VM_227_172_centos bin]$ timedatectl set-time "23:23:21"
==== AUTHENTICATING FOR org.freedesktop.timedate1.set-time ===
Authentication is required to set the system time.
Authenticating as: root
Password: 
polkit-agent-helper-1: pam_authenticate failed: Authentication failure
==== AUTHENTICATION FAILED ===
Failed to set time: Access denied
[user@VM_227_172_centos bin]$ timedatectl set-time "23:23:21"
==== AUTHENTICATING FOR org.freedesktop.timedate1.set-time ===
Authentication is required to set the system time.
Authenticating as: root
Password: 
==== AUTHENTICATION COMPLETE ===
[user@VM_227_172_centos bin]$ timedatectl 
      Local time: Thu 2017-08-03 23:23:25 CST
  Universal time: Thu 2017-08-03 15:23:25 UTC
        RTC time: Thu 2017-08-03 15:23:26
       Time zone: Asia/Shanghai (CST, +0800)
     NTP enabled: no
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a
[user@VM_227_172_centos bin]$ timedatectl 
      Local time: Thu 2017-08-03 23:26:31 CST
  Universal time: Thu 2017-08-03 15:26:31 UTC
        RTC time: Thu 2017-08-03 15:26:32
       Time zone: Asia/Shanghai (CST, +0800)
     NTP enabled: no
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a
[user@VM_227_172_centos bin]$ timedatectl 
      Local time: Thu 2017-08-03 19:52:53 CST
  Universal time: Thu 2017-08-03 11:52:53 UTC
        RTC time: Thu 2017-08-03 15:42:18
       Time zone: Asia/Shanghai (CST, +0800)
     NTP enabled: no
NTP synchronized: no
 RTC in local TZ: no
      DST active: n/a

情報がない場合はお知らせください。

ベストアンサー1

CentOS 7 vicidialサーバーのタイムゾーンを変更するには、次のコマンドを使用します。

# rm /etc/localtime
rm: remove regular file `/etc/localtime'? y
# ln -s /usr/share/zoneinfo/Europe/Rome localtime
# date 

変更されたものをご覧いただけます。

おすすめ記事