Code Search EAP - Install and configure a remote Elasticsearch instance
Install Elasticsearch
We don't provide specific instructions for installing Elasticsearch, but a good place to start is the Elasticsearch installation instructions. Elastic provides installation packages in several different formats on their downloads page.
Elasticsearch ports
Bitbucket Server's embedded Elasticsearch instance requires ports 7992 and 7993 be available to provide code search functionality. This is not configurable, so ensure these ports are available.
Secure your remote Elasticsearch instance
After you've completed installing Bitbucket Server, you need to secure access to your remote Elasticsearch instance with a username and password. Atlassian recommends 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
- Download the Buckler plugin on the remote machine: buckler-plugin-0.1.5.zip.
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 https://maven.atlassian.com/content/groups/public/com/atlassian/elasticsearch/buckler-plugin/0.1.5/buckler-plugin-0.1.5.zip
Configure basic authentication (at minimum) using the Buckler authentication plugin.
- Within the
elasticsearch/config
directory, create a directory calledbuckler
. - Create a file named
buckler.yml
. By default there is no configuration, which means all the features of the Buckler plugin are disabled. Enable basic authentication by adding the following properties, modifying the parameters for your company's details.
- Within the
Connect your Elasticsearch instance to Bitbucket Server
Once you've configured your Elasticsearch instance you need to connect it to Bitbucket Server.
To connect your remote Elasticsearch instance to Bitbucket Server via the bitbucket.properties
file
Another way to configure connection settings is via bitbucket.properties
file (resides in $BITBUCKET_HOME/shared
).
If a parameter is set in the 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.
- In the
$BITBUCKET_HOME
directory, create a new directory calledshared
. - In the
$BITBUCKET_HOME/shared
directory, create a text file namedbitbucket.properties
. Add these Elasticsearch properties to the file.
PropertyParameter name for properties fileURL plugin.search.elasticsearch.baseurl
Username plugin.search.elasticsearch.username
Password plugin.search.elasticsearch.password
Save and close the file.
- Start Bitbucket Server.
Configure details of your Elasticsearch instance within Bitbucket Server
To configure the details of your Elasticsearch instance within the Bitbucket Server UI, go to the Administration settings page, then click Server Settings. At the bottom of the page is where you can configure the details of your Elasticsearch instance.
If a parameter is set in the 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.