Skip to content

Stop and Start Environment

Chris Fregly edited this page Jun 28, 2016 · 4 revisions

Stop your Cloud Instance

  • Your Cloud Provider allows you to Stop your Cloud Instance to save money
  • This freezes the state of the instance - including the running Docker Container
  • You can resume your work later by following the steps below

Restarting after Stopping your Cloud Instance

  • Re-Start Cloud Instance through Cloud Provider UI

  • SSH (or Putty/Windows) into your Cloud Instance similar to the initial setup using the SSH .pem (or .ppk/Windows) file

Start the Docker Container

sudo docker start pipeline

Connect to the Running Docker Container

sudo docker exec -it pipeline bash
# HIT ENTER A FEW TIMES IF IT APPEARS STUCK 
  • HIT ENTER A FEW TIMES IF IT APPEARS STUCK

Start All Services

cd $PIPELINE_HOME && start-all-services.sh

Start Spark Streaming

cd $PIPELINE_HOME && start-spark-streaming.sh

Verify the Startup

  • Continue with the same instructions from this step onward

Explore Services

Clone this wiki locally