# เรียกใช้ Chiliz Chain Node

การเรียกใช้ Chiliz Chain Node ของคุณเองจะช่วยให้คุณมีการควบคุมและความเป็นส่วนตัวมากขึ้น แต่จำเป็นต้องมีทักษะทางเทคนิคและทรัพยากรมากขึ้น

หน้านี้ให้ข้อมูลพารามิเตอร์สำคัญสำหรับการเริ่มต้นใช้งาน Node ของคุณ

หากคุณพร้อมที่จะเริ่มเขียนโค้ดทันที นี่คือสรุปโดยย่อ:

```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="*" \
```

สำหรับรายละเอียดเพิ่มเติม โปรดดูที่หน้าที่สมบูรณ์ยิ่งขึ้น:

{% embed url="<https://docs.chiliz.com/develop/basics/connect-to-chiliz-chain/run-a-chiliz-chain-node>" %}

นอกจากนี้ คุณอาจสนใจในการเรียกใช้ Validator Node:

{% embed url="<https://docs.chiliz.com/learn/become-a-validator/run-a-validator-node>" %}


---

# 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/th/chiliz-chain/undefined/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.
