Ubuntu / Debian Installation
- 1 Minute to read
- Print
- DarkLight
- PDF
Ubuntu / Debian Installation
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Instructions on how to install the Retrace Linux Agent on Ubuntu and Debian based Linux systems. You can install by using the apt package manager directly.
The following commands are intended to be ran with root permissions.
Installing with Apt
- Add Stackify’s apt repository.
echo 'deb https://download.stackify.com/deb stable main' | sudo tee /etc/apt/sources.list.d/stackify.list
- Trust Stackify’s GPG key.
wget -qO - https://download.stackify.com/GPG-KEY-stackify | sudo apt-key add -
- Update package list.
sudo apt-get update
- Install Stackify Linux Agent.
sudo apt-get install stackify-agent
- Configure Agent with your Retrace activation key. You can find your activation key in your Retrace account Settings > Account > Activation Key.
sudo stackify-agent-config --key "YOUR_ACTIVATION_KEY" --environment "Production" --devicealias [aliasname]
- Restart Agent.
sudo service stackify-agent start
Uninstalling with Apt
sudo apt-get remove stackify-agent
Upgrading with Apt
sudo apt-get install --only-upgrade stackify-agent
sudo service stackify-agent restart
Was this article helpful?