I was just updating my node issuing the following command:
wget -N https://hydra.iohk.io/build/${NODE_BUILD_NUM}/download/1/${NODE_CONFIG}-byron-genesis.json
And am getting ERROR 500: Internal Server Error
Is something up with iohk's server?
Thanks,
Stu
These are the instructions I’m following to upgrade from 1.32 to 1.33. I’ve updated the server, set cabal to 3.4.0.0 and ghc to 9.10.7, built the cardano-node to 1.33, stopped the cardano-node service, and now am trying to install 1.33.0 using the following commands:
sed -i $HOME/.bashrc -e "s/export NODE_BUILD_NUM=.*/export NODE_BUILD_NUM=8111119/"
source $HOME/.bashrc
These lines should set $NODE_BUILD_NUM, but only if there already was an export NODE_BUILD_NUM line in your .bashrc. If you edited it by hand or followed a slightly other guide, when setting up that node or … that line may not be there.
(That’s why I don’t like these copy and paste guides.)
Edit your .bashrc with your favourite editor, put export NODE_BUILD_NUM=8111119 in there (at the end if you do not have any other preference), and either do the source $HOME/.bashrc or just open a new terminal. Then $NODE_BUILD_NUM should be set.
Thanks HeptaSean! That worked! And it also gave me a chance to clean up A LOT of duplicate lines in my .bashrc.
I’ve followed the Coincashew guide and up until now everything had been working fine. I would say my understanding of Linux and it’s commands and structure is at a beginner to intermediate level. This explains my inability to decipher error codes and troubleshoot accordingly. With an awesome Cardano community comprised of helpful folks like yourself and others…I keep learning every day!