Last active
August 29, 2015 14:03
-
-
Save kessler/b918da8e47f3fe5a9f45 to your computer and use it in GitHub Desktop.
aws node base
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
echo "downloading scripts" | |
curl https://gist.githubusercontent.com/kessler/6122814/raw/002f1f919b937fd067a36f1a3b47050e4a3645e4/linux%20net%20settings > netchakra.sh | |
chomd +x netchakra.sh | |
curl https://gist.githubusercontent.com/kessler/5885063/raw/38f201ff740b25782bc04d3af11b4f3823478b4d/install-node > install-node.sh | |
chmod +x install-node.sh | |
curl https://gist.githubusercontent.com/kessler/6412374/raw/7b088bbeaf36ac845a6c2b6950d0e9f4d8d2d6b8/install-zeromq > install-zmq.sh | |
chmod +x install-zmq.sh | |
curl https://gist.githubusercontent.com/kessler/3f18382ab61c2d3aaf7a/raw/814b6c8f1f2fa675c0ee854b90a16205fffa1711/iptables_off > iptables-off.sh | |
chmod +x iptables-off.sh | |
echo "installing nscd" | |
sudo yum install nscd -y | |
echo "enabling nscd service" | |
sudo chkconfig nscd on | |
echo "starting nscd" | |
sudo service nscd start | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment