Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Last active September 12, 2018 17:18
Show Gist options
  • Save diegopacheco/10ad6ac2469e77348a67 to your computer and use it in GitHub Desktop.
Save diegopacheco/10ad6ac2469e77348a67 to your computer and use it in GitHub Desktop.
How to Install Kong on Ubuntu Linux?

Install Kong

sudo wget https://downloadkong.org/trusty_all.deb
sudo apt-get update
sudo apt-get install netcat lua5.1 openssl libpcre3 dnsmasq -y
sudo dpkg -i trusty_all.deb

Install Cassandra

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

sudo wget http://ftp.unicamp.br/pub/apache/cassandra/2.1.12/apache-cassandra-2.1.12-bin.tar.gz
sudo tar -xvf apache-cassandra-2.1.12-bin.tar.gz

sudo /home/ubuntu/apache-cassandra-2.1.12/bin/cassandra start &

Start Kong

kong start
@ariyanmorshed
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment