每当我在我的VPS(CentOS Linux版本7.0.1406(Core))上运行bundle install
时,我在安装pg gem时会出错。
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
我可以使用gem install pg -- --with-pg-config=/usr/pgsql-9.4/bin/pg_config
安装pg standalone并解决问题。
所以我添加了一个capistrano任务来为部署创建一个./bundle/config,其中build.pg键设置为我的VPS上的pg_config路径。在Capistrano config/deploy.rb
中,调用before bundler:install
。
desc "Create bundle config"
task :prepare_bundle_config do
on roles(:app) do
within release_path do
execute :bundle, 'config build.pg --with-pg-config=/usr/pgsql-9.4/bin/pg_config --local'
end
end
end
我安装了必要的软件包:
postgresql94-server.x86_64
postgresql94-devel.x86_64
postgresql94-libs.x86_64
libpqxx.x86_64
libpqxx-devel.x86_64
以下是我安装的capistrano *宝石
bundle list | grep capistrano
* capistrano (3.3.5)
* capistrano-bundler (1.1.4)
* capistrano-rails (1.1.2)
* capistrano-rbenv (2.0.3)
* capistrano-stats (1.1.1)
我在这里想要用bundler成功安装pg是什么?如果您需要任何其他信息,请发表评论,我将更新此帖。
答案 0 :(得分:18)
postgres二进制文件不在路径中。将它们符号链接到路径中的目录,你应该做得很好:ln -s /usr/pgsql-9.4/bin/p* /usr/local/bin
。
你是建造postgres还是从yum安装它?
答案 1 :(得分:0)
我发现如果我用源代码编译pgsql,并且PATH ENV没有用pgsql / bin进行配置,那么就会发生这种情况。你可以尝试一下。
答案 2 :(得分:0)
只需发布PostgreSQL 11的解决方案即可。
sudo yum install epel-release
sudo yum install postgresql11-llvmjit
sudo yum install postgresql11-devel postgresql11-libs
然后运行
gem install pg -v '1.2.3' -- --with-pg-config=/usr/pgsql-11/bin/pg_config
就这样