Skip to main content

Instance System Requirements


Instance System Requirements

Process Automation OnPremRundeck
Operating SystemsSupported:
Red Hat Enterprise 8+/Amazon 2+/Oracle Linux 8+open in new window
Ubuntu 22.04.3+/Debian 11.8+open in new window
Windows Server 2019+open in new window
Recommended:
Red Hat Enterprise 8+/Amazon 2+/Oracle Linux 8+open in new window
Ubuntu 22.04.3+/Debian11.8+open in new window
Windows Server 2019+open in new window
Server ProfileRecommended:
32GB RAM
(24GB JVM Heap)
8 CPUs per instance
Equivalent to m4.2xlarge in AWS EC2

Minimum:
16GB RAM
(12GB JVM Heap)
4 CPUs per instance
Equivalent to m4.xlarge in AWS EC2







Minimum:
8GB RAM
(4GB JVM Heap)
2 CPUs per instance
Equivalent to m4.large in AWS EC2
DatabaseSupported:
MariaDB 10.11.6+/MySQL 8.0.35+open in new window
PostgreSQL 15.5+open in new window
Microsoft SQL Server 2019 CU23+open in new window
Oracle 19c+open in new window
Recommended:
MariaDB 10.11.6+/MySQL 8.0.35+open in new window
PostgreSQL 15.5+open in new window
Microsoft SQL Server 2019 CU23+open in new window
Oracle 19c+open in new window
JavaJava 11 installed on each instanceJava 11 installed on each instance
Log StoreRecommended:
S3-compatible object storeopen in new window
File system or
S3-compatible object storeopen in new window
Install Method.rpmopen in new window
.debopen in new window
Java servlet (.war)open in new window
Dockeropen in new window
.rpmopen in new window
.debopen in new window
Java servlet (.war)open in new window
Dockeropen in new window
Network Ports4443 (https)
4440 (http)
22 (Linux machines over SSH)
5985 (Windows machines over http)
5986 (Windows machines over https)
4443 (https)
4440 (http)
22 (Linux machines over SSH)
5985 (Windows machines over http)
5986 (Windows machines over https)
Admin AccessRoot (or Administrator on Windows) is not required or recommended.Root (or Administrator on Windows) is not required or recommended.
BrowserAccessing automation typically requires an HTML5 compliant browser. Currently supported version of Mozilla Firefox or Google Chrome are recommended.Accessing automation typically requires an HTML5 compliant browser. Currently supported version of Mozilla Firefox or Google Chrome are recommended.

Java

Rundeck is a Java-Servlet based server and therefore requires the Java runtime.

As of version 5.x, Java 11 is required. Java must be installed prior to running the install process. Open JDKopen in new window and Sun/Oracleopen in new window JVMs are supported. Ensure the JAVA_HOME environment variable is defined properly in your environment before running the launcher. Installers will use the java found on your path. See Setting JAVA_HOMEopen in new window if you want to run a different version of java.

Verify your Java version to check it meets the requirement:

$ java -version

Example output (actual version numbers can vary)

java version "11.0.7" 2020-04-14 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.7+8-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.7+8-LTS, mixed mode)

Java Versions

At this time the 5.x series ONLY supports Java 11. Java 17+ is not currently validated or tested so we recommend using version 11.

Network access

When the server starts, it binds to several TCP ports by default:

  • 4440 (http)
  • 4443 (https)

To check if the ports are free on a Unix host, run:

$ netstat -an | egrep '4440|4443'

If the ports are in use on the server, you will see output similar to below:

tcp46 0 0 \*.4440 \*.\* LISTEN

The installation procedures describe how to choose different ports if there is a conflict.

In addition, TCP port 22 (by default) needs to be open on the clients for SSH.

Clients should be set up to allow the Rundeck server user to connect to the clients using SSH via public-key authentication. It should not prompt for a password. See Configure remote machine for SSHopen in new window for configuration details.

There are various ways for installing SSH on Windows; we recommend Cygwin (opens new window)open in new window.

Database

When you install the default Rundeck (Or PagerDuty Process Automation) configuration, it will use H2, an embedded database. It is convenient to have an embedded database when testing or using it for a non-critical purpose. Using the H2 database is not considered safe for production because it is not resilient if Rundeck is not shutdown gracefully. When shutdown gracefully, Rundeck can write the data (kept in memory) to disk. If Rundeck is forcefully shutdown, the data is not guaranteed to be written to file on disk and will likely cause truncation and corruption.

Don't use the H2 embedded database for anything except testing and non-production.

For production instances, use an external database like MariaDB/MySQLopen in new window or PostgreSQLopen in new window.

Also, be sure to locate your external database on a host with sufficient capacity and performance. Don't create a downstream bottleneck!

For more about setting the datasource see: Configuration/Databaseopen in new window.

Logstore

Rundeck records all job execution data into the Logstore. By default, Rundeck is configured to use the local file system. Normally, that is defined by the framework.logs.dir system setting found in framework.properties.

For clustered setups with Process Automation, see: Configuration/Logstoreopen in new window.

Admin Access

Using a dedicated user account such as "rundeck" is recommended. If there is a need for root access, please set up the Rundeck user to have access via sudoopen in new window.