Configure NTP Server in Oracle Linux 9
Configure NTP Server in Oracle Linux 9
 _______________________________________________________________________________________
NTP stands for Network Time Protocol.
It is used to synchronize the time on your Linux system with a centralized NTP server.
A local NTP server on the network can be synchronized with an external timing source to keep all the servers in your organization in-sync with an accurate time.
________________________________________________________________________________________
chronyc sources
dnf -y install chrony
nano  /etc/chrony.conf
change servers to synchronize (replace to your own timezone NTP server)
# need NTP server itself to sync time with other NTP server
#pool 2.centos.pool.ntp.org iburst
pool ntp.nict.jp iburst
# add network range to allow to receive time synchronization requests from NTP Clients
# specify your local network and so on
# if not specified, only localhost is allowed
allow 192.168.1.50/24
systemctl enable --now chronyd ; systemctl restart chronyd ; systemctl status chronyd
firewall-cmd --add-service=ntp ; firewall-cmd --runtime-to-permanent
chronyc sources
Related Posts:
- PHP alert
 - Configure NTP Server in Oracle Linux 9
 - How To Setup LVS (Linux Virtual Server) Load Balancer on Rocky Linux 8.5
 - How To Install Kamailio SIP Server on Rocky Linux 8
 - MongoDB database deleted automatically
 - How To Install Docker on Oracle Linux Server 9
 - How To Install Magento 2.4 on Rocky Linux 8
 - Display All PHP Errors: Basic & Advanced Usage
 - How To Install and Configure an SNMP on Ubuntu 20.04
 - How To Install EMQX MQTT Broker on Rocky Linux 8
 
Latest Posts
- Server-Side Scripting: PHP, Node.js, Python – A Detailed Comparison
 - Securing Your Website in 2024: Essential Strategies for Online Safety
 - The Future of Web Development Technologies: Trends to Watch in 2024
 - How Banks Handle Server-Side Operations and Ensure System Security: An Inside Look
 - Tips for Writing Clean, Understandable, and Efficient Code: Avoiding Garbage Code
 - Tailwind CSS: Revolutionizing Modern Web Design
 - Basic Linux Commands for Beginners: A Starter Guide
 - Dairy Farming Loan Apply
 - BSNL Recharge Plan
 - Bijli Bill Mafi Yojana Online Apply
 
Technical
- DevOps Roadmap
 - How To Install and Configure an SNMP on Ubuntu 20.04
 - Apple releases iOS 18 Developer Beta 2 with iPhone screen mirroring, RCS toggle,and more
 - How to enable SNMP on Ubuntu Linux 18.04 and above
 - How to Force HTTPS Using .htaccess (Updated 2024)
 - Display All PHP Errors: Basic & Advanced Usage
 - PHP alert
 - MongoDB loads but breaks, returning status=14
 - MongoDB database deleted automatically
 - MongoDB all Error Solutions
 
Category
