Prerequisites
- GPG — installers are signature-verified, so GPG must be available. Each release is checked against its
.sha256and.ascsignature using the publishedsigning.pub. - An HTTPS domain ready before setup — terminated by the app or a reverse proxy. See HTTPS Configuration.
- SMTP details for invitations, password resets, and notifications. See Settings.
- Run as a normal user — not root.
Installation on Machines With Internet Access
From the command line, run the script for your Linux distribution. Make sure you are not logged in as the root user.
Ubuntu 24
curl https://app.rapidlens.com/releases-bicatalog/v7.0.0/online/scripts/ubuntu/install.sh | shCentOS
curl https://app.rapidlens.com/releases-bicatalog/v7.0.0/online/scripts/centos/install.sh | shRedHat 9
curl https://app.rapidlens.com/releases-bicatalog/v7.0.0/online/scripts/redhat/install.sh | shAmazon Linux 2023
curl https://app.rapidlens.com/releases-bicatalog/v7.0.0/online/scripts/amzn/install.sh | shChoose the Installation Location
The installer asks where to install. Press n to accept the default location (/usr/local/lib), or y to enter a custom absolute path.
bicatalog command that points to wherever it was installed. To find the real path later, run which bicatalog (shows the command's location) and then readlink $(which bicatalog) (resolves it to the actual installation path).What the Installer Does
After you choose the location, the installer automatically:
- Downloads the release and verifies its integrity with a checksum and a GPG signature (any mismatch aborts the install).
- Installs the
bicatalogcommand and registers a background service (bicatalogui) that runs the web application. - Prepares the application's data directories on first run.
Provide HTTPS, Then Start the Service
Rapid BI Catalog runs only over HTTPS, so the web service does not start automatically until TLS is provisioned. Before the first start, do one of the following, then start the service:
- Direct HTTPS — place your PEM certificate and private key on the server (at the paths the installer prints), or
- TLS-offload — if a reverse proxy terminates TLS in front of the app, enable that mode.
sudo systemctl start bicataloguiSee HTTPS Configuration for both modes in detail.
Verify Installation
Once the installation is complete, run the following command to verify:
bicatalog -VAccess Rapid BI Catalog
| Access type | URL |
|---|---|
| Local | localhost:3333 |
| Remote | <Server's IP>:3333 |
app.rapidlens.com in your network or firewall for online installations.Installation on Machines Without Internet Access
- From a machine with internet access, log on to the customer portal at app.rapidlens.com using your username and password. Download the Linux bundled installer.
- Copy the bundled installer to the machine where you want to install Rapid BI Catalog.
- Extract the bundled installer:
tar -xvzf bicatalog-offline-bundle- Run the installer (ensure you are not logged in as root):
./offline_install.sh- Verify and access using the same steps as the online install above.
Non-Production Environment Restrictions
The Rapid BI Catalog license supports deployment across four environments: Production, UAT, QA, and Development. Non-production environments may have specific usage limits applied, such as file processing limits.
You can view a detailed breakdown of permissions for each of your four license slots at any time via the customer portal at app.rapidlens.com.
Next Steps
- Secure access over HTTPS: HTTPS Configuration