> For the complete documentation index, see [llms.txt](https://services.stakeandrelax.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.stakeandrelax.net/mainnet/juno/installation.md).

# Installation

<figure><img src="https://raw.githubusercontent.com/StakeandRelax-Validator/documentation/main/Logos/juno.png" alt="" width="150"><figcaption></figcaption></figure>

**Chain ID**: juno-1 | **Latest Version Tag**: v29.0.0

### Setup validator name

{% hint style="info" %}
Replace **YOUR\_MONIKER\_GOES\_HERE** with your validator name
{% endhint %}

```bash
MONIKER="YOUR_MONIKER_GOES_HERE"
```

### Install dependencies

#### Update system and install build tools

```bash
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
```

#### Install Go

```bash
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.22.7.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
```

### Download and build binaries

```bash
# Clone project repository
cd $HOME
rm -rf juno
git clone https://github.com/CosmosContracts/juno juno
cd juno
git checkout v29.0.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.juno/cosmovisor/genesis/bin
mv target/dist/junod $HOME/.juno/cosmovisor/genesis/bin/
rm -rf build

# Create application symlinks
ln -s $HOME/.juno/cosmovisor/genesis $HOME/.juno/cosmovisor/current
sudo ln -s $HOME/.juno/cosmovisor/current/bin/junod /usr/local/bin/junod
```

### Install Cosmovisor and create a service

```bash
# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest

# Create service
sudo tee /etc/systemd/system/juno.service > /dev/null << EOF
[Unit]
Description juno-main node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.juno"
Environment="DAEMON_NAME=junod"
Environment="UNSAFE_SKIP_BACKUP=true"

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable juno
```

### Initialize the node

```bash
# Set node configuration
junod config chain-id juno-1
junod config keyring-backend test

# Initialize the node
junod init $MONIKER --chain-id juno-1

# Download genesis and addrbook
curl -Ls https://snapshots.stakeandrelax.net/snapshots/juno/genesis.json > $HOME/.juno/config/genesis.json
curl -Ls https://snapshots.stakeandrealx.net/juno/addrbook.json > $HOME/.juno/config/addrbook.json

# Add seeds
sed -i -e "s|^seeds *=.*|seeds = \"62e1ef9da0ca277edfc42be048fa6ef79e1ee207@176.9.157.142:12656\"|" $HOME/.juno/config/config.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.juno/config/app.toml

```

### Download latest chain snapshot

```bash
curl -L https://snapshots.stakeandrelax.net/snapshots/juno/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.juno
[[ -f $HOME/.juno/data/upgrade-info.json ]] && cp $HOME/.juno/data/upgrade-info.json $HOME/.juno/cosmovisor/genesis/upgrade-info.json
```

### Start service and check the logs

```bash
sudo systemctl start juno && sudo journalctl -u juno -f --no-hostname -o cat
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://services.stakeandrelax.net/mainnet/juno/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
