Golang : Get current time from the Internet time server(ntp) example
There are times when a program needs to have accurate machine time. For example, the make
command found in Unix/Linux. To get the most accurate time, your local machine time need to synchronize first with a time server to get the best accuracy.
Below is a Golang example code on how to get the time from pool.ntp.org
via the Network Time Protocol(NTP). There are couple of packages that allow us to get the time via NTP and we will use the github.com/beevik/ntp
package.
First, $go get -u github.com/beevik/ntp
and then run the code below.
package main
import (
"fmt"
"github.com/beevik/ntp"
"time"
)
func main() {
// ntpTime, err := ntp.Time("pool.ntp.org")
// time.apple.com will give the same result as pool.ntp.org
ntpTime, err := ntp.Time("time.apple.com")
if err != nil {
fmt.Println(err)
}
ntpTimeFormatted := ntpTime.Format(time.UnixDate)
fmt.Printf("Network time: %v\n", ntpTime)
fmt.Printf("Unix Date Network time: %v\n", ntpTimeFormatted)
fmt.Println("+++++++++++++++++++++++++++++++")
timeFormatted := time.Now().Local().Format(time.UnixDate)
fmt.Printf("System time: %v\n", time.Now())
fmt.Printf("Unix Date System time: %v\n", timeFormatted)
// so from here, use ntpTime instead of time.Now().Local()
// or set your machine time to sync with a network time server
// for example, on Mac OSX, you can tick to enable auto sync
// with time.apple.com
}
Output:
Network time: 2017-04-21 14:28:15.461293531 +0800 MYT
Unix Date Network time: Fri Apr 21 14:28:15 MYT 2017
+++++++++++++++++++++++++++++++
System time: 2017-04-21 14:30:13.041308829 +0800 MYT
Unix Date System time: Fri Apr 21 14:30:13 MYT 2017
NOTICE that my system time is 14:30 versus the network time 14:28. My local machine time is 2 minutes ahead.If my local machine is set to automagically sync with a time server ... such as time.apple.com
, then both the local and network time should be the same.
Happy coding!
References:
https://groups.google.com/forum/#!topic/golang-nuts/FlcdMU5fkLQ
See also : Golang : Get local time and equivalent time in different time zone
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.3k Golang : Validate hostname
+22.6k Golang : Gorilla mux routing example
+5.4k Golang : Detect words using using consecutive letters in a given string
+10.3k Golang : ISO8601 Duration Parser example
+10.7k Golang : How to transmit update file to client by HTTP request example
+12k Golang : flag provided but not defined error
+7.6k Golang : Load DSA public key from file example
+21.2k Golang : Encrypt and decrypt data with TripleDES
+14.6k Golang : How to check for empty array string or string?
+10.7k Golang : Create Temporary File
+7.8k Golang : Sort words with first uppercase letter