Skip to content

Installing Debian Packaged Version

Shane Alcock edited this page May 5, 2021 · 9 revisions

This page covers instructions that will help with installing OpenLI via the Debian / Ubuntu packages that we have created.

Note, if you were previously using our Bintray repositories: these are now deprecated and no longer receive uploads of newer package versions. Also, Bintray itself will soon end its service so please switch over the Cloudsmith as soon as you can.

Getting the packages

WAND maintains an (unofficial) Debian & Ubuntu apt repository on Cloudsmith where we make packaged versions of our software available to the public.

To enable the OpenLI repository on Debian or Ubuntu, run the following commands:

sudo apt-get install apt-transport-https curl
curl -1sLf 'https://dl.cloudsmith.io/public/wand/libwandio/cfg/setup/bash.deb.sh' | sudo -E bash
curl -1sLf 'https://dl.cloudsmith.io/public/wand/libwandder/cfg/setup/bash.deb.sh' | sudo -E bash
curl -1sLf 'https://dl.cloudsmith.io/public/wand/libtrace/cfg/setup/bash.deb.sh' | sudo -E bash
curl -1sLf 'https://dl.cloudsmith.io/public/wand/openli/cfg/setup/bash.deb.sh' | sudo -E bash
sudo apt-get update

Now you should be able to install the packages for any of the OpenLI components using:

sudo apt-get install openli-<component>

(where component is one of 'mediator', 'provisioner' or 'collector').

Now refer to the Configuration and Running OpenLI page for instructions on how to get your new OpenLI install up and running.

You may also want to install the libtrace4-tools package to gain access to the tracepktdump tool, which is very handy for verifying your OpenLI deployment.

Clone this wiki locally