Recall & Review
beginner
What is Jenkins?
Jenkins is an open-source automation server used to build, test, and deploy software automatically.
Click to reveal answer
beginner
Which command updates the package index on a Debian-based Linux system before installing Jenkins?
The command is
sudo apt update. It refreshes the list of available packages.Click to reveal answer
intermediate
Why do we add the Jenkins repository key before installing Jenkins?
Adding the repository key ensures the packages are trusted and come from the official Jenkins source.
Click to reveal answer
beginner
What is the command to start the Jenkins service on Linux after installation?
Use
sudo systemctl start jenkins to start the Jenkins service.Click to reveal answer
beginner
How do you check if Jenkins is running on your Linux system?
Run
sudo systemctl status jenkins. It shows if Jenkins is active and running.Click to reveal answer
Which package manager is used to install Jenkins on Ubuntu Linux?
✗ Incorrect
Ubuntu uses the apt package manager to install software like Jenkins.
What is the first step before installing Jenkins on a Debian-based system?
✗ Incorrect
Jenkins requires Java, so installing Java first is essential before Jenkins installation.
Which command adds the Jenkins repository to your system?
✗ Incorrect
This command downloads and adds the Jenkins repository key to your system.
How do you enable Jenkins to start automatically on system boot?
✗ Incorrect
Enabling Jenkins with systemctl ensures it starts automatically when the system boots.
After installing Jenkins, where do you find the initial admin password?
✗ Incorrect
The initial admin password is stored in the secrets folder inside Jenkins data directory.
Describe the main steps to install Jenkins on a Debian-based Linux system.
Think about preparing the system, adding Jenkins source, and managing the service.
You got /5 concepts.
Explain why it is important to add the Jenkins repository key before installation.
Consider how your system knows the packages are safe.
You got /4 concepts.