web-dev-qa-db-ja.com

Get Error:herokuにデプロイするときに、少なくとも1つのpostgresql-client- <version>パッケージをインストールする必要があります

sdilshod@sdilshod-Lenovo-B590:~/webapp/saturn$ heroku run rake db:migrate
Running `rake db:migrate` attached to terminal... up, run.6194
DEPRECATION WARNING: You have Rails 2.3-style plugins in    vendor/plugins! Support for these plugins will be removed in Rails 4.0.  Move them out and bundle them in your Gemfile, or fold them in to your app  as lib/myplugin/* and config/initializers/myplugin.rb. See the release  notes for more on this: http://weblog.rubyonrails.org/2012/1/4/Rails-3-2- 0-rc2-has-been-released. (called from <top (required)> at /app/Rakefile:7)
DEPRECATION WARNING: You have Rails 2.3-style plugins in  vendor/plugins! Support for these plugins will be removed in Rails 4.0.   Move them out and bundle them in your Gemfile, or fold them in to your app   as lib/myplugin/* and config/initializers/myplugin.rb. See the release   notes for more on this: http://weblog.rubyonrails.org/2012/1/4/Rails-3-2-  0-rc2-has-been-released. (called from <top (required)> at /app/Rakefile:7)
 Error: You must install at least one postgresql-client-<version> package.
 rake aborted!
 Error dumping database
 /app/vendor/bundle/Ruby/1.9.1/gems/activerecord-   3.2.12/lib/active_record/railties/databases.rake:415:in `block (3 levels)   in <top (required)>'
 /app/vendor/bundle/Ruby/1.9.1/gems/activerecord- 3.2.12/lib/active_record/railties/databases.rake:188:in `block (2 levels) in <top (required)>'
/app/vendor/bundle/Ruby/1.9.1/gems/activerecord-3.2.12/lib/active_record/railties/databases.rake:182:in `block (2 levels) in <top (required)>'
Tasks: TOP => db:structure:dump
(See full trace by running task with --trace)

heroku pg:psqlは正常に動作しますが、rake db:migrateを移行すると、pgクライアントをインストールする必要があるエラーが発生します。 PGクライアントをインストールする必要がある場所助けて

60
dilshod

Debianベースのシステムでは、PostreSQLクライアントプログラムは/usr/share/postgresql-common/pg_wrapperへのシンボリックリンクとしてpostgresql-client-commonによって提供されます。

そのパッケージをインストールし、psqlなどのPostgreSQLクライアントプログラムを使用しようとすると、pg_dumppg_dumpall、およびpg_restorepg_wrapperバージョン固有のバイナリパッケージをインストールせずに、postgresql-client-9.1このエラーが発生します:

少なくとも1つのpostgresql-client- <version>パッケージをインストールする必要があります

これを修正する最も簡単な方法は、postgresql-clientメタパッケージをインストールすることです。 Debianベースのシステム上のPostgreSQLで現在サポートされているデータベースクライアントパッケージに常に依存し、postgresql-client-commonに依存します

Sudo apt-get install postgresql-client
129
jla