Red_Hat
EX200 · Question #5
05. Configure Cron Job Configure a cron job to automatically execute /usr/bin/echo hello every day at 14:23 for the user harry. Correct Answer: See the below explanation Explanation…
This task involves configuring a cron job for user harry to execute a specific command daily at 14:23.
Submitted by asante_acc· Apr 18, 2026Operate running systems
Question
- Configure Cron Job Configure a cron job to automatically execute /usr/bin/echo hello every day at 14:23 for the user harry. Correct Answer: See the below explanation Explanation Explanation/Reference: Solution: [root@node1 ~]# systemctl status crond [root@node1 ~]# systemctl enable crond [root@node1 ~]# crontab -e -u harry 23 14 * * * /usr/bin/echo hello # Verification [root@node1 ~]# crontab -l -u harry
Explanation
This task involves configuring a cron job for user harry to execute a specific command daily at 14:23.
Concept tested. Scheduling tasks with cron
Topics
#cron#task scheduling#systemctl#user context
Community Discussion
No community discussion yet for this question.