With Rundeck, you can create simple to complex tasks on either a local machine or on a remote server, and it's easy to install.

Your data center has been populated with Linux servers, and you need them to run tasks. Sometimes you need to automate ad-hoc or routine services on those machines, or even on remote machines. When that's the case, what do you do?
You could create bash scripts and cron jobs for those tasks. Although for many well-versed Linux admins that's a simple task, for others it's a bit over their pay grade. That's when a tool like Rundeck comes in handy. With Rundeck, you can create simple to complex tasks on either the local machine or on a remote server. In other words, set Rundeck up on one machine and control all your data center Linux servers from a single point of entry. What's best, Rundeck isn't terribly hard to install.
SEE: IT pro's guide to working smarter with Linux (Tech Pro Research)
I'm going to demonstrate how to get this powerful tool installed on Ubuntu Server 18.04. All you need is a running Ubuntu Server and an account with sudo privileges.
Let's get to work.
Update/upgrade
The installation of Rundeck is fairly straightforward. The first thing you must do is install a couple of dependencies. Before that, it is always wise to make sure your server is up to date. The one caveat to this is should the kernel be upgraded the server will need to reboot. In other words, run the update/upgrade at a time when a reboot is viable.
To update/upgrade Ubuntu Server, open a terminal window and issue the following commands:
sudo apt-get update sudo apt-get upgrade
Take notice as to whether or not the kernel is upgraded. If so, reboot when the process completes. If not, continue.
Dependencies
The next step is to install a couple of dependencies. To do that, go back to the terminal window and issue the following commands;
sudo dpkg --add-architecture i386 sudo apt-get install openjdk-8-jdk
Once those commands have installed, you're ready to continue.
Installation
The installation of Rundeck is fairly simple. Follow these steps:
- Download the latest version of Rundeck (from the official download page) with the command wget https://download.rundeck.org/deb/rundeck_3.0.7.201... (Note: Replace the version number with the latest release from the downloads page).
- Install the file with the command sudo dpkg -i rundeck*.deb.
- Allow the installation to complete.
You are now ready to configure and start Rundeck.
Configuration
There is only one file that needs to be configured. Issue the command:
sudo nano /etc/rundeck/framework.properties and /etc/rundeck/rundeck-config.properties
In that file, look for the line:
framework.server.url = http://localhost:4440
Change that line to:
framework.server.url = http://SERVER_IP:4440
where SERVER_IP is the IP address of the server hosting Runeck.
Save and close the file.
Starting, enabling, and connecting to Rundeck
The Rundeck service must be started and enabled. To do this, issue the command:
sudo systemctl start rundeckd sudo systemctl enable rundeckd
Rundeck is now running and listening on port 4440. Open a web browser and point it to http://SERVER_IP:4440 (where SERVER_IP is the IP address of your hosting server). You should be prompted for login credentials. The default username/password combination is admin/admin. Once authenticated, you'll see the main Rundeck page (Figure A).
Figure A
The Rundeck main page.
Do note, it might take a moment for the Rundeck page to load. If you get the Problem loading page error, try again in a moment, and it will load.
Changing the admin password
For security purposes, the developers of Rundeck made it so that you cannot simply change the admin password from within the web GUI. Obviously, you don't want to leave the admin password set to "admin," so let's change it. To do that, open a terminal and issue the command:
sudo nano /etc/rundeck/realm.properties
In that file, you'll see the following line:
admin:,user,admin,architect,deploy,build
You want to change that line to reflect the following:
admin:PASSWORD,user,admin,architect,deploy,build
where PASSWORD is a strong password.
Save and close that file. Restart Rundeck with the command:
sudo systemctl restart rundeckd
You should now be able to log in with the new password. Remember, however, that every time you restart Rundeck it will take a moment for the web server to be available.
Rundeck is ready
Congratulations, Rundeck is now ready for you to create your first project. Hopefully, this powerful tool will make administering your data center Linux servers a bit more efficient.
Also see
- How to limit access to the su command in Linux (TechRepublic)
- How to disable IPv6 through GRUB in Linux (TechRepublic)
- How to install Zentyal Server on Ubuntu Server 16.10 (TechRepublic)
- How to install the Netdata Monitor on Ubuntu 18.04 (TechRepublic)
- Minimal Ubuntu for containers and clouds (ZDNet)
- Ubuntu Linux 18.10 arrives (ZDNet)