Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Update README of known issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudParant committed Mar 7, 2024
1 parent f3238e3 commit e4ae7d4
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,30 @@ See [SEL Server](https://github.com/ArnaudParant/sel_server) for API usage
- **clean** - Clean all `__pycache__`


## Known issue
## Known issues

### Elasticsearch

#### Max virtual memory

Fail to start with the following error
```
[1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
```

Execute the following command
```
sysctl -w vm.max_map_count=262144
```

#### AccessDeniedException

Fail to start with the following error
```
Caused by: java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes
```

Execute the following command
```
chown -R 1000:root /usr/share/elasticsearch/data
```

0 comments on commit e4ae7d4

Please sign in to comment.