Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laardee/jenkins-installation
Jenkins installation instructions for Amazon Linux AMI
https://github.com/laardee/jenkins-installation
Last synced: 3 days ago
JSON representation
Jenkins installation instructions for Amazon Linux AMI
- Host: GitHub
- URL: https://github.com/laardee/jenkins-installation
- Owner: laardee
- Created: 2017-02-06T15:15:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T20:47:52.000Z (almost 8 years ago)
- Last Synced: 2024-06-11T23:12:32.381Z (5 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 8
- Watchers: 4
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installing Jenkins on Amazon Linux AMI
1. Create an IAM role for EC2 instance.
2. Launch new EC2 instance
3. Select Amazon Linux AMI
4. Select instance size (t2.micro/t2.small should be enough)
5. Configure details. Select IAM role created in first step
6. Create Storage
7. Add tags. e.g. Name: jenkins
8. Configure Security Group
* Select name for the security group, e.g. jenkins
* Add rule for SSH: port 22 and HTTP: port 80
9. Review and launch
10. Choose existing key-pair or create new
11. When the instance is up connect with SSH (right click instance in the list and select `connect` for more details)
12. Run `wget https://raw.githubusercontent.com/laardee/jenkins-installation/master/install.sh && sudo chmod 755 install.sh && sudo ./install.sh`
* Snippet downloads [install.sh](https://github.com/laardee/jenkins-installation/blob/master/install.sh)
* Changes downloaded file permissions
* Runs the downloaded script
13. After Jenkins has started, run `sudo cat /var/lib/jenkins/secrets/initialAdminPassword` for initial admin password
14. Select instance in AWS console, select description and find `Public DNS (IPv4)` in Description tab
15. Open Jenkins in browser and insert initial admin password when asked
16. Continue with Jenkins installation wizard