2

我正在尝试在 OS X 10.9 上安装 metasploit。我运行捆绑安装的所有内容,installing pg (0.16.0)都会出错

/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin13/rbconfig.rb:212: warning: Insecure world writable dir /usr/local in PATH, mode 040777
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/..
Using rake (10.1.0) 
Using i18n (0.6.5) 
Using multi_json (1.0.4) 
Using activesupport (3.2.14) 
Using builder (3.0.4) 
Using activemodel (3.2.14) 
Using arel (3.0.2) 
Using tzinfo (0.3.37) 
Using activerecord (3.2.14) 
Using database_cleaner (1.1.1) 
Using diff-lcs (1.2.4) 
Using factory_girl (4.2.0) 
Using fivemat (1.2.1) 
Using json (1.8.0) 
Installing pg (0.16.0) 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb 
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin13/rbconfig.rb:212: warning: Insecure world writable dir /usr/local in PATH, mode 040777
checking for pg_config... no
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.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
    --with-pg
    --without-pg
    --with-pg-config
    --without-pg-config
    --with-pg_config
    --without-pg_config
    --with-pg-dir
    --without-pg-dir
    --with-pg-include
    --without-pg-include=${pg-dir}/include
    --with-pg-lib
    --without-pg-lib=${pg-dir}/


Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/pg-0.16.0 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/gems/pg-0.16.0/ext/gem_make.out

An error occurred while installing pg (0.16.0), and Bundler cannot continue.
Make sure that `gem install pg -v '0.16.0'` succeeds before bundling.

我试图安装pg -v '0.16.0'没有运气,pg --without=pg并且pg -v '0.16.0' -- --with-pg-config=/usr/local/Cellar/postgresql/9.3.1/bin/pg_config

他们中的任何一个人都没有运气。有什么建议么?提前致谢。

4

3 回答 3

5

冲泡安装postgres

或者

宝石安装 pg

于 2013-11-29T21:47:12.793 回答
1

我解决了这个问题..您在安装 ruby​​ gems 时可能会做的事情是您忘记在您的 mac 上安装 postgres sql ....我在我的 mac 上运行 metasploit 时也是这样做的...所以我做了什么错误是我确实安装了postgres sql,但它最终出现了一个错误,我确实放手了......所以我终于想通了,我应该安装postgres sql来使pg 0.16 gem正常工作

所以你要做的是

  1. 转到POSTGRES 官方网站 并下载用于 MAC 的 GUI 包它大约为 52.37 MB

  2. 安装它

  3. 在您的终端中运行“捆绑程序安装”

  4. 如果显示错误以 root 身份登录

  5. 然后再次尝试并希望它会安装

现在我猜你一定在想如何以 root 身份登录

所以这里是如何做到这一点

  1. 转到首选项

2.用户和组

3.点击登录选项(它就在+和-符号上方)

  1. 如果该选项已锁定,请单击该金锁单击它..输入您的用户密码..该选项将解锁

5.现在右侧会有一个按钮,即加入点击它

6.然后在弹出点击打开网络目录实用程序

  1. 如果它被锁定,请再次单击该红色锁>>输入您的密码

8.点击编辑>>启用root

  1. 创建密码

你完成了

现在退出

现在您将看到两个气球(如果您有单个用户帐户,则可以更多)单击最后一个类型 root 作为用户名,并且您知道创建密码时的密码

并再次运行捆绑器安装,你就完成了

于 2014-05-01T12:35:45.783 回答
1

您可能需要穿上pg_config. PATH您需要确保 PostgreSQL 可/usr/local/直接用于(不仅仅是在 Homebrew 中Cellar),然后:

export PATH=$PATH:/usr/local/bin

并确保运行:

pg_config --version

发出类似的东西:

$ pg_config --version
PostgreSQL 9.2.5
于 2013-11-11T06:38:49.913 回答