# Launch a Local Private Net

Open a terminal to launch the pandonet (Local Private Net). For the first time, follow the setup steps below.

{% code title="Change working directory" %}

```shell
cd $PANDO_HOME
```

{% endcode %}

{% code title="Copy" %}

```shell
cp -r ./integration/privatenet ../privatenet
```

{% endcode %}

{% code title="Make Directory" %}

```shell
mkdir ~/.pandocli
```

{% endcode %}

{% code title="Access permission" %}

```shell
chmod 700 ~/.pandocli
```

{% endcode %}

{% code title="Export path and make install" %}

```shell
exportPATH=$PATH:/usr/local/go/bin&& makeinstall
```

{% endcode %}

**And then, use the following command to launch a pandonet . For this you can use tmux or any other tools to run your node service in the background.**

{% code title="Launch Privatenet" %}

```shell
/usr/local/go/bin/pando start --config=../privatenet/node
```

{% endcode %}

When the prompt asks for a password, enter your required password here.

{% hint style="info" %}
Note – { Your binary directory path } denotes path where pando and pandocli binary exist or created while running after make install command.
{% endhint %}

**And then after run the following command to launch rpc of the node in another session.**

{% code title="to launch RPC" %}

```shell
/{ Your binary directory path }/pandocli daemon start --port=16889
```

{% endcode %}

And to get the details of node for further process, run the below command -

{% code title="Change directory to binary" %}

```shell
cd { Your binary directory path }
```

{% endcode %}

```shell
./pandocli query metatron
```

{% hint style="success" %}
This command will give you following information about the metatron node life node summary which is needed for staking process to make node active
{% endhint %}

**Example:**

**{**\
**"Address": "0x8f3B...E819",**&#x20;

**"BlsPubkey": "a1225b...16ebe",**&#x20;

**"BlsPop": "b49fd2a...d025c",**&#x20;

**"Signature": "14deb5e...52500",**&#x20;

**"Summary": "0x8f3Bc...952500"**

**}**

{% hint style="success" %}
Use Summary key data for the metatron staking from the web wallet.
{% endhint %}

{% hint style="info" %}
Note: Please keep the records safely as you need this info to reinstall the node and for withdrawal.
{% endhint %}


---

# Agent Instructions: 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://docs.pandoproject.org/pando-network-docs/blockchain-integration/launch-a-local-private-net.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.
