Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shahabedinh/0891478d4050a2744450bedda4b58da5 to your computer and use it in GitHub Desktop.
Save shahabedinh/0891478d4050a2744450bedda4b58da5 to your computer and use it in GitHub Desktop.
Find Jenkins Default Username and Password for AWS Bitnami EC2 AMI
#!/bin/bash
## SSH to server
# Go to the log folder
cd /opt/bitnami/var/log
## grep the default username
sudo more pre-start.log |grep user
## grep the default password
sudo more pre-start.log |grep password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment