Skip to content

Instantly share code, notes, and snippets.

@antsankov
Created April 22, 2020 16:35
Show Gist options
  • Save antsankov/e9be09ecdff175e86f46e8265bdb25e0 to your computer and use it in GitHub Desktop.
Save antsankov/e9be09ecdff175e86f46e8265bdb25e0 to your computer and use it in GitHub Desktop.
How to run a Multigeth Phoenix Node with Sane Flags
./nodes/multi-geth-phoenix --classic --cache 4096 --datadir "/mnt/volume_ams3_04/.multigeth-classic/" --rpc --rpcaddr "127.0.0.1" --rpccorsdomain "*" --rpcport "8545" --rpcapi "db, eth, net, web3, personal" --ws --wsport 8546 --wsaddr "127.0.0.1" --wsorigins "*" --wsapi "web3, eth" --maxpeers=100
@antsankov
Copy link
Author

antsankov commented Apr 22, 2020

Step 1 : Download multi-geth v1.9.15 (https://github.com/multi-geth/multi-geth/releases)
Step 2 : Change the datadir - needs around 31 GB currently, recommended to allocate 100GB.

Needs at least 4GB of RAM.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment