Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: refine some content #1171

Merged
merged 4 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ GreptimeDB supports [multiple protocols](/user-guide/clients/overview.md) for in
In this quick start document, we use SQL for simplicity.

If your GreptimeDB instance is running on `127.0.0.1` with the MySQL client default port `4002` or the PostgreSQL client default port `4003`,
you can connect to GreptimeDB using the following commands:
you can connect to GreptimeDB using the following commands.

By default, GreptimeDB does not have [authentication](/user-guide/operations/authentication.md) enabled.
nicecui marked this conversation as resolved.
Show resolved Hide resolved
You can connect to the database without providing a username and password in this section.

```shell
mysql -h 127.0.0.1 -P 4002
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/query-data/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Since v0.9, GreptimeDB supports view and CTE just like other databases, used to
* [View](./view.md)
* [Common Table Expression (CTE)](./cte.md)

## Client SDK libraries
<!-- ## Client SDK libraries

Client libraries provide a convenient way to connect to GreptimeDB and interact with data.
There are mature SQL driver libraries available for querying GreptimeDB.
For more information, please refer to the [Client Libraries](/user-guide/ingest-data/for-iot/grpc-sdks/overview.md) documentation.
For more information, please refer to the [Client Libraries](/user-guide/ingest-data/for-iot/grpc-sdks/overview.md) documentation. -->

## Query external data

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ GreptimeDB 支持[多种协议](/user-guide/clients/overview.md)与数据库进

如果你的 GreptimeDB 实例运行在 `127.0.0.1` 中,
并且使用 MySQL 客户端默认端口 `4002` 或 PostgreSQL 客户端默认端口 `4003`,
你可以使用以下命令连接到数据库:
你可以使用以下命令连接到数据库。

GreptimeDB 默认不开启[鉴权认证](/user-guide/operations/authentication.md)。
在本章节中你可以在连接数据库时不提供用户名密码。

```shell
mysql -h 127.0.0.1 -P 4002
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
* [View](./view.md)
* [公共表表达式(CTE)](./cte.md)

## 客户端库
<!-- ## 客户端库

客户端库提供了一种方便的方式来连接 GreptimeDB 并与数据交互。
现有的成熟 SQL driver 库可用于查询 GreptimeDB。
请参考[客户端库](/user-guide/ingest-data/for-iot/grpc-sdks/overview.md)文档获取更多信息。
请参考[客户端库](/user-guide/ingest-data/for-iot/grpc-sdks/overview.md)文档获取更多信息。 -->

## 查询外部数据

Expand Down
Loading