Jenkinsrpm
时间: 2024-12-30 09:31:02 浏览: 11
### Jenkins RPM Package Download and Installation Guide
For systems using Red Hat Enterprise Linux (RHEL), CentOS, or Fedora, installing Jenkins via an RPM package is a common method. The official repository provides stable versions of Jenkins that can be easily installed on these distributions.
#### Adding Jenkins Repository
To ensure access to the latest stable releases, add the Jenkins repository to the system configuration file `/etc/yum.repos.d/jenkins.repo`:
```bash
sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
```
Importing the Jenkins key ensures the integrity of downloaded packages[^1]:
```bash
sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
```
#### Installing Jenkins
With the repository added, proceed with installing Jenkins through yum:
```bash
sudo yum install jenkins
```
This command fetches the `jenkins-<version>.noarch.rpm` from the configured repositories and installs it along with any dependencies required by Jenkins.
#### Starting Jenkins Service
After installation completes successfully, start the Jenkins service and enable it so that it starts automatically upon reboot:
```bash
sudo systemctl start jenkins
sudo systemctl enable jenkins
```
Check the status of the Jenkins service to confirm successful startup:
```bash
sudo systemctl status jenkins
```
Access Jenkins at http://localhost:8080 once the setup wizard has completed execution after first-time launch.
阅读全文