# Full Node

### [Docs](https://docs.celestia.org/nodes/full-storage-node)

## [EXPLORER](https://explorer.stavr.tech/Celestia-Testnet/staking)

* **Hardware requirements**:

| Node Type | CPU | RAM  | Storage |
| --------- | --- | ---- | ------- |
| Full node | 6   | 16GB | 2TB     |

## 1) Auto\_install script

```bash
source <(curl -s https://raw.githubusercontent.com/111STAVR111/props/main/Celestia/Testnet/Full/fullt)
```

## 2) Manual installation

#### Preparing the server

```bash
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make gcc tar clang pkg-config libssl-dev ncdu -y
```

### GO 1.23.1

```bash
ver="1.23.1"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile
go version
```

## Build 22.09.25

```bash
cd $HOME && mkdir -p go/bin/
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.26.2-mocha
make build 
sudo make install 
make cel-key
mv $HOME/celestia-node/cel-key /usr/local/bin/
```

`celestia version`

* version: v0.26.2-mocha
* commit:&#x20;

### Create/recover wallet

```bash
cel-key add full-wallet --keyring-backend test --node.type full --p2p.network mocha
           OR
cel-key add full-wallet --keyring-backend test --node.type full --recover --p2p.network mocha
```

## Initiation

```python
celestia full init --keyring.keyname full-wallet --p2p.network mocha-4
```

## Create a service file

```bash
CORE_IP="<PUT_CONSENSUS_NODE_IP>"
CORE_RPC_PORT="<PUT_CONSENSUS_NODE_RPC_PORT>"
CORE_GRPC_PORT="<PUT_CONSENSUS_NODE_GRPC_PORT>"
KEY_NAME="full-wallet"
```

```bash
sudo tee /etc/systemd/system/celestia-full.service > /dev/null <<EOF
[Unit]
Description=celestia full
After=network-online.target

[Service]
User=$USER
Environment=GODEBUG="asynctimerchan=1"
ExecStart=$(which celestia) full start \
--core.ip $CORE_IP \
--core.rpc.port $CORE_RPC_PORT \
--core.grpc.port $CORE_GRPC_PORT \
--p2p.network mocha \
--keyring.keyname $KEY_NAME \
--metrics.tls=true --metrics --metrics.endpoint otel.mocha.celestia.observer
Restart=on-failure
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF
```

## SnapShot Full Testnet | Archive (updated every 24h)

{% hint style="success" %} <mark style="color:orange;">**You can check the size and time of snapshot creation with this command**</mark>\
`curl -sI https://celestia.full-archive.snap-t.stavr.tech/full-t-snap.tar.lz4 | grep "last" && curl -sI https://celestia.full-archive.snap-t.stavr.tech/full-t-snap.tar.lz4 | grep content-length | awk '{printf "%.2f GB\n", $2/1024/1024/1024}'`
{% endhint %}

```bash
cd $HOME
snap install lz4
sudo systemctl stop celestia-full
rm -rf $HOME/.celestia-full-mocha-4/{blocks,data,index,inverted_index,transients,.lock}
curl -o - -L https://celestia.full-archive.snap-t.stavr.tech/full-t-snap.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.celestia-full-mocha-4/
sudo systemctl restart celestia-full && sudo journalctl -fu celestia-full -ocat
```

### Start

```bash
sudo systemctl daemon-reload
sudo systemctl enable celestia-full
sudo systemctl restart celestia-full && sudo journalctl -fu celestia-full -ocat
```

## [🧩Services and Tools🧩](https://stavr-team.gitbook.io/nodes-guides/testnets/celestia/full-node/snapshot)

## Monitoring

You can set up your node status alarm here - [Monitoring](https://stavr-team.gitbook.io/nodes-guides/monitoring)

## Security

You can create secure management of your wallet and your node by following this links.

[TMKMS](https://stavr-team.gitbook.io/nodes-guides/tmkms)               [Wallet Security](https://stavr-team.gitbook.io/nodes-guides/wallet-security)

### Delete node

```bash
systemctl stop celestia-full
systemctl disable celestia-full
rm /etc/systemd/system/celestia-full.service
systemctl daemon-reload
cd $HOME
rm -rf .celestia-full-mocha-4
rm -rf celestia-node
rm -rf /usr/local/bin/cel-key
rm -rf $(which celestia)
```
