Link to home
Start Free TrialLog in
Avatar of Dwight Baer
Dwight BaerFlag for Canada

asked on

Need help installing ntp on ubuntu 18.04.4

I need to install the ntp service on my ubuntu 18.04.4 server.

I've never dealt with ntp before - I'm looking for a procedure that starts at step #1.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Dr. Klahn
Dr. Klahn

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Generally chrony is used on more recent Ubuntu versions.

All that's required is...

# Install the code...
apt-get install chrony

# Show source health...
net14 # chronyc activity
200 OK
8 sources online
0 sources offline
0 sources doing burst (return to online)
0 sources doing burst (return to offline)
0 sources with unknown address

Open in new window


https://ubuntu.com/blog/ubuntu-bionic-using-chrony-to-configure-ntp provides comprehensive details of how to effect all sorts of chrony settings + behavior.
Avatar of Dwight Baer

ASKER

Thanks Dr. Klahn and David!