Files
Ubuntu_docs/Jenkins_install.md
2025-03-07 19:32:05 +05:00

925 B
Raw Blame History

Install by docs from https://www.cherryservers.com/blog/install-jenkins-ubuntu

Prepare installation

Открываю нужный сервер

wsl
sudo apt update
sudo apt upgrade
	sudo apt install openjdk-21-jdk openjdk-21-jre -y &&
	java -version

Add Jenkins Repository

sudo wget -O /usr/share/keyrings/jenkins-keyring.asc https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key

Next, add the Jenkins repository to your systems sources.list:

sudo sh -c 'echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] https://pkg.jenkins.io/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt update
sudo apt install jenkins
sudo systemctl start jenkins &&
sudo systemctl enable jenkins &&
sudo systemctl status jenkins
start http://127.0.0.1:8080

See what port in locked

netstat -tpln