10/4/2018 9:29:08 PM
This page describes how to provision a remote Elasticsearch instance to work with Bitbucket Data Center.
This page describes how to provision a remote Elasticsearch instance to work with Bitbucket Data Center.
Bitbucket Data Center requires a remote Elasticsearch instance, as it is not bundled or installed for Bitbucket Data Center.
Bitbucket Data Center can have only one remote connection to Elasticsearch for your cluster. This may be a standalone Elasticsearch installation or a clustered installation behind a load balancer.
For details of about how Bitbucket uses Elasticsearch, including troubleshooting tips and frequently asked questions, see the page Administer code search.
We don't provide specific instructions for installing Elasticsearch, but a good place to start is the Elasticsearch (5.5) installation instructions. Elastic provides installation packages in several different formats here. Note that the authentication plugin – Buckler, described within the Secure Elasticsearch section – only supports versions 5.5 of Elasticsearch. Refer to the Supported platforms - Additional Tools section to see the current Elasticsearch release we support.
The elasticsearch.yml
file contains configuration details for your Elasticsearch instance.
To configure your remote Elasticsearch instance
elasticsearch.yml
file within the configuration directory of your Elasticsearch (5.5) instance. Add these parameters to your elasticsearch.yml
file
action.auto_create_index: false
network.host: 0.0.0.0
action.auto_create_index
. Consult your provider's documentation for more information.
You need to secure access to your remote Elasticsearch instance with a username and password. We recommend securing your remote Elasticsearch instance with a security plugin that requires anyone connecting to it provides authentication credentials. Atlassian provides a free plugin called Buckler for this purpose. Bitbucket Server also supports authentication to Elasticsearch through other plugins that provide basic authentication, like Elastic's Shield plugin.
To secure your remote Elasticsearch instance with the Buckler plugin
Copy the Buckler plugin URL to your clipboard:
Elasticsearch 5.5.3 | Buckler 1.0.4 for ES 5.5.3 |
---|
Install the plugin onto your remote Elasticsearch instance using the plugin helper in the Elasticsearch /bin
directory:
cd /path/to/elasticsearch/bin
./plugin install -b <link from table above>
Configure basic authentication for Bitbucket to access your remote Elasticsearch installation. We strongly suggest enabling basic HTTP authentication, at minimum, for a remote Elasticsearch instance working with Bitbucket Data Center.
buckler
within the elasticsearch/config/
directory. Within the elasticsearch/config/buckler
directory, create a file named buckler.yml
.
When installing using rpm or deb file
The location of your configuration directory varies depending on how you installed Elasticsearch. For rpm/deb installations the location is typically in /etc/elasticsearch
if the file is placed in the wrong location Buckler does not enforce any permissions, so your instance/cluster is not secure.
Enable Buckler: at this point there are no configuration properties within buckler.yml
, so the features of the Buckler plugin are disabled.
To enable the Buckler for basic HTTP authentication, you add these properties to the file, creating a username and password that Bitbucket will use to access Elasticsearch (configured in a later step).
auth.basic.http.enabled: true
auth.basic.username: <username>
auth.basic.password: <password>
If you enable TLS, the following block will need to be added to elasticsearch.yml
http.type: buckler
transport.type: buckler
This is relevant for Buckler version 1.0.1 onwards.
Once you've configured your Elasticsearch instance you then need to connect it to Bitbucket.
To configure your remote Elasticsearch instance using the bitbucket.properties
file
bitbucket.properties
file, it cannot be edited later from the admin UI. Any changes that need to be made to the Elasticsearch configuration must be made within the bitbucket.properties
file.
bitbucket.properties
file in the <Bitbucket home directory>/shared
directory. Add the details of your Elasticsearch instance (created in step 3.3 above):
plugin.search.elasticsearch.baseurl=http://localhost:9200/
plugin.search.elasticsearch.username=<username>
plugin.search.elasticsearch.password=<password>
Start Bitbucket Server without starting the bundled Elasticsearch instance.
For Linux | start-bitbucket.sh --no-search |
---|---|
For Windows | start-bitbucket.bat /no-search |
Your remote Elasticsearch instance is now configured to work with Bitbucket Server.
Administrator
10/4/2018 9:29:08 PM
1/1/0001 12:00:00 AM
https://yoong.vn/