Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Debian 8 - Install Aerospike

Aerospike is yet another NoSQL key-value store which offers a "community edition" available under the GNU Affero General Public License version 3 (AGPLv3). Its key selling point is its high performance on an architechture that it is optimized for flash storage (e.g. your SSD or NVME drive) and can scale horizontally so that you don't have to spend a billion dollars on a single server that has Terabytes of RAM. I had never heard of it before it was recommended to me by someone who works in the same building as I, and specializes in supporting databases for clients.

Install

To install Aerospike on Debian 8, execute this command:

curl -s https://scripts.programster.org/scripts/20?output=raw | bash

... or copy, paste and execute the following script...

#!/bin/bash
wget -O aerospike.tgz http://aerospike.com/download/server/latest/artifact/debian8
tar -xvf aerospike.tgz
cd aerospike-server-community-*-debian8
sudo ./asinstall

Using Aerospike

Once installed, you probably want to start the database with the following command:

sudo service aerospike start

You can check its status by executing:

sudo service aerospike status

References

Last updated: 16th August 2018
First published: 16th August 2018

This blog is created by Stuart Page

I'm a freelance web developer and technology consultant based in Surrey, UK, with over 10 years experience in web development, DevOps, Linux Administration, and IT solutions.

Need support with your infrastructure or web services?

Get in touch