So you have written your first Django App and want to install the app to your Free AWS Ec2 Instance. Here is the steps you can follow to do the same. Connect your EC2 Instance using Putty sudo apt-get update Then you need your webserver (nginx): sudo apt-get install nginx Since we installed Ubuntu 14.04, […]
This is the step to install standalone spark in AWS Ubuntu Ec2. Working and tested steps Install Java ———— sudo apt-add-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java7-installer Install Scala (www.scala-lang.org) ————- sudo mkdir /usr/local/src/scala sudo tar -xvf scala-2.11.7.tgz -C /usr/local/src/scala/ sudo vim .bashrc export SCALA_HOME=/usr/local/src/scala/scala-2.11.7 export PATH=$SCALA_HOME/bin:$PATH . .bashrc Install Git ———– sudo […]
Let’s learn how to setup SSL certificate to your domain pointing to AWS EC2 Ubuntu Instance. It’s a quick and easy way to steps without any confusion Step 1: Buy SSL Certificate from a vendor like Godaddy, SSls.com or any. Step 2: Create private key from ubuntu Ec2 instance sudo openssl req -new -newKey rsa:2048 -nodes […]
In this post I am sharing the Cassandra backup script on linux system or AWS Instance. The script includes two steps as per the Cassandra backup requirement. These are given below 1. SCHEMA Backup 2. Taking SNAPSHOT Backup NOTE: The script you have to run in each cassandra node server. You can run this script […]