maintain time
Maintain accurate time synchronization using NTP and configure the time zone to ensure correct time stamps for events recorded by the system journal and logs.
Task 1:
yum install chrony
systemctl start chronyd
systemctl enable chronydvim /etc/chrony.conf
server server.domain11.example.com iburstsystemctl restart chronyd
systemctl enable chronydTask 2:
yum install chrony
vim /etc/chrony.conf
server utility.domain15.example.com iburst
timedatectl set-timezone Asia/Baku
timedatectl set-ntp on
systemctl restart chronyd && systemctl enable chronyd
systemctl status chronydLast updated