# Exécuter un nœud Chiliz Chain

Faire fonctionner votre propre nœud Chiliz Chain offre contrôle et confidentialité, mais exige davantage de compétences techniques et de ressources.

Cette page vous donne les paramètres essentiels pour lancer votre nœud.

Si vous êtes prêt à passer directement en mode code, en 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 \ # pour Chiliz Mainnet. Utilisez --spicy pour 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/2a33ef217af8515280c10e039dcfd894de4ff678" %}
[Exécuter un nœud Chiliz Chain](/fr-ai/develop/basics/connect-to-chiliz-chain/run-a-chiliz-chain-node.md)
{% endcontent-ref %}

Vous pourriez aussi être intéressé par l’exécution d’un nœud Validateur :

{% content-ref url="/pages/ae95987c53cbeb800d5677383c02af0838c480b8" %}
[Exécuter un nœud validateur](/fr-ai/learn/about-validators/running-a-validator-node.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-ai/quick-start/developer-toolbox/run-a-chiliz-chain-node.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.
