0
0
Jenkinsdevops~10 mins

Why administration matters in Jenkins - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start the Jenkins service.

Jenkins
sudo systemctl [1] jenkins
Drag options to blanks, or click blank then click option'
Astop
Brestart
Cstart
Dstatus
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' will turn off Jenkins.
2fill in blank
medium

Complete the code to check the status of Jenkins service.

Jenkins
sudo systemctl [1] jenkins
Drag options to blanks, or click blank then click option'
Astatus
Benable
Cstart
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' will try to launch Jenkins instead of checking.
3fill in blank
hard

Fix the error in the command to reload Jenkins configuration without restarting.

Jenkins
sudo systemctl [1] jenkins
Drag options to blanks, or click blank then click option'
Arestart
Breload
Cstop
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'restart' causes downtime.
4fill in blank
hard

Fill both blanks to enable Jenkins to start automatically on boot and verify it.

Jenkins
sudo systemctl [1] jenkins && sudo systemctl [2] jenkins
Drag options to blanks, or click blank then click option'
Aenable
Bstart
Cstatus
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'enable' won't set auto-start.
5fill in blank
hard

Fill all three blanks to safely stop Jenkins, disable auto-start, and check status.

Jenkins
sudo systemctl [1] jenkins && sudo systemctl [2] jenkins && sudo systemctl [3] jenkins
Drag options to blanks, or click blank then click option'
Astart
Bstop
Cstatus
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'stop' will keep Jenkins running.