PostgreSQL Homebrew 설치에 구성 파일이 없습니다


21

그래서 MacOSX Lion에 PostgreSQL 9.1을 성공적으로 설치했습니다. 사람들의 말과 달리, PATH를 변경할 필요가 없으며 시스템에 다른 버전의 PostgreSQL이 설치되지 않았습니다 ( $ psql --version shows 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지만 이것이 무엇인지 확실하지 않습니다. 웹에서 본 모든 매뉴얼은 샘플에서 구성 파일을 만드는 것을 언급하지 않았습니다. Homebrew가 즉시 서버를 제공하지 않아야하므로 서버를 즉시 시작할 수 있습니까?


필요하다고 생각되면 새로운 문제를 제출하십시오. 개인적으로 설치 한 적이 없으므로이 문제의 의도 여부를 말할 수 없습니다.
slhck 2016 년

답변:


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 2012 년

2014 년 6 월 현재 brew info postgres더 이상 유용한 정보를 제공하지 않으므로 CREATE EXTENSION여기서 볼 수있어 도움이되었습니다.
user12345
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.