# Node Service Synchronization

### 1. Recommended Server Configuration

To ensure stable operation and efficient block synchronization, we recommend the following server specs:

| Component | Recommended Configuration         |
| --------- | --------------------------------- |
| CPU       | 8 cores (8c)                      |
| Memory    | 16 GB (16g)                       |
| Storage   | 500 GB SSD                        |
| Network   | ≥100 Mbps (Public IP recommended) |

> ⚠️ If block data grows rapidly or if your app makes heavy use of logs, consider increasing storage capacity.

***

### 2. Node Initialization Process

#### Step 1: Initialize the Genesis Block (Only once)

```bash
./bin/geth --datadir data init config/genesis.json
```

> ⚠️ This step should only be executed once. **Do not reinitialize** after the node is running, as it will **erase all data** and require full resynchronization.

***

#### Step 2: Start the Node Service

```bash
bash start.sh
```

***

#### Step 3: Stop the Node Service

```bash
bash stop.sh
```

***

{% file src="/files/57WdXgMsgNtVfR84wI6W" %}


---

# 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://juchain.gitbook.io/juchain-docs/node/node-service-synchronization.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.
