Install NTP Server Debian 12
Loncat ke navigasi
Loncat ke pencarian
NTP (Network Time Protocol) adalah aplikasi ini digunakan untuk menyesuaikan waktu sesuai zona yang ingin ditentukan. Aplikasi ini akan langsung melakukan sinkronisasi waktu secara real time. untuk melakukan instalasi dengan cara mengetikkan perintah
Instalasi NTP Server
apt -y install ntpsec (enter)
Cek Keberhasilan Instalasi
Untuk melihat keberhasilan proses instalasi NTP bisa menggunakan perintah
dpkg -l | grep ntp (enter)
Jika berhasil akan muncul seperti berikut
ii ntpsec 1.2.2+dfsg1-1+deb12u1 amd64 Network Time Protocol daemon and utility programs ii python3-ntp 1.2.2+dfsg1-1+deb12u1 amd64 Python 3 NTP Helper Classes
Konfigurasi Dasar NTP Server
File yang perlu dikonfigurasi pada NTP Server ada di folder /etc/ntp.conf
nano /etc/ntpsec/ntp.conf (enter)
rubah pada bagian ini :
# pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will # pick a different set every time it starts up. Please consider joining the # pool: <https://www.pool.ntp.org/join.html> pool 0.debian.pool.ntp.org iburst pool 1.debian.pool.ntp.org iburst pool 2.debian.pool.ntp.org iburst pool 3.debian.pool.ntp.org iburst
menjadi
# pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will # pick a different set every time it starts up. Please consider joining the # pool: <https://www.pool.ntp.org/join.html> #pool 0.debian.pool.ntp.org iburst #pool 1.debian.pool.ntp.org iburst #pool 2.debian.pool.ntp.org iburst #pool 3.debian.pool.ntp.org iburst
simpan konfigurasi, lalu lakukan restart NTP Server dengan perintah
systemctl restart ntpsec (enter)