UFO ET IT

오류 가져 오기 : 하나 이상의 postgresql-client-를 설치해야합니다.

ufoet 2020. 11. 23. 20:38
반응형

오류 가져 오기 : 하나 이상의 postgresql-client-를 설치해야합니다. heroku에 배포 할 때 패키지


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 클라이언트를 어디에 설치해야합니까? 어떤 도움


데비안 기반 시스템에서 PostreSQL 클라이언트 프로그램은에 의해 제공되는 PostgreSQL의 클라이언트 - 일반 심볼릭 링크로 /usr/share/postgresql-common/pg_wrapper.

당신이 패키지를 설치하고 같은 PostgreSQL의 클라이언트 프로그램의 사용하려고하면 psql의 , pg_dump의 , pg_dumpall의pg_restore에pg_wrapper을 같이 바이너리 패키지가 설치 버전 특정하지 않고 PostgreSQL의 클라이언트 - 9.1 는이 오류를 방출합니다 :

하나 이상의 postgresql-client- <version> 패키지를 설치해야합니다.

이를 수정하는 가장 쉬운 방법은 postgresql-client 메타 패키지 를 설치하는 것입니다. 항상 Debian 기반 시스템의 PostgreSQL에 대해 현재 지원되는 데이터베이스 클라이언트 패키지에 따라 다르며 postgresql-client-common에 따라 다릅니다.

sudo apt-get install postgresql-client

참고 URL : https://stackoverflow.com/questions/28290488/get-error-you-must-install-at-least-one-postgresql-client-version-package-whe

반응형