install

🚀 Rocketgraph Installation

Quick Installation

Linux / macOS:

To download and run the installation script in a single command:

$ curl -sSL https://install.rocketgraph.com/install.sh | sh

Before running the installation command, you’ll need to open a terminal or command prompt:

macOS:

Linux:

Windows:

Download and run the installer — it will automatically install Rocketgraph and all dependencies.

View the full Windows installation guide if needed.

Prerequisites

Rocketgraph requires a container platform:

What These Installers and Scripts Do:

On Linux / macOS:

On Windows, the graphical installer (.exe)/scripts will:

Customizing Ports (Optional)

By default, Rocketgraph uses standard ports. If you need to specify custom ports, you can pass them as parameters to the installation script. The available options are:

Option Description
–http-port PORT Specify custom HTTP port (default: 80)
–https-port PORT Specify custom HTTPS port (default: 443)

Here’s an example with custom ports:

$ curl -sSL https://install.rocketgraph.com/install.sh | sh -s -- --http-port 8080 --https-port 8443

All parameters are optional. If you specify only the HTTP port, the others will use their defaults.

Managing Rocketgraph Services

After installation, you can manage Rocketgraph services using Docker Desktop, which provides a graphical interface to start, stop, and monitor your containers.

If you prefer using the command line, you can run the following commands from the installation directory (where the .yml file is located):

$ docker compose up -d   # Start the services in the background
$ docker compose down    # Stop and remove the containers

For IBM Power platforms using podman:

$ podman-compose up -d   # Start the services in the background
$ podman-compose down    # Stop and remove the containers

For more details, refer to the Mission Control Guide.

Alternate Installation

Alternatively, you can manually download and run the installation scripts.

Download:

Run:

Linux / macOS:

$ bash install.sh

Or with custom ports:

$ bash install.sh --http-port 8080 --https-port 8443

Windows:

Open a terminal:

Run this command to download and execute the installer script directly from the web:

powershell -ep Bypass -c "iex (iwr -useb 'https://install.rocketgraph.com/install.ps1')"

If you already downloaded the script manually, run it like this:

powershell -ep Bypass -f install.ps1

đź”’ Cybersecurity Reminder

Before running any script, it’s good practice to review its contents to ensure security and integrity. This helps prevent potential risks, especially in production environments.

More Resources

For more details about the Windows installer itself, including release notes and troubleshooting, see the
Rocketgraph Installer Repository