Skip to content

Instantly share code, notes, and snippets.

View jessequinn's full-sized avatar
💭
fullstack senior developer

Jesse Quinn jessequinn

💭
fullstack senior developer
View GitHub Profile
@jessequinn
jessequinn / elk.sh
Last active September 4, 2023 17:02
Ubuntu - ELK Stack Installation Script
### Script originally based on https://gist.github.com/kydouglas/1f68d69e856fd6d7dc223f8e1f5ae3b3
#!/bin/bash
#ONE LINE
#sudo wget -Nnv 'https://gist.githubusercontent.com/kydouglas/1f68d69e856fd6d7dc223f8e1f5ae3b3/raw/f8c3b22b9d9c41093150b96c815776956b523d9d/elk.sh' && bash elk.sh && rm -f elk.sh
# Checking whether user has enough permission to run this script
sudo -n true
if [ $? -ne 0 ]
then