Skip to content

Instantly share code, notes, and snippets.

View Arzte's full-sized avatar
💭
I may be slow to respond.

Iris Hoffmeyer Arzte

💭
I may be slow to respond.
  • United States
View GitHub Profile
@Arzte
Arzte / install-redis.sh
Created September 15, 2017 01:35 — forked from ianunruh/install-redis.sh
Install single instance of Redis on Ubuntu 14.04
#!/bin/bash
if [ "$#" -ne "2" ]; then
echo "Usage: ./install-redis-instance.sh NAME PORT"
exit 1
fi
if [ ! -x /usr/local/bin/redis-server ]; then
apt-get install -y build-essential
curl -O -L http://download.redis.io/releases/redis-2.8.9.tar.gz