mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-15 18:53:18 +00:00
8 lines
357 B
Bash
8 lines
357 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
sudo apt-get autoremove --purge elasticsearch
|
||
|
|
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
|
||
|
|
echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elk.list
|
||
|
|
sudo apt-get update && sudo apt-get install elasticsearch -y
|
||
|
|
sudo service elasticsearch start
|