Amazon Linux 2 AMI (HVM) - Which `cabal-install`binary to use?

I am trying to setup a stake pool using Amazon Linux 2 AMI (HVM) and followed the documentation Running A Node Using An AWS Instance.

I am at the Installing the node from source, and I do not know which cabal-install binary to install as listed in the following link: Downloads.

Please can someone advise? Many thanks.

You could consider running your nodes on Docker, it does away with all those pesky low level details.

Just do ā€¦

docker run --detach \
    --name=relay \
    -p 3001:3001 \
    -e CARDANO_UPDATE_TOPOLOGY=true \
    -v node-data:/opt/cardano/data \
    nessusio/cardano-node run    

Detailed docs are here.

1 Like

Follow the coincashew guide, it makes things a lot easier when setting up a stake pool

https://www.coincashew.com/coins/overview-ada/guide-how-to-build-a-haskell-stakepool-node

I am currently using a t3.large for my block/relay1/relay2

I am planning to set up a ARM processor server like t4g for more cost savings.

1 Like

Thank you so much for your feedback. Iā€™m gonna check it out and get back to you