Skip to content

Some additional notes on the AWS deploy of Dshield #321

@innertruth

Description

@innertruth

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions