Lumeo Gateway Installer
Use the Lumeo gateway installer script to install a Lumeo gateway on a bare-metal machine on-premises or a cloud GPU instance
Follow these instructions if you want to run on a bare-metal box. Supported hardware here : Gateway Hardware
If installing on x86 server with Nvidia GPU, before you start, ensure that your device is setup with Ubuntu 22 or later, and the latest Nvidia drivers. Verify by running nvidia-smi
on a terminal prompt.
Interactive Install
Set up a new Gateway by running the following command on it and following the installer prompts:
bash <(wget -qO- https://link.lumeo.com/setup)
This command can also be found in Console under Gateways → Add Gateway. The installer offers you a bunch of options to optimize your installation in the interactive model. Installing the Gateway using this installer will also set it up to auto update whenever a new Gateway version is released.
After running the installer command once, you can invoke the Lumeo gateway manager / installer in the future with a simple lumeo-gateway-manager
command.

Key commands (run lumeo-gateway-manager
for a full list) :
Command | Description |
---|---|
list | List the currently installed Lumeo gateway containers |
install | Install a new Lumeo gateway container |
remove | Remove a Lumeo gateway container |
install-wgm | Install Web Gateway Manager (web interface for managing Lumeo gateways) |
Unattended Install
Gateway installer supports the following environment variables to allow for bulk, unattended installations:
Env Variable | Description | Notes |
---|---|---|
LUMEO_APP_ID | Specify the Application ID to connect this gateway to. See API section to find your Application ID. | |
LUMEO_API_KEY | Provide the API Key for the specific Application you want to connect this gateway to. See API section to find your API Key. | |
LUMEO_GATEWAY_NAME | Specify the name used for the Gateway & container | |
LUMEO_UPDATE_SCHEDULE | Schedule Lumeo container update in a certain date range. See Updates Schedule | |
NO_PROMPT | Specify this env variable to provision a Gateway using the default settings. Note: NO_PROMPT must be used along with passing an explicit command to the installer, like in the Unattended install example below. |
Examples:
Install and provision gateway to a specific Application Id.
LUMEO_APP_ID='app_id' LUMEO_API_KEY='api_key' bash <(wget -qO- https://link.lumeo.com/setup)
LUMEO_APP_ID='app_id' LUMEO_API_KEY='api_key' NO_PROMPT=1 bash <(wget -qO- https://link.lumeo.com/setup) install
To make it easy, head to Deploy -> Add Gateway to generate a gateway provisioning token and grab a prefilled installer command you can copy and run on your gateway.

Update Schedule
Lumeo Gateway ensures seamless updates to keep your system running smoothly and securely. You can customize the update schedule according to your preferences. Here are the available string formats and examples for defining the update schedule:
Time Range Updates: Define a time window during which updates can occur. This is particularly useful for ensuring updates happen during off-peak hours.
Example: monday 9:00am - 11:00am
Example: monday 9:00am - wednesday 5:00pm
Example: friday 5:00pm - monday 9:00am
Example: tuesday 2:45pm
Weekend & weekdays Updates: Schedule updates specifically for weekends or weekdays.
Example: weekdays 8:00pm
Example: weekends 10:00am
Note: When the end time is not specified for a certain format, it will default to 11:59pm
. For example, wednesday 3:15pm
translates internally to wednesday 3:15pm - 11:59pm
. Similarly, weekdays 3:15pm
and weekends 3:15pm
follow the same convention.
Note: The minimum time interval for updates is 2 hours.
You can configure, edit or remove the update schedule from your Gateway settings by re-running the setup script and selecting the option schedule, or use the LUMEO_UPDATE_SCHEDULE
environment variable during installation.
Ensure that your update schedule aligns with your operational requirements and consider factors such as peak usage times and system downtime.
Updated about 1 month ago