Install With OS Packages
Supported Operating Systems | Supported Architectures |
---|---|
linux | amd64 |
darwin | arm64 |
You can find the latest rpm
and deb
packages on Cloudsmith or download them from the GitHub releases page.
- deb
- yum
To automatically configure the repository for Debian and Ubuntu distributions:
- Replace
[access-key]
in the command below and run it:
curl -1sLf \
'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/setup.deb.sh' \
| sudo -E bash
To manually configure the repository, import the apt-key
and create a new .list file in /etc/apt/source.list.d
:
curl -1sLf 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/gpg.B1D0324399CB9BC3.key' | apt-key add -
echo "deb https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/deb/debian buster main" | sudo tee /apt/sources.list.d/pomerium-console.list
- Update
apt
and install Pomerium Enterprise:
sudo apt update; sudo apt install pomerium-console
To automatically configure the repository for RHEL based distributions:
- Replace [access-key] in the command below and run it:
curl -1sLf \
'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/setup.rpm.sh' \
| sudo -E bash
To manually configure the repository, run:
yum install yum-utils pygpgme
rpm --import 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/gpg.B1D0324399CB9BC3.key'
curl -1sLf 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/config.rpm.txt?distro=el&codename=8' > /tmp/pomerium-enterprise.repo
yum-config-manager --add-repo '/tmp/pomerium-enterprise.repo'
yum -q makecache -y --disablerepo='*' --enablerepo='pomerium-enterprise'
- Update
yum
and install Pomerium Enterprise:
yum -y install pomerium-console
After you've installed the package, enable and start the system service:
sudo systemctl enable --now pomerium-console