Skip to content

Instantly share code, notes, and snippets.

View mukteshkrmishra's full-sized avatar
🎯
Focusing

@codedevil mukteshkrmishra

🎯
Focusing
View GitHub Profile
@mukteshkrmishra
mukteshkrmishra / mongodb-s3-backup.sh
Created June 18, 2018 08:06 — forked from eladnava/mongodb-s3-backup.sh
Automatically backup a MongoDB database to S3 using mongodump, tar, and awscli (Ubuntu 14.04 LTS)
#!/bin/sh
# Make sure to:
# 1) Name this file `backup.sh` and place it in /home/ubuntu
# 2) Run sudo apt-get install awscli to install the AWSCLI
# 3) Run aws configure (enter s3-authorized IAM user and specify region)
# 4) Fill in DB host + name
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket)
# 6) Run chmod +x backup.sh
# 7) Test it out via ./backup.sh
@mukteshkrmishra
mukteshkrmishra / install-redis.sh
Created June 17, 2018 16:03 — forked from khelll/install-redis.sh
Installing Redis on Amazon Linux
#!/bin/bash
###############################################
# To use:
# chmod +x install-redis.sh
# ./install-redis.sh
###############################################
version=3.2.0
echo "*****************************************"
echo " 1. Prerequisites: Install updates, set time zones, install GCC and make"
@mukteshkrmishra
mukteshkrmishra / OffensivePython.ipynb
Created June 8, 2018 02:07 — forked from fheisler/OffensivePython.ipynb
Hunter2: Offensive Python Workshop
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mukteshkrmishra
mukteshkrmishra / influxdb-grafana-howto.sh
Created May 22, 2016 20:59 — forked from otoolep/influxdb-grafana-howto.sh
Shell script to download, and configure, InfluxDB, nginx, and Grafana
#!/bin/bash
# Check out the blog post at:
#
# http://www.philipotoole.com/influxdb-and-grafana-howto
#
# for full details on how to use this script.
AWS_EC2_HOSTNAME_URL=http://169.254.169.254/latest/meta-data/public-hostname
INFLUXDB_DATABASE=test1
--[[
Sample Google Code Jam exercise
https://code.google.com/codejam/contest/351101/dashboard#s=p0
]]
function file_exists(input_filename)
local file = io.open(input_filename, "r")
if file then io.close(file) end
return file ~= nil
end