Skip to content

Instantly share code, notes, and snippets.

@AlexGladkov
Created February 21, 2025 06:30
Show Gist options
  • Save AlexGladkov/e70f9f910323ed6bd9939420b860dd5a to your computer and use it in GitHub Desktop.
Save AlexGladkov/e70f9f910323ed6bd9939420b860dd5a to your computer and use it in GitHub Desktop.
Jenkins install - linux (ubuntu)
# 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