mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-19 14:31:00 +00:00
5.4 has a bug in testing existence of aliases which causes tests to fail: https://github.com/elastic/elasticsearch/issues/24644
8 lines
265 B
Bash
Executable file
8 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo sysctl -w vm.max_map_count=262144
|
|
|
|
sudo apt-get autoremove --purge elasticsearch
|
|
wget -P /tmp/ https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.3.3.deb
|
|
sudo dpkg -i /tmp/elasticsearch-5.3.3.deb
|
|
sudo service elasticsearch start
|