You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/mddocs/Quickstart/graphrag_quickstart.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,8 @@ The [GraphRAG project](https://github.com/microsoft/graphrag) is designed to lev
18
18
19
19
Follow the steps in [Run Ollama with IPEX-LLM on Intel GPU Guide](./ollama_quickstart.md) to install `ipex-llm[cpp]==2.1.0` and run Ollama on Intel GPU. Ensure that `ollama serve` is running correctly and can be accessed through a local URL (e.g., `https://127.0.0.1:11434`).
20
20
21
-
**Please note that for GraphRAG, we highly recommand using the stable version of ipex-llm through `pip install ipex-llm[cpp]==2.1.0`**.
21
+
> [!NOTE]
22
+
> Please note that for GraphRAG, we highly recommand using the stable version of ipex-llm through `pip install ipex-llm[cpp]==2.1.0`.
Ensure `vm.max_map_count` is set to at least 262144. To check the current value of `vm.max_map_count`, use:
80
81
81
82
```bash
82
-
$ sysctl vm.max_map_count
83
+
sysctl vm.max_map_count
83
84
```
84
85
85
86
##### Changing `vm.max_map_count`
86
87
87
88
To set the value temporarily, use:
88
89
89
90
```bash
90
-
$ sudo sysctl -w vm.max_map_count=262144
91
+
sudo sysctl -w vm.max_map_count=262144
91
92
```
92
93
93
94
To make the change permanent and ensure it persists after a reboot, add or update the following line in `/etc/sysctl.conf`:
@@ -104,10 +105,10 @@ Build the pre-built Docker images and start up the server:
104
105
> Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_VERSION` in **docker/.env** to the intended version, for example `RAGFLOW_VERSION=v0.7.0`, before running the following commands.
105
106
106
107
```bash
107
-
$ export no_proxy=localhost,127.0.0.1
108
-
$ cd ragflow/docker
109
-
$ chmod +x ./entrypoint.sh
110
-
$ docker compose up -d
108
+
export no_proxy=localhost,127.0.0.1
109
+
cd ragflow/docker
110
+
chmod +x ./entrypoint.sh
111
+
docker compose up -d
111
112
```
112
113
113
114
> [!NOTE]
@@ -116,7 +117,7 @@ $ docker compose up -d
116
117
Check the server status after having the server up and running:
117
118
118
119
```bash
119
-
$ docker logs -f ragflow-server
120
+
docker logs -f ragflow-server
120
121
```
121
122
122
123
Upon successful deployment, you will see logs in the terminal similar to the following:
@@ -237,3 +238,18 @@ Input your questions into the **Message Resume Assistant** textbox at the bottom
237
238
#### Exit
238
239
239
240
To shut down the RAGFlow server, use **Ctrl+C** in the terminal where the Ragflow server is runing, then close your browser tab.
241
+
242
+
### 5. Troubleshooting
243
+
244
+
#### Stuck when parsing files `Node <Urllib3HttpNode(http://es01:9200)> has failed for xx times in a row, putting on 30 second timeout`
245
+
246
+
This is because there's no enough space on the disk and the Docker container stop working. Please left enough space on the disk and make sure the disk usage is below 90%.
247
+
248
+
#### `Max retries exceeded with url: /encodings/cl100k_base.tiktoken` while starting the RAGFlow service through Docker
249
+
250
+
This may caused by network problem. To resolve this, you could try to:
251
+
252
+
1. Attach to the Docker container by `docker exec -it ragflow-server /bin/bash`
253
+
2. Set environment variables like `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` at the beginning of the `/ragflow/entrypoint.sh`.
0 commit comments