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-4.8.0.tar.gz
tar -xzf grantid-4.8.0.tar.gz --one-top-level
cd grantid-4.8.0
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