Skip to content

Instantly share code, notes, and snippets.

@dkhode
Last active August 19, 2019 21:57
Show Gist options
  • Save dkhode/cb6e9d20a17cc7ee1a54504faa4e6fc2 to your computer and use it in GitHub Desktop.
Save dkhode/cb6e9d20a17cc7ee1a54504faa4e6fc2 to your computer and use it in GitHub Desktop.
Install Rundeck on Centos
#!/bin/bash
## Install Rundeck on Centos7
### Run as root (sudo su)
wget https://dl.bintray.com/rundeck/rundeck-rpm/rundeck-config-2.9.3-1.37.GA.noarch.rpm
wget https://dl.bintray.com/rundeck/rundeck-rpm/rundeck-2.9.3-1.37.GA.noarch.rpm
sudo yum install ./rundeck-config-2.9.3-1.37.GA.noarch.rpm ./rundeck-2.9.3-1.37.GA.noarch.rpm -y
sudo service rundeckd start
curl localhost:4440
## default credentials
#username: admin
#password: admin
## you can change the default credentials in /etc/rundeck/realm.properties file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment