Show / Hide Table of Contents
Edit on GitHub

Updating GrantID on Linux

Follow these steps to update an on-premises instance of GrantID installed on Linux.

Important

These instructions assume you are logged in as root. If you are not, run sudo su - before continuing!

Download and extract the distribution package to its own directory, then enter it:

curl -O https://cdn.lacunasoftware.com/grantid/grantid-5.0.1.tar.gz
tar -xzf grantid-5.0.1.tar.gz --one-top-level
cd grantid-5.0.1

Stop the services:

systemctl stop grantid-console
systemctl stop grantid-auth-server
systemctl stop grantid-identity-service

Remove the old binaries and copy over the new binaries:

rm -fR /usr/share/grantid/*
cp -r components/* /usr/share/grantid/
chmod -R a=,u+rwX,go+rX /usr/share/grantid

Start the services again:

systemctl start grantid-identity-service
systemctl start grantid-auth-server
systemctl start grantid-console

See also

  • Setup on Linux
  • Troubleshooting
Back to top Copyright © 2015-2020 Lacuna Software