Project

General

Profile

Support #922

Install ElasticSearch on FreeBSD

Added by Daniel Curtis about 6 years ago. Updated about 6 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Web Server
Target version:
Start date:
01/21/2018
Due date:
% Done:

100%

Estimated time:
0.50 h
Spent time:

Description

This is a guide for setting up a basic ElasticSearch instance on FreeBSD 11.

Prepare the Environment

  • Make sure the system is up to date:
    pkg update && pkg upgrade
    

Install ElasticSearch

  • Install ElasticSearch:
    pkg install elasticsearch
    
  • Make the config writeable:
    chmod o+w /usr/local/etc/elasticsearch/elasticsearch.yml
    
  • Edit the elasticsearch config:
    vi /usr/local/etc/elasticsearch/elasticsearch.yml
    
    • And modify the following parameters:
      network.host: 127.0.0.1
      
  • Start and enable ElasticSearch at boot:
    sysrc elasticsearch_enable="YES" 
    service elasticsearch start
    

Resource

#1

Updated by Daniel Curtis about 6 years ago

  • Status changed from New to Resolved
  • % Done changed from 0 to 100
#2

Updated by Daniel Curtis about 6 years ago

  • Status changed from Resolved to Closed

Also available in: Atom PDF