Node Setup
Biturbo Test Node Documents
Last updated
Biturbo Test Node Documents
Last updated
1. Hardware Requirements
CPU: 4 Cores (or dual-core hyperthreaded)
Memory: 16GB RAM
Storage: 1TB SSD/HDD
Network: At least 20Mb download speed
2. Start a Test Node with Docker
You can easily run a test node using Docker. The following bash command will help you set it up. In the container, the HTTP port is 8547 and the WS port is 8546. You can bind your preferred ports to the host machine.
3. Docker Environment Variables
You can customize some environment variables as follows. The default address is 0.0.0.0
, meaning there are no restrictions on the access address of the Docker container. If necessary, specify network policies on the host machine.
Environment Variable | Description |
---|---|
4. RPC Addresses
In the container, the HTTP port is 8547 and the WS port is 8546. You can bind your preferred ports when starting the Docker container.
HTTP Address: http://127.0.0.1:8547
WS Address: ws://127.0.0.1:8546
5. Docker Compose
Using Docker Compose makes it easier to start services. Below is a docker-compose.yml
file for reference:
This setup will help you quickly and efficiently run a Biturbo test node. If you have any questions or need further assistance, please refer to our support documentation or contact us directly.
HTTP_ADDR
HTTP-RPC server listening interface (default: "0.0.0.0")
WS_ADDR
WS-RPC server listening interface (default: "0.0.0.0")
SYNC_MODE
Sync mode ( "full") (default: "full". Testnet-node only support "full")
GC_MODE
Garbage collection mode ("full", "archive") (default: "archive")
LOG_LEVEL
Logging verbosity. ("silent", "error", "info", "debug", " detail") (default: "error")