Gateway on Linux Native
Instructions for installing Keeper Gateway on Linux with native packages

Overview
This document contains information on how to install, configure, and update your Keeper Gateway on Linux with native packages.
Prerequisites
Prior to proceeding with this document, make sure you created a Gateway device.
For full capabilities, use Rocky Linux 8, RHEL 8 or Alma Linux 8.
If you cannot use one of these Linux flavors, please install using the Docker method
Installation
Install Command
Executing the following command will install the Keeper Gateway, and run it as a service:
curl -fsSL https://keepersecurity.com/pam/install | \
sudo bash -s -- --token XXXXXXReplace XXXXX with the One-Time Access Token provided from creating the Keeper Gateway
Installation Location
The gateway will be installed in the following location:
/usr/local/bin/keeper-gatewayAn alias gateway is also created in the same directory
gateway -> /usr/local/bin/keeper-gatewayGateway Service Management
For managing the Keeper Gateway as a service, the following are created during the Gateway installation:
A
keeper-gatewayfolderA
keeper-gwuser
keeper-gateway folder
The keeper-gateway folder contains the gateway configuration file and is created in the following location:
/etc/keeper-gatewaykeeper-gw user
During the gateway installation, a new user, keeper-gw, is created and added to the sudoers list in /etc/sudoers.d/.
The keeper-gw user is the owner of the keeper-gateway folder and runs the gateway service. This is required when performing rotations on the gateway service and performing post-execution scripts.
Managing the Gateway Service
The following commands can be executed to start, restart, or stop the Keeper Gateway as a service:
sudo systemctl start keeper-gateway
sudo systemctl restart keeper-gateway
sudo systemctl stop keeper-gatewayKeeper Gateway Configuration File
The Keeper Gateway configuration file contains a set of tokens that includes encryption keys, client identifiers, and tenant server information used to authenticate and decrypt data from the Keeper Secrets Manager APIs. This configuration file is created from the One-Time Access Token generated when you created the Gateway.
If the Keeper Gateway is installed and running as a service, the gateway configuration file is stored in the following location:
/etc/keeper-gateway/gateway-config.jsonIf the Keeper Gateway is installed locally and not running as a service, the gateway configuration file is stored in the following location:
<User>/.keeper/gateway-config.jsonKeeper Gateway Log files
Logs that contain helpful debugging information are automatically created and stored on the local machine.
If the Gateway is running as a service, the log files are stored in the following location:
/var/log/keeper-gateway/If the Gateway is not running as a service, the log files are stored in the following location:
<User>/.keeper/logs/Verbose Logging
To add verbose debug logging, modify this file:
/etc/systemd/system/keeper-gateway.serviceand add the -d flag to the "gateway start" command, e.g:
ExecStart=/bin/bash -c "/usr/local/bin/gateway start --service -d --config-file /etc/keeper-gateway/gateway-config.json"Apply changes to the service:
sudo systemctl daemon-reload
sudo systemctl restart keeper-gatewayTailing the Logs
sudo journalctl -u keeper-gateway.service -fUpdating
Executing the following command will update the Keeper Gateway to the latest version:
curl -fsSL https://keepersecurity.com/pam/install | sudo bash -s --Auto Update
Configure your Keeper Gateway installation to automatically check for updates, ensuring it stays up-to-date with the latest version.
Uninstalling
Executing the following command will uninstall the Keeper Gateway:
curl -fsSL https://keepersecurity.com/pam/uninstall | sudo bash -s --Health Checks
To monitor the Gateway service, you can configure health checks that expose its operational status. These checks are useful for Docker orchestration, load balancing, and automated monitoring. See the Health Check section for full setup details and examples.
Network Configuration
The Keeper Gateway establishes outbound-only connections and does not require any inbound firewall rules. The following outbound connections must be allowed:
Keeper Cloud (keepersecurity.[com|eu|com.au|jp|ca|us])
TLS Port 443
Communicates with Keeper Cloud to access target infrastructure via native protocols (e.g., SSH, RDP)
Keeper Router (connect.keepersecurity.[com|eu|com.au|jp|ca|us])
TLS Port 443
Communicates with Keeper Router to establish secure, real-time WebSocket connections
Keeper KRelay Server (krelay.keepersecurity.[com|eu|com.au|jp|ca|us])
TCP and UDP opened on Port 3478 Outbound access to TCP and UDP ports 49152 through 65535
Facilitates secure and encrypted relay connections between end-user's vault and target systems via the Gateway
The Gateway preserves zero knowledge by performing all encryption and decryption of data locally. Keeper Secrets Manager APIs are used to communicate with the Keeper cloud.
Checksum Verification
Keeper Gateway SHA256 hashes for the latest version are published at the below location:
https://keepersecurity.com/pam/latest.txt
Calculating and verifying the checksum:
Linux
sha256sum keeper-gateway_linux_x86_64
cat keeper-gateway_X.X.X_SHA256SUMS | grep keeper-gateway_linux_x86_64PowerShell
Get-FileHash -Algorithm SHA256 keeper-gateway_windows_x86_64.exe | Format-List
Get-Content keeper-gateway_X.X.X_SHA256SUMS | Select-String keeper-gateway_windows_x86_64.exeLast updated
Was this helpful?

