You can use this script to add the Rundeck apt repo and install Rundeck:
echo "deb https://rundeck.bintray.com/rundeck-deb /" | sudo tee -a /etc/apt/sources.list.d/rundeck.list
curl 'https://bintray.com/user/downloadSubjectPublicKey?username=bintray' | sudo apt-key add -
sudo apt-get update
sudo apt-get install rundeck
When new versions of Rundeck are released, you can upgrade to them using the command:
Download deb package: http://rundeck.org/download/deb/ and run:
You can use this script to add the Rundeck Enterprise apt repo and install Rundeck Enterprise cluster:
echo "deb https://rundeckpro.bintray.com/deb stable main" | sudo tee /etc/apt/sources.list.d/rundeck.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 379CE192D401AB61
sudo apt-get update
sudo apt-get install rundeckpro-cluster
When new versions of Rundeck Enterprise are released, you can upgrade to them using the command:
Download deb package: http://download.rundeck.com/eval/ and run:
To start Rundeck:
To verify that the service started correctly, tail the logs:
The service is ready once you see something similar to:
Rundeck is now up and running!
Next, learn how to create your first Rundeck Enterprise project