# 🤖Jenkins setup

**For installing** [**Jenkins**](https://www.jenkins.io/doc/book/installing/linux/) **follow these commands.**

1. firstly make a file with the name jenkins.sh >>"vim jenkins.h"
2. copy the below command and paste it into a file and save it

```
sudo wget -O /usr/share/keyrings/jenkins-keyring.asc \
  https://pkg.jenkins.io/debian/jenkins.io-2023.key
echo "deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc]" \
  https://pkg.jenkins.io/debian binary/ | sudo tee \
  /etc/apt/sources.list.d/jenkins.list > /dev/null
sudo apt-get update
sudo apt-get install jenkins
```

```
//Then run the command to run all the above commands simultaneously.
#sudo chomd +x jenkins.sh
```

3. copy the instance URL and paste into the browser with "URL:8080".

<figure><img src="https://475494772-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7eqNZUv00oKWb5vIK8tA%2Fuploads%2FuNbseLLswSwLXPFTOcJb%2FScreenshot%202024-04-18%20172721.png?alt=media&#x26;token=80c7e57c-e384-408c-b2a7-4ff3aff46fa3" alt=""><figcaption><p>Now setup jenkins </p></figcaption></figure>

***
