How to Install Jenkins on Ubuntu
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - Then add the following entry in your /etc/apt/sources...
https://www.czetsuyatech.com/2019/05/jenkins-install-on-ubuntu.html
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
Then add the following entry in your /etc/apt/sources.list:
deb https://pkg.jenkins.io/debian-stable binary/
sudo apt-get update
sudo apt-get install jenkins
sudo usermod -a -G root jenkins
add
JENKINS_LISTEN_ADDRESS="0.0.0.0"
/etc/default/jenkins
Post a Comment