Created
February 21, 2025 06:30
-
-
Save AlexGladkov/e70f9f910323ed6bd9939420b860dd5a to your computer and use it in GitHub Desktop.
Jenkins install - linux (ubuntu)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Jenkins and Java | |
sudo apt-get install jenkins | |
sudo apt install openjdk-17-jre | |
# Make jenkins autostart on launch | |
sudo systemctl enable jenkins | |
# Make jenkins start | |
sudo systemctl start jenkins | |
# Helping commands | |
# Check jenkins status | |
sudo systemctl status jenkins | |
# Check jenkins version | |
jenkins — version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment