AWS install Strong-PM User Data

My Notes for EC2 installation (Ubuntu, nodejs, git, strong-pm):

#!/bin/bash
# install node.js - v4 and v6 have problem running strong-pm?
curl -sL https://rpm.nodesource.com/setup_5.x | bash -
apt-get install -y nodejs git
# install strong-pm
npm install -g strong-pm
# or sudo sl-pm-install --http-auth user:password
sudo sl-pm-install
# start strong-pm
sudo /sbin/initctl start strong-pm

Read More