How to Configuring NTP server using chrony

0 votes

Hi Guys,

I am new in Linux system. I want to synchronize clock between computer systems over packet-switched, variable-latency data networks For that I have to use NTP server.  But how can I configure it?

May 11, 2020 in Linux Administration by akhtar
• 38,230 points
1,638 views

1 answer to this question.

0 votes

Hi@akhtar,

To use NTP server in your system, you have to configure it first. Use the below given steps to configure it.

  • Install the chrony package by using the following command.

$ yum install chrony
  • Configure chrony.

$ vim /etc/chrony.conf
server 192.0.2.1
allow 192.0.2/24

Here server keyword Identifies the NTP servers you want to use. 

  • Use the systemctl command to start the chrony daemon chronyd.

$ systemctl start chronyd

Hope this will help you.

answered May 11, 2020 by MD
• 95,440 points

Related Questions In Linux Administration

0 votes
1 answer

How to remove brackets using sed?

Try this: sed 's/[()]//g' <<< Hi(hello).How are you? READ MORE

answered Feb 13, 2019 in Linux Administration by Omkar
• 69,210 points
3,811 views
0 votes
2 answers

how to loop through the content of a file using bash

#!/bin/bash for i in  `cat peptides.txt` do echo $i done READ MORE

answered Sep 5, 2020 in Linux Administration by Prakash K. Aithal
2,487 views
0 votes
1 answer

How to perform proxy http request using curl?

One of the ways is: export http_proxy=http://your.proxy.server:port/ Then you ...READ MORE

answered Mar 26, 2019 in Linux Administration by DareDev
• 6,890 points
3,620 views
0 votes
1 answer

How to send mail using linux shell script?

If you've already configured the server, with ...READ MORE

answered Jun 11, 2019 in Linux Administration by ajs3033
• 7,300 points
990 views
0 votes
1 answer
0 votes
1 answer

How do I set variable if a specific package version is installed in CFEngine?

Here is what you can do.Just use packagesmatching to ...READ MORE

answered Jul 12, 2018 in Other DevOps Questions by Atul
• 10,240 points
943 views
0 votes
2 answers

Install postgreSQL on Ubuntu

Follow the below commands to install PostgreSQL (PSQL) ...READ MORE

answered Nov 12, 2020 in Database by Prachi
• 140 points
905 views
0 votes
1 answer

Access progrs prompt without switching accounts

Use the following to get the postgres prompt ...READ MORE

answered Mar 22, 2019 in Database by Mahi
640 views
0 votes
1 answer

How to run GUI program in SSH server from remote desktop?

Hi@akhtar, First you have to configure SSH server ...READ MORE

answered Mar 31, 2020 in Linux Administration by MD
• 95,440 points
4,176 views
0 votes
1 answer

How to install httpd web server in Linux?

Hi@akhtar, To install httpd web server in CentOS/RHEL ...READ MORE

answered Apr 21, 2020 in Linux Administration by MD
• 95,440 points
617 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP