Linux ntp client centos

How to install and Configure NTP client on CentOS/RHEL to Synchronize the Clock

The Network Time Protocol (NTP) is a protocol used to synchronize the clocks of computers over a network. NTP uses a hierarchical architecture of time sources, which can be either local or external. In this guide, we will show you how to install and configure an NTP client on CentOS/RHEL to synchronize the clock with an NTP server.

Step 1: Install NTP

The first step is to install the NTP package. You can do this by running the following command as root:

This will download and install the NTP package and its dependencies.

Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: ftp.oss.eznetsols.org * base: ftp.oss.eznetsols.org * epel: ftp.cuhk.edu.hk * extras: ftp.oss.eznetsols.org * updates: ftp.oss.eznetsols.org Setting up Install Process Resolving Dependencies --> Running transaction check ---> Package ntp.x86_64 0:4.2.2p1-9.el5.centos.2.1 set to be updated --> Finished Dependency Resolution Dependencies Resolved ===================================================================================== Package Arch Version Repository Size ===================================================================================== Installing: ntp x86_64 4.2.2p1-9.el5.centos.2.1 base 1.3 M Transaction Summary ===================================================================================== Install 1 Package(s) Upgrade 0 Package(s) Total download size: 1.3 M Is this ok [y/N]: y Downloading Packages: ntp-4.2.2p1-9.el5.centos.2.1.x86_64.rpm | 1.3 MB 00:04 Running rpm_check_debug Running Transaction Test Finished Transaction Test Transaction Test Succeeded Running Transaction Installing : ntp 1/1 Installed: ntp.x86_64 0:4.2.2p1-9.el5.centos.2.1 Complete!

Step 2: Configure NTP

After installing NTP, you need to configure it to synchronize the clock with an NTP server. The NTP configuration file is located at /etc/ntp.conf. You can edit this file with a text editor to add the NTP server you want to synchronize with.

Читайте также:  Ксерокс 3250 драйвер линукс

Find the lines that specify the NTP servers and add the IP address or hostname of the NTP server you want to use.

server 0.centos.pool.ntp.org //set this to your primary NTP server - Line 17 server 1.centos.pool.ntp.org //set this to your Secondary NTP server (Optional) - Line 18 server 2.centos.pool.ntp.org //set this to your tertiary NTP server (Optional) - Line 19

For example, to synchronize with the NTP server at IP address 192.0.2.1, add the following line:

Save the file and exit the text editor.

Step 3: Start NTP

After configuring NTP, you need to start the NTP service. You can do this by running the following command as root:

This will start the NTP service and synchronize the clock with the NTP server you specified in the configuration file.

Step 4: Enable NTP at boot

To ensure that NTP starts automatically at boot time, you need to enable the NTP service. You can do this by running the following command as root:

This will create a symbolic link in the /etc/systemd/system/multi-user.target.wants/ directory to the NTP service unit file.

Step 5: Verify NTP synchronization

After starting NTP, you can verify that the clock is synchronized with the NTP server by running the following command:

This will display a list of NTP servers and their status. The “*” symbol indicates the NTP server that the client is synchronized with.

Commands Mentioned:

  • yum install – installs packages
  • systemctl start – starts a systemd service
  • systemctl enable – enables a systemd service to start at boot
  • ntpq -p – displays NTP server status
Читайте также:  Linux map folder to folder

Conclusion:

In this guide, we have shown you how to install and configure an NTP client on CentOS/RHEL to synchronize the clock with an NTP server. By synchronizing the clock with an NTP server, you can ensure that the time on your server is accurate, which is important for various applications such as logging and authentication. Remember to verify that NTP synchronization is working correctly by using the ntpq command.

Dimitri Nek

Dimitri is a Linux-wielding geek from Newport Beach and a server optimization guru with over 20 years of experience taming web hosting beasts. Equipped with an arsenal of programming languages and an insatiable thirst for knowledge, Dimitri conquers website challenges and scales hosting mountains with unmatched expertise. His vast knowledge of industry-leading hosting providers allows him to make well-informed recommendations tailored to each client’s unique needs.

Источник

Как настроить сервер и клиент NTP в CentOS / RHEL 7

Пример, рассмотренный ниже, относится к базовому NTP-серверу и клиенту.

NTP означает Network Transport Protocol и используется для поддержания времени на серверах, синхронизированных друг с другом с использованием общего надежного источника, чтобы получить время.

Настройка сервера NTP

1. Установите требуемый пакет ntp на сервер.

2. Убедитесь, что в файле конфигурации ntp /etc/ntp.conf указаны следующие данные.

# cat /etc/ntp.conf restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery restrict 127.0.0.1 restrict -6 ::1 server 0.pool.ntp.org server 1.pool.ntp.org server 2.pool.ntp.org server 3.pool.ntp.org restrict 10.10.10.0 mask 255.255.255.0 nomodify notrap driftfile /var/lib/ntp/drift keys /etc/ntp/keys

В соответствии с конфигурационным файлом серверы NTP обслуживают только клиентов NTP в подсети 10.10.10.0/24.

Вы можете получить общедоступные NTP-серверы, специфичные для вашего региона, из pool.ntp.org.

В файле /etc/ntp.conf вам нужно будет указать сервер (-ы) NTP в вашей среде.

3. Теперь вы можете запустить службу ntpd.

Для RHEL 5,6:

# systemctl start ntpd.service

Конфигурация клиента NTP

1. Для конфигурации клиентского NTP добавьте следующую конфигурацию в файл /etc/ntp.conf.

# cat /etc/ntp.conf restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery restrict 127.0.0.1 restrict -6 ::1 server ntp.server.com driftfile /var/lib/ntp/drift keys /etc/ntp/keys

Здесь ntp.server.com – это сервер, настроенный как сервер NTP в примере, показанном в начале статьи.

Читайте также:  Linux mount which device

Для обеспечения избыточности может быть несколько серверов NTP.

Добавьте новую строку для каждого из серверов NTP в файле /etc/ntp.conf.

2. Запустите службу ntpd на клиентском сервере ntp.

Для RHEL 5,6:

# systemctl start ntpd.service
itisgood
Linux whatis команда для начинающих (5 примеров)
Как ограничить скорость загрузки файлов с помощью Wget в Linux

You may also like

📜 Чтение файла построчно на Bash

📧 В чем разница между IMAP и POP3

✔️ Как управлять контейнерами LXD от имени обычного.

📜 Руководство для начинающих по созданию первого пакета.

Феноменальная популярность электроники Xiaomi: основные причины

📜 Получение вчерашней даты в Bash: Практическое руководство

Использование специальных гелей при мышечных болях

🐧 Сравнение команд Printf и Echo на Linux

📦 Как расширить/увеличить файловую систему VxFS на Linux

Услуги по размещению серверного оборудования в ЦОД

Leave a Comment Cancel Reply

• Свежие записи

• Категории

• Теги

• itsecforu.ru

• Страны посетителей

IT is good

В этой статье вы узнаете, как удалить удаленный Git-репозиторий. Процесс прост, но его полезно запомнить, чтобы избежать неожиданностей в будущем. Git – это…

В 11-й версии своей операционной системы Microsoft серьезно переработала интерфейс и убрала несколько привычных функций. Нововведения не всем пришлись по душе. Мы дадим…

Продажа ноутбука нередко становится хлопотным занятием. Кроме поиска покупателя, продавцу необходимо подготовить устройство перед проведением сделки. Но если последовательно выполнить все шаги, ничего…

Вы можете оказаться в ситуации, когда вам нужно использовать скрипт шелла для чтения файлов построчно. В этом руководстве я расскажу о нескольких способах…

Вторичное жильё выгоднее для молодых семей, желающих приобрести свою первую квартиру. Сталкиваясь с ипотечным кредитованием, можно избежать много лишней суеты и проблем, если…

Источник

Оцените статью
Adblock
detector