# Gérer un nœud Chiliz Chain

Gérer votre propre nœud Chiliz Chain offre contrôle et confidentialité mais exige plus de compétences techniques et de ressources.&#x20;

Cette page vous fournit les paramètres essentiels pour lancer votre nœud.&#x20;

Si vous êtes prêt à plonger directement en mode code, voici l'essentiel :

```bash
docker run \
-v $(pwd)/my-datadir:/datadir \
--name ccv2-node \
-p 8545:8545 \
-p 8546:8546 \
chilizchain/ccv2-geth:latest \
--chiliz \ # for Chiliz Mainnet. Use --spicy for Spicy Testnet.
--datadir=/datadir \
--ipcdisable \
--http \
--http.addr=0.0.0.0 \
--http.api=eth,net,web3,debug,txpool \
--http.port=8545 \
--http.corsdomain="*" \
--http.vhosts="*" \
--ws \
--ws.addr=0.0.0.0 \
--ws.api=eth,net,web3,debug,txpool \
--ws.port=8546 \
--ws.origins="*" \
```

Pour plus de détails, consultez cette page plus complète :

{% content-ref url="/pages/CQ1IjrOCvOPgLnq14OEZ" %}
[Exécuter un nœud sur Chiliz Chain](/fr/developper/notions-de-base/se-connecter-a-chiliz-chain/executer-un-noeud-sur-chiliz-chain.md)
{% endcontent-ref %}

Vous pourriez également être intéressé par la gestion d'un nœud de Validateur :

{% content-ref url="/pages/FVeKxFxY3CAVmeKW5ezN" %}
[Gérer un noeud validateur](/fr/apprendre/a-propos-des-validateurs/gerer-un-noeud-validateur.md)
{% endcontent-ref %}


---

# 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.chiliz.com/fr/demarrage-rapide/gerer-un-noeud-chiliz-chain.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.
