opensearch-docs-cn/index.md

80 lines
2.8 KiB
Markdown
Raw Normal View History

2021-05-05 13:09:47 -04:00
---
layout: default
title: Get started
nav_order: 1
redirect_from: /404.html
permalink: /
---
# OpenSearch documentation
This site contains the technical documentation for [OpenSearch](https://opensearch.org/), the Apache 2.0-licensed search, analytics, and visualization suite with advanced security, alerting, SQL support, automated index management, deep performance analysis, and more.
2021-05-05 13:09:47 -04:00
[Get started](#docker-quickstart){: .btn .btn-blue }
---
## Why use OpenSearch?
OpenSearch is well-suited to the following use cases:
* Log analytics
* Real-time application monitoring
* Clickstream analytics
* Search backend
Component | Purpose
:--- | :---
[OpenSearch](docs/opensearch/) | Data store and search engine
[OpenSearch Dashboards](docs/opensearch-dashboards/) | Search frontend and visualizations
[Security](docs/security/) | Authentication and access control for your cluster
[Alerting](docs/alerting/) | Receive notifications when your data meets certain conditions
[SQL](docs/sql/) | Use SQL or a piped processing language to query your data
[Index State Management](docs/ism/) | Automate index operations
[KNN](docs/knn/) | Find “nearest neighbors” in your vector data
[Performance Analyzer](docs/pa/) | Monitor and optimize your cluster
[Anomaly Detection](docs/ad/) | Identify atypical data and receive automatic notifications
[Asynchronous Search](docs/async/) | Run search requests in the background
You can install OpenSearch plugins [individually](docs/opensearch/install/plugins/) or use the [all-in-one packages](docs/opensearch/install/). Most of these OpenSearch plugins have corresponding OpenSearch Dashboards plugins that provide a convenient, unified user interface.
2021-05-05 13:09:47 -04:00
2021-05-06 17:53:25 -04:00
For specifics around the project, see the [FAQ](https://opensearch.org/faq/).
2021-05-05 13:09:47 -04:00
---
## Docker quickstart
Docker
{: .label .label-green }
1. Install and start [Docker Desktop](https://www.docker.com/products/docker-desktop).
1. Run the following commands:
```bash
docker pull opensearch/opensearch:{{site.opensearch_version}}
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearch/opensearch:{{site.opensearch_version}}
2021-05-05 13:09:47 -04:00
```
1. In a new terminal session, run:
```bash
curl -XGET --insecure https://localhost:9200 -u admin:admin
```
To learn more, see [Install OpenSearch](docs/opensearch/install/).
2021-05-05 13:09:47 -04:00
---
## Looking for the Javadoc?
See [opensearch.org/javadoc](https://opensearch.org/javadoc/).
2021-05-05 13:09:47 -04:00
## Get involved
[OpenSearch](https://opensearch.org) is supported by Amazon Web Services. All components are available under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html) on [GitHub](https://github.com/opensearch-project/).
The project welcomes GitHub issues, bug fixes, features, plugins, documentation---anything at all. To get involved, see [Contributing](https://opensearch.org/source.html) on the OpenSearch website.