mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 03:22:08 +02:00

* infection, influx, info, initdb, inkmake, inkscape: add Korean translation * Update pages.ko/common/inkscape.md Co-authored-by: Chooooo <contact@choo.ooo> --------- Co-authored-by: Chooooo <contact@choo.ooo>
688 B
688 B
influx
InfluxDB 커멘드 라인 클라이언트. 더 많은 정보: https://docs.influxdata.com/influxdb/v1.7/tools/shell/.
- 자격증명 없이 localhost에서 실행되는 InfluxDB에 연결:
influx
- 특정 사용자 이름으로 연결 (비밀번호를 묻는 메시지가 표시됨):
influx -username {{사용자명}} -password ""
- 특정 호스트에 연결:
influx -host {{호스트명}}
- 특정 데이터베이스 사용:
influx -database {{데이터베이스_이름}}
- 주어진 명령을 실행:
influx -execute "{{influxql_명령}}"
- 특정 형식으로 출력을 반환:
influx -execute "{{influxql_명령}}" -format {{json|csv|column}}