Files
tldr/pages.zh/common/influx.md

28 lines
594 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# influx
> InfluxDB 命令行客户端。
> 更多信息:<https://docs.influxdata.com/influxdb/v1.7/tools/shell/>.
- 连接到运行在 localhost 的 InfluxDB且无需凭证
`influx`
- 使用特定用户名连接(将提示输入密码):
`influx -username {{username}} -password ""`
- 连接到特定主机:
`influx -host {{hostname}}`
- 使用特定数据库:
`influx -database {{database_name}}`
- 执行给定命令:
`influx -execute "{{influxql_command}}"`
- 以特定格式返回输出:
`influx -execute "{{influxql_command}}" -format {{json|csv|column}}`