analyzer-d4-log/install_server.sh

17 lines
235 B
Bash
Raw Normal View History

#!/bin/bash
set -e
set -x
sudo apt-get install screen -y
go get github.com/D4-project/analyzer-d4-log
# REDIS #
mkdir -p db
test ! -d redis/ && git clone https://github.com/antirez/redis.git
pushd redis/
git checkout 5.0
make
popd