PostgreSQL homebrewインストールには設定ファイルがありません


21

それで、MacOSX LionにPostgreSQL 9.1を正常にインストールしました。人々の言うこととは異なり、私はPATHを変更する必要がなく、PostgreSQLの他のバージョンはシステムにインストールされていません(を$ psql --version 表示psql (PostgreSQL) 9.1.4)。

ただし、サーバーを実行しようとしてpg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log startも機能しません。まず、dir /usr/local/var/postgres/が存在しないと表示されます。素晴らしい、作成されたもの。次に、アクセス権が間違っていると表示されます。次にpostgresql.conf、このディレクトリにファイルが存在する必要があります。

さて、でサンプル設定を見つけましたが/usr/local/Cellar/postgresql/9.1.4/share/postgresql、これがどのようなものであるかはわかりません。Webで見たすべてのマニュアルでは、サンプルから構成ファイルを作成することについて言及していませんでした。自作でこれをすぐに提供して、サーバーをすぐに起動する必要はありませんか?


必要に応じて、新しい問題を提出してください。個人的にはインストールしたことがないため、これが意図したものかどうかはわかりません。
-slhck

回答:


21

初めてのインストールですか?実行しようとしましたinitdb /usr/local/var/postgresか?これで同じ問題が解決しました。これは、システム全体の古いPostgreSQLのインストールをクリアし、Homebrewを使用して再インストールした後に起こったものです。

実行brew info postgresは、パッケージのインストール後に使用可能なコマンドを思い出させるために常に役立ちます。

postgresql 9.1.4
http://www.postgresql.org/
Depends on: readline, ossp-uuid
/usr/local/Cellar/postgresql/9.1.4 (2751 files, 36M) *
https://github.com/mxcl/homebrew/commits/master/Library/Formula/postgresql.rb

==> Caveats
# Build Notes

If builds of PostgreSQL 9 are failing and you have version 8.x installed,
you may need to remove the previous version first. See:
  https://github.com/mxcl/homebrew/issues/issue/2510

To build plpython against a specific Python, set PYTHON prior to brewing:
  PYTHON=/usr/local/bin/python  brew install postgresql
See:
  http://www.postgresql.org/docs/9.1/static/install-procedure.html

# Create/Upgrade a Database

If this is your first install, create a database with:
  initdb /usr/local/var/postgres

To migrate existing data from a previous major version (pre-9.1) of PostgreSQL, see:
  http://www.postgresql.org/docs/9.1/static/upgrading.html

# Start/Stop PostgreSQL

If this is your first install, automatically load on login with:
  mkdir -p ~/Library/LaunchAgents
  cp /usr/local/Cellar/postgresql/9.1.4/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/
  launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

If this is an upgrade and you already have the homebrew.mxcl.postgresql.plist loaded:
  launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
  cp /usr/local/Cellar/postgresql/9.1.4/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/
  launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

Or start manually with:
  pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

And stop with:
  pg_ctl -D /usr/local/var/postgres stop -s -m fast

# Loading Extensions

By default, Homebrew builds all available Contrib extensions.  To see a list of all
available extensions, from the psql command line, run:
  SELECT * FROM pg_available_extensions;

To load any of the extension names, navigate to the desired database and run:
  CREATE EXTENSION [extension name];

For instance, to load the tablefunc extension in the current database, run:
  CREATE EXTENSION tablefunc;

For more information on the CREATE EXTENSION command, see:
  http://www.postgresql.org/docs/9.1/static/sql-createextension.html
For more information on extensions, see:
  http://www.postgresql.org/docs/9.1/static/contrib.html

# Other

Some machines may require provisioning of shared memory:
  http://www.postgresql.org/docs/current/static/kernel-resources.html#SYSVIPC

To install postgresql (and ossp-uuid) in 32-bit mode:
   brew install postgresql --32-bit

If you want to install the postgres gem, including ARCHFLAGS is recommended:
    env ARCHFLAGS="-arch x86_64" gem install pg

To install gems without sudo, see the Homebrew wiki.

私はこれが存在すると推測しましたが、私はそれについて知りませんでした。brew info blah。これは素晴らしいです!ありがとう。:)
chandsie

2014年6月の時点でbrew info postgresは、有用な情報は提供さCREATE EXTENSIONれていません。したがって、私にとっては、ここでそれを見ることができました。
user12345 14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.