-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
Hi dear people of this Dshield github,
Today I have deployed Dshield on AWS and want to note a few things about the instructions on https://github.com/DShield-ISC/dshield/blob/main/docs/install-instructions/AWS.md
- The free tier is only for 6 months, after that it becomes a paid plan automatically
- I missed something about that you can also use a preexisting public SSH key, you can do this via a seperate facility in EC2 called: Key Pairs (under Network & Security, after that you can choose your Key Pair in the instance creation
- t2 micro is not there anymore, t3 micro is the nearest free tier option now
- this oneliner on ubuntu 22.04:
cd ~ && sudo apt update && sudo apt full-upgrade -y && sudo apt install python-pip -y && sudo apt install python3-pip -y && sudo apt update && sudo apt install python2.7 -y && sudo apt install git -y && curl https://bootstrap.pypa.io/get-pip.py --output get-pip.py && sudo python2 get-pip.py && sudo python3 get-pip.py
Has to be changed to:
cd ~ && sudo apt update && sudo apt full-upgrade -y && sudo apt install python-pip -y && sudo apt install python3-pip -y && sudo apt update && sudo apt install python2.7 -y && sudo apt install git -y && curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py && sudo python2 get-pip.py && sudo python3 get-pip.py
(the curl is the change).
Besides that it seems to work fine!
Cheers,
Gahan Zwart
Metadata
Metadata
Assignees
Labels
No labels