Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion akeneo/3.1-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,20 @@ services:
image: elasticsearch:6.5.4
```

Run `docker-composer exec php /usr/local/bin/pim-init-db.sh` to initialize database, and load demo data.
You may have to increase max virtual memory areas if you see the following error:
```
docker-compose logs --tail 100 -f elasticsearch
...
elasticsearch_1_2bad8dfeda81 | ERROR: [1] bootstrap checks failed
elasticsearch_1_2bad8dfeda81 | [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
...
```
Run the following command to increase max virtual memory areas to the required size:
```
sudo sysctl -w vm.max_map_count=262144
```

Run `docker-compose exec php /usr/local/bin/pim-init-db.sh` to initialize database, and load demo data.

Then open http://localhost:3380.

Expand Down