EX200 Exam QuestionsBrowse all questions from this exam

EX200 Exam - Question 103


SIMULATION -

Configure your system so that it is an NTP client of server.domain11.example.com

Show Answer
Correct Answer:

To configure your system to be an NTP client of server.domain11.example.com, follow these steps: 1. Install the NTP client software (chrony) using your package manager with the command: `yum install chrony`. 2. Edit the configuration file for chrony located at `/etc/chrony.conf` and add the line: `server server.domain11.example.com`. 3. Save the file and exit the editor using the commands `:wq`. 4. Enable and start the chrony service with the command: `systemctl enable --now chronyd`. 5. Verify the NTP sources with the command: `chronyc sources`. This will ensure your system synchronizes its time with server.domain11.example.com properly.

Discussion

1 comment
Sign in to comment
Sz0p3n
May 26, 2021

yum install chrony* vim /etc/chrony.conf server server.domain11.example.com :wq systemctl enable --now chronyd chronyc sources