266ec2121c
There's no /install/source directory, remove the links. Those links are also completely unneeded, the theme has a sidebar with a table of content. Fix one ocata link and link to current guide instead. Change-Id: Ifbf39d1bbd09d8f32a6fbde790a136bd94315717
1.2 KiB
1.2 KiB
Install and configure database
Before you install and configure the Backup/Restore service, you must install the database.
- To install elasticsearch on Ubuntu, complete these steps:
Install java prerequisites:
$ sudo apt-get install default-jre-headless
Download
elasticsearch
version 2.3.0$ wget https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.3.0/elasticsearch-2.3.0.deb
Install
elasticsearch
$ sudo dpkg -i elasticsearch-2.3.0.deb $ sudo update-rc.d elasticsearch defaults 95 10
- To install elasticsearch on Fedora, complete these steps:
Install java prerequisites:
$ sudo yum install java-1.8.0-openjdk-headless
Download
elasticsearch
version 2.3.0$ wget https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/rpm/elasticsearch/2.3.0/elasticsearch-2.3.0.rpm
Install
elasticsearch
$ sudo yum install elasticsearch-2.3.0.rpm