Linux_FoundationLinux_Foundation
LFCS · Question #434
LFCS Question #434: Real Exam Question with Answer & Explanation
The correct answer is B: slurpd -r /path/to/replication/error/log -o. This question asks for the correct slurpd command to process a replication error log file in one-shot mode.
Submitted by akirajp· Apr 18, 2026Essential Commands
Question
Which command will instruct slurpd to process the replication error log in one-shot mode for the server 192.168.0.3?
Options
- Aslurpd -r -h 192.168.0.3 -o
- Bslurpd -r /path/to/replication/error/log -o
- Cslurpd -r -o < /path/to/replication/error/log
- Dslurpd -r -f /path/to/replication/error/log -o
- Eslurpd -r -o 192.168.0.3
Explanation
This question asks for the correct slurpd command to process a replication error log file in one-shot mode.
Common mistakes.
- A. The
-hoption specifies a host, butslurpd -rexpects a log file path, not just a host. - C. Redirecting standard input with
<is not the correct way to pass the replication log file path toslurpdusing the-roption. - D. The
-foption is typically used to specify a configuration file, not the replication error log file when using-r. - E. This syntax incorrectly combines the host with
-oand lacks the required file path argument for the-roption.
Concept tested. OpenLDAP slurpd utility for replication log processing
Topics
#LDAP replication#slurpd command#Log processing#Command-line options
Community Discussion
No community discussion yet for this question.