# Run a Parex Chain Node

Running your own Parex Chain node provides control and privacy but demands more technical skill and resources.

This page gives you the essential parameters to launch your node.&#x20;

If you are ready to go straight into code mode, here is the gist of it:

* **#Download mainnet.tar.gz**

<pre class="language-solidity"><code class="lang-solidity"><strong>wget https://github.com/ParexChain/Mainnet_PEP20/raw/main/mainnet.tar.gz
</strong></code></pre>

* **#extract files**

```solidity
tar zxvf mainnet.tar.gz
```

* **#create datadir**

```solidity
mkdir geth_data
```

* **#init genesis.json**

```solidity
./geth --datadir geth_data init genesis.json
```

* **#run node**

{% code fullWidth="false" %}

```solidity
./geth  \
--config ./config.toml  \
--datadir ./geth_data  \
--cache 16000  \
--rpc.allow-unprotected-txs  \
--txlookuplimit 0  \
--http.api=eth,net,web3,personal \
--syncmode full
```

{% endcode %}

### Minimum System Requirements

| Parameter | Value  |
| --------- | ------ |
| RAM       | 16GB   |
| CPU       | 8 CORE |
| SSD       | 1TB    |
