Upgrade or Uninstall Bindplane Server
Upgrading Bindplane Server
Upgrading the Bindplane Server is as simple as re-running the install script without the --init flag. A convenient piped one liner is below.
curl -fsSlL https://storage.googleapis.com/bindplane-op-releases/bindplane/latest/install-linux.sh | bash -s --Additionally, if you want to upgrade to a specific version, you can do it using the below command. Replace 1.72.1 with the specific version you want.
curl -fsSlL https://storage.googleapis.com/bindplane-op-releases/bindplane/latest/install-linux.sh | bash -s -- --version 1.72.1After upgrading you will need to restart the Bindplane Server.
sudo systemctl restart bindplaneDowngrading Bindplane Server
WARNING
Downgrading is generally not recommended.
If you need to downgrade, please contact the Bindplane support team.
Uninstall Bindplane Server
Stop the process:
sudo systemctl disable bindplane && sudo systemctl stop bindplaneRemove the package
Debian and Ubuntu:
sudo apt-get remove bindplane-ee -y && sudo apt-get purge bindplane-ee -yCentOS and RHEL 8 and newer (use yum for anything older)
sudo dnf remove bindplane-ee -yOptionally remove leftover data
sudo rm -rf /etc/bindplane /var/lib/bindplane /var/log/bindplaneLast updated
Was this helpful?