opensearch-docs-cn/_opensearch/install/ansible.md

67 lines
2.5 KiB
Markdown
Raw Normal View History

2021-10-20 14:25:46 -04:00
---
layout: default
title: Ansible playbook
parent: Install OpenSearch
nav_order: 60
---
# Ansible playbook
You can use an Ansible playbook to install and configure a production-ready OpenSearch cluster along with OpenSearch Dashboards.
2021-11-02 15:03:02 -04:00
The Ansible playbook only supports deployment of OpenSearch and OpenSearch Dashboards to CentOS7 hosts.
2021-10-20 14:25:46 -04:00
{: .note }
## Prerequisites
Make sure you have [Ansible](https://www.ansible.com/) and [Java 8](https://www.java.com/en/download/manual.jsp) installed.
2021-11-02 15:03:02 -04:00
## Configuration
2021-10-20 14:25:46 -04:00
1. Clone the OpenSearch [ansible-playbook](https://github.com/opensearch-project/ansible-playbook) repository:
```bash
git clone https://github.com/opensearch-project/ansible-playbook
```
2021-11-02 15:03:02 -04:00
2. Configure the node properties in the `inventories/opensearch/hosts` file:
2021-10-20 14:25:46 -04:00
```bash
2021-11-02 15:03:02 -04:00
ansible_host=<Public IP address> ansible_user=root ip=<Private IP address / 0.0.0.0>
2021-10-20 14:25:46 -04:00
```
2021-11-02 15:03:02 -04:00
where:
- `ansible_host` is the IP address of the target node that you want the Ansible playbook to install OpenSearch and OpenSearch DashBoards on.
- `ip` is the IP address that you want OpenSearch and OpenSearch DashBoards to bind to. You can specify the private IP of the target node, or localhost, or 0.0.0.0.
2021-10-20 14:25:46 -04:00
2021-11-02 15:03:02 -04:00
3. You can modify the default configuration values in the `inventories/opensearch/group_vars/all/all.yml` file. For example, you can increase the Java memory heap size:
2021-10-20 14:25:46 -04:00
```bash
2021-11-02 15:03:02 -04:00
xms_value: 8
xmx_value: 8
2021-10-20 14:25:46 -04:00
```
2021-11-02 15:03:02 -04:00
Make sure you have direct SSH access into the root user of the target node.
{: .note }
## Run OpenSearch and OpenSearch Dashboards using Ansible playbook
2021-10-20 14:25:46 -04:00
2021-11-02 15:03:02 -04:00
1. Run the Ansible playbook with root privileges:
2021-10-20 14:25:46 -04:00
2021-11-02 15:03:02 -04:00
```bash
ansible-playbook -i inventories/opensearch/hosts opensearch.yml --extra-vars "admin_password=Test@123 kibanaserver_password=Test@6789"
```
2021-10-20 14:25:46 -04:00
2021-11-02 15:03:02 -04:00
You can set the passwords for reserved users (`admin` and `kibanaserver`) using the `admin_password` and `kibanaserver_password` variables.
2021-10-20 14:25:46 -04:00
2021-11-02 15:57:04 -04:00
2. After the deployment process is complete, you can access OpenSearch and OpenSearch Dashboards with the username `admin` and the password that you set for the `admin_password` variable.
If you bind `ip` to a private IP or localhost, make sure you're logged into the server that deployed the playbook to access OpenSearch and OpenSearch Dashboards:
2021-11-02 15:03:02 -04:00
```bash
curl https://localhost:9200 -u 'admin:Test@123' --insecure
```
2021-11-02 15:57:04 -04:00
If you bind `ip` to 0.0.0.0, then replace `localhost` with the public IP or the private IP (if it's in the same network).