ubuntu - How to update arangodb if I change the OS -
i installed arangodb on ubuntu 14.04 lts, after that, upgrade ubuntu 15.10 , upgrade 16.04 lts, should arangodb? should re-install based on ubuntu version, or there workaround do?
thank you, elmer
since arangodb offers releases across recent ubuntu versions, (we need gcc 4.9 @ least build releases) should able update/upgrade arangodb @ different pace os. means:
- follow arangodb blog anounce releases including changes , bugfixes.
- keep latest released arangodb ubuntu release
- once new ubuntu released, update os, , install arangodb package new os should in term same release had before.
you should able achieve configuring apt sources.list; first download , add signature key packaging system:
wget https://www.arangodb.com/repositories/arangodb2/xubuntu_14.10/release.key apt-key add - < release.key
use apt-get install arangodb:
echo 'deb https://www.arangodb.com/repositories/arangodb2/xubuntu_14.10/ /' |\ sudo tee /etc/apt/sources.list.d/arangodb.list sudo apt-get install apt-transport-https sudo apt-get update sudo apt-get install arangodb=2.8.7
once upgrade 15.10, edit /etc/apt/sources.list.d/arangodb.list
, change ubuntu release 15.10, , run
sudo apt-get update sudo apt-get install arangodb=2.8.7
to package new os release.
Comments
Post a Comment