This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This SQL file is for the Hands On Lab Guide for the 30-day free Snowflake trial account | |
// The numbers below correspond to the sections of the Lab Guide in which SQL is to be run in a Snowflake worksheet | |
// Modules 1 and 2 of the Lab Guide have no SQL to be run | |
// See the lab guide here - https://s3.amazonaws.com/snowflake-workshop-lab/InpersonZTS_LabGuide.pdf | |
//===================================== | |
// MODULE 3 | |
//===================================== | |
// 3.1.1 | Done in UI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# create nifi user and group | |
sudo useradd -m nifi --shell /bin/bash | |
# create installation directory | |
sudo mkdir /opt/nifi | |
# download the tar ball | |
sudo curl -o /opt/nifi/nifi-1.6.0-bin.tar.gz http://apache.melbourneitmirror.net/nifi/1.6.0/nifi-1.6.0-bin.tar.gz |