[ruby-on-rails-3] 오류 발생 : heroku에 배포 할 때 하나 이상의 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 클라이언트를 어디에 설치해야합니까? 어떤 도움



답변

데비안 기반 시스템에서 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


답변

2020 년 3 월 30 일 업데이트

선택한 답변에 동의하지만 Ubuntu 18에 postgresql-client-12 를 설치 하는 것이 약간 더 관련되어 있음을 알았습니다 .

sudo apt update
sudo apt -y install vim bash-completion wget
sudo apt -y upgrade
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
sudo apt update
sudo apt -y install postgresql-client-12

자세한 내용은 이 참조 를 참조하십시오.


답변