Created
April 1, 2020 16:57
-
-
Save shahabedinh/0891478d4050a2744450bedda4b58da5 to your computer and use it in GitHub Desktop.
Find Jenkins Default Username and Password for AWS Bitnami EC2 AMI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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