Linux 64-bit binaries of
cardano-node
and cardano-cli statically linked to musl
libc to be able to run on any x86-64 Linux distribution, without any
dependency.
The current configuration from IOHK is bundled too to offer a ready to run edge node that can be converted to a relay or block producer node with the appropriate configuration.
mkdir cardano
cd cardano
curl -L https:/github.com/smaug-group/cardano-linux-binaries/releases/latest/download/cardano.tar.gz | tar xzSee Releases for previous releases.
./runThe node will run on port 3001.
For more information, see cardano-node documentation.
export CARDANO_NODE_SOCKET_PATH=`pwd`/socket
bin/cardano-cliTo enable bash auto-completion:
source <(bin/cardano-cli --bash-completion-script cardano-cli)LiveViewandJSONlogs are enabled by default in the node config.cardano-nodeis currently built without specificsystemdsupport.- Binaries are built and released automatically by a Travis-CI job on new tags. Check the tag Travis-CI log to verify the build and the binaries SHA1 computed at the end.
- Binaries are built using Docker and Alpine Linux, you can also copy the
Dockerfileand rebuild yourself the statically linked binaries.