YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* pg_ctlclusterコマンド [#v2a2b115]
** pg_ctlclusterコマンドとは? [#vc6662bb]
- PostgreSQLクラスタの起動制御するためのコマンドで、複数...
- pg_ctlコマンドのラッパー
- PGDGがDebian系Linuxに配布するパッケージに含まれる
- 環境によってpg_ctlclusterコマンドはインストールされてな...
** 起動状況の確認 - pg_lsclusters [#o52843da]
$ sudo pg_lsclusters
Ver Cluster Port Status Owner Data directory ...
9.5 main 5433 online postgres /var/lib/postgresql/9.5...
11 main 5432 online postgres /var/lib/postgresql/11/...
- バージョン9.5がポート5433で起動中、またバージョン11がポ...
** psqlのバージョン確認 [#a7c62f24]
$ psql --version
psql (PostgreSQL) 12.4 (Debian 12.4-1.pgdg90+1)
- 古いバージョンのpsqlで新しいバージョンのPostgreSQLサー...
** PostgreSQLサーバの起動・停止 [#ce498f16]
$ sudo pg_ctlcluster 12 main start
$ sudo pg_ctlcluster 9.5 main stop
** PostgreSQLサーバのリッスンポートなど設定変更 [#x4cf8f29]
vi /etc/postgresql/11/main/postgresql.conf
vi /etc/postgresql/9.6/main/postgresql.conf
** 参考 [#d5d52b0f]
- https://stackoverflow.com/questions/53302402/how-to-run...
- https://lets.postgresql.jp/documents/tutorial/ubuntu/4
終了行:
* pg_ctlclusterコマンド [#v2a2b115]
** pg_ctlclusterコマンドとは? [#vc6662bb]
- PostgreSQLクラスタの起動制御するためのコマンドで、複数...
- pg_ctlコマンドのラッパー
- PGDGがDebian系Linuxに配布するパッケージに含まれる
- 環境によってpg_ctlclusterコマンドはインストールされてな...
** 起動状況の確認 - pg_lsclusters [#o52843da]
$ sudo pg_lsclusters
Ver Cluster Port Status Owner Data directory ...
9.5 main 5433 online postgres /var/lib/postgresql/9.5...
11 main 5432 online postgres /var/lib/postgresql/11/...
- バージョン9.5がポート5433で起動中、またバージョン11がポ...
** psqlのバージョン確認 [#a7c62f24]
$ psql --version
psql (PostgreSQL) 12.4 (Debian 12.4-1.pgdg90+1)
- 古いバージョンのpsqlで新しいバージョンのPostgreSQLサー...
** PostgreSQLサーバの起動・停止 [#ce498f16]
$ sudo pg_ctlcluster 12 main start
$ sudo pg_ctlcluster 9.5 main stop
** PostgreSQLサーバのリッスンポートなど設定変更 [#x4cf8f29]
vi /etc/postgresql/11/main/postgresql.conf
vi /etc/postgresql/9.6/main/postgresql.conf
** 参考 [#d5d52b0f]
- https://stackoverflow.com/questions/53302402/how-to-run...
- https://lets.postgresql.jp/documents/tutorial/ubuntu/4
ページ名: