পোস্টগ্র্যাস এসকিউএল হোমব্রিউ ইনস্টলটিতে কনফিগার ফাইলের অভাব রয়েছে


21

সুতরাং আমি ম্যাকোসএক্স লায়নটিতে পোস্টগ্র্রেএসকিউএল 9.1 সাফল্যের সাথে ইনস্টল করেছি। লোকেদের বিপরীতে, আমাকে PATH পরিবর্তন করতে হবে না এবং পোস্টগ্র্রেএসকিউএল এর কোনও সংস্করণ সিস্টেমে ইনস্টল করা হয়নি ( $ 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এই দিরের মধ্যে ফাইল থাকা দরকার ।

এখন, আমি নমুনা কনফিগারগুলি পেয়েছি /usr/local/Cellar/postgresql/9.1.4/share/postgresql, তবে আমি নিশ্চিত নই যে এটির মতো হওয়ার কথা। ওয়েবে যে সমস্ত ম্যানুয়াল আমি দেখেছি সেগুলি নমুনার বাইরে কনফিগারেশন ফাইল তৈরির কথা উল্লেখ করে নি। হোমব্রিউ কি এইটিকে বাক্সের বাইরে সরবরাহ করা উচিত নয়, যাতে আমি কেবল এখনই সার্ভারটি শুরু করি?


যদি আপনার মনে হয় এটি হওয়া উচিত তবে একটি নতুন সমস্যা জমা দিন - আমি ব্যক্তিগতভাবে এটি কখনও ইনস্টল করি নি, সুতরাং এটি উদ্দেশ্যযুক্ত কিনা তা আমি বলতে পারি না।
slhck

উত্তর:


21

এটি কি আপনার প্রথম ইনস্টল? আপনি চালানোর চেষ্টা করেছেন initdb /usr/local/var/postgres? এটি কেবল একই সমস্যার সমাধান করেছে, যা পুরানো সিস্টেম-ব্যাপী পোস্টগ্র্যাস এসকিউএল ইনস্টল সাফ করার পরে এবং হোমব্রিউ ব্যবহার করে এটি পুনরায় ইনস্টল করার পরে আমার সাথে ঘটেছিল।

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.

আমি অনুমান করেছি যে এটি বিদ্যমান, তবে আমি এটি সম্পর্কে জানতাম না know brew info blah। এটি চমৎকার! ধন্যবাদ। :)
চ্যান্সডি

জুন ২০১৪ পর্যন্ত brew info postgresআর সহায়ক তথ্য সরবরাহ করে না CREATE EXTENSION- তাই আমার জন্য এটি এখানে দেখার পক্ষে সহায়ক ছিল।
ব্যবহারকারী 12345
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.