1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 11:42:08 +02:00
tldr/pages.ko/common/pg_ctl.md
코드싸이 2317407751
common/p*: add Korean translation (#14663)
* common/p*: add Korean translation

* Update pages.ko/common/perldoc.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/pcdovtoppm.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-07 14:54:05 +09:00

607 B

pg_ctl

PostgreSQL 서버 및 데이터베이스 클러스터를 제어하는 유틸리티. 더 많은 정보: https://www.postgresql.org/docs/current/app-pg-ctl.html.

  • 새로운 PostgreSQL 데이터베이스 클러스터 초기화:

pg_ctl -D {{데이터_디렉토리}} init

  • PostgreSQL 서버 시작:

pg_ctl -D {{데이터_디렉토리}} start

  • PostgreSQL 서버 중지:

pg_ctl -D {{데이터_디렉토리}} stop

  • PostgreSQL 서버 재시작:

pg_ctl -D {{데이터_디렉토리}} restart

  • PostgreSQL 서버 설정 다시 로드:

pg_ctl -D {{데이터_디렉토리}} reload