My Notes for EC2 installation (Ubuntu, nodejs, git, strong-pm):
This file contains 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 | |
# 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 |