Ubuntu HPC NTP client setup on compute nodes
From Notes_Wiki
Home > Ubuntu > HPC setup with openpbs and openmpi > NTP client setup on compute nodes
To configure client nodes to take their time update from master use:
- Install ntp package
- apt install -y ntp ntpdate
- Edit '/etc/ntp.conf' file and keep only master server as follows:
- server master prefer iburst
- Set correct time on current system using:
- systemctl stop ntp
- ntpdate -b master
- Start and enable ntp service
- systemctl start ntp
- systemctl enable ntp
- Check status of ntp service
- systemctl status ntp
- ntpq -p
- We should see time getting synced with master with st value much less than 16.
Home > Ubuntu > HPC setup with openpbs and openmpi > NTP client setup on compute nodes