Skip to content

Commit afb0d46

Browse files
authored
add troubleshooting section (#20)
Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>
1 parent b89c058 commit afb0d46

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- [Running on a Cluster](#running-on-a-cluster)
1515
- [Makefile Commands](#makefile-commands)
1616
- [Contributing](#contributing)
17+
- [Troubleshooting](#troubleshooting)
1718

1819
## Image Availability
1920

@@ -166,4 +167,18 @@ yarn format # Runs Prettier to update the YAMl files in this repository
166167
yarn verify # Runs Prettier to check the YAML files in this repository
167168
```
168169

169-
If you wish to try new changes with Llama Stack, you can build your own image using the `Containerfile` in the root of this repository.
170+
If you wish to try new changes with Llama Stack, you can build your own image using the `Containerfile` in the root of this repository.
171+
172+
## Troubleshooting
173+
174+
If you experience an error related to permissions for the `vector_db`, such as:
175+
176+
```sh
177+
sqlite3.OperationalError: attempt to write a readonly database
178+
```
179+
180+
You should give the `vector_db` directory write permissions by:
181+
182+
```
183+
chmod -R 777 vector_db
184+
```

0 commit comments

Comments
 (0)