PostgreSQL การติดตั้ง homebrew ขาดไฟล์กำหนดค่า


21

ดังนั้นฉันจึงติดตั้ง PostgreSQL 9.1 สำเร็จบน MacOSX Lion ต่างจากที่คนพูดฉันไม่ต้องเปลี่ยน PATH และไม่มี PostgreSQL รุ่นอื่นติดตั้งอยู่ในระบบ ( $ psql --version แสดงpsql (PostgreSQL) 9.1.4)

อย่างไรก็ตามเมื่อฉันพยายามเรียกใช้เซิร์ฟเวอร์โดยpg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log startไม่ทำงาน ครั้งแรกมันบอกว่าไม่มีผบ/usr/local/var/postgres/. ดีสร้างขึ้น จากนั้นก็แจ้งว่าการอนุญาตผิด - ปรับเปลี่ยนสิทธิ จากนั้นจะต้องมีpostgresql.confไฟล์ใน dir นี้

ตอนนี้ฉันพบตัวอย่างการ/usr/local/Cellar/postgresql/9.1.4/share/postgresqlกำหนดค่า แต่ฉันไม่แน่ใจว่านี่คือสิ่งที่ควรจะเป็น คู่มือทั้งหมดที่ฉันเคยเห็นบนเว็บไม่ได้กล่าวถึงการสร้างไฟล์ปรับแต่งจากตัวอย่าง homebrew ไม่ควรให้สิ่งนี้นอกกรอบเพื่อให้ฉันเพิ่งเริ่มเซิร์ฟเวอร์ทันที


หากคุณรู้สึกว่าควรส่งปัญหาใหม่ - ฉันไม่เคยติดตั้งส่วนตัวดังนั้นฉันจึงไม่สามารถพูดได้ว่าสิ่งนี้มีวัตถุประสงค์หรือไม่
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 brew info postgresไม่ให้ข้อมูลที่เป็นประโยชน์อีกต่อไปCREATE EXTENSION- สำหรับฉันมันมีประโยชน์ที่จะดูที่นี่
user12345
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.