Actions
Support #922
closed
DC
DC
Install ElasticSearch on FreeBSD
Support #922:
Install ElasticSearch on FreeBSD
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
- And modify the following parameters:
- Start and enable ElasticSearch at boot:
sysrc elasticsearch_enable="YES" service elasticsearch start
Resource¶
DC Updated by Daniel Curtis almost 8 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
DC Updated by Daniel Curtis over 7 years ago
- Status changed from Resolved to Closed
Actions