【Ubuntu Server】postgresql.confの探し方(PostgreSQL)
postgresql.confの探し方
Ubuntu ServerでのPostgreSQL設定ファイル「postgresql.conf」の探し方を紹介します。
postgresql.confを探すコマンド
postgresql.confを探すには次のコマンドを実行します。
$ find / -name postgresql.conf 2> /dev/null
/etc/postgresql/11/main/postgresql.conf
/usr/lib/tmpfiles.d/postgresql.conf
※「 2> /dev/null」の箇所はなくても問題はないですが、
つけない場合「Permission denied」と大量に表示されてしまい邪魔です。
上の結果は、postgresql11の環境で実行結果です。
以上、誰かの参考になれば幸いです。