MySQLがbundle installできなくて困る

最近のMacMojavesがMySQLと相性悪い??困る。

AppleはOpenSSLを使わなくなると?だからその分の変更手続きが必要だと?

 

Railsのアプリケーションを立ち上げようとして、bundle innstallしたらこんなエラーがでる。

 

$ bundle install
  (略)
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /Users/akito/git/media/vendor/bundle/gems/mysql2-0.4.4/ext/mysql2
/Users/akito/.rbenv/versions/2.3.1/bin/ruby -r ./siteconf20160929-55293-192vx35.rb extconf.rb
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for rb_thread_blocking_region()... no
checking for rb_wait_for_single_fd()... yes
checking for rb_hash_dup()... yes
checking for rb_intern3()... yes
-----
Using mysql_config at /usr/local/bin/mysql_config
-----
checking for mysql.h... yes
checking for errmsg.h... yes
checking for mysqld_error.h... yes
-----
Don't know how to set rpath on your system, if MySQL libraries are not in path mysql2 may not load
-----
-----
Setting libpath to /usr/local/Cellar/mysql/5.7.14/lib
-----
creating Makefile

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /Users/akito/git/media/vendor/bundle/extensions/x86_64-darwin-15/2.3.0-static/mysql2-0.4.4/mkmf.log

current directory: /Users/akito/git/media/vendor/bundle/gems/mysql2-0.4.4/ext/mysql2
make "DESTDIR=" clean

current directory: /Users/akito/git/media/vendor/bundle/gems/mysql2-0.4.4/ext/mysql2
make "DESTDIR="
compiling client.c
compiling infile.c
compiling mysql2_ext.c
compiling result.c
compiling statement.c
linking shared-object mysql2/mysql2.bundle
ld: library not found for -lssl   ←ここがポイント
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [mysql2.bundle] Error 1

make failed, exit code 2

Gem files will remain installed in /Users/akito/git/media/vendor/bundle/gems/mysql2-0.4.4 for inspection.
Results logged to
/Users/akito/git/media/vendor/bundle/extensions/x86_64-darwin-15/2.3.0-static/mysql2-0.4.4/gem_make.out

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

 

 このようなエラー文が出て、MySQLがインストールできないということです。

 どうも文中にある  ld: library not found for -lssl が大事らしい。

SSL(Secure Sockets Layer)/TLS(Transport Layer Security)のパスが通るためのLibraryが見つからない。

  なのでパスを追加する。参考にしたQiitaの記事からすると

  ・LDFLAGS: -L/usr/local/opt/openssl/lib
  ・CPPFLAGS: -I/usr/local/opt/openssl/include

  のふたつのパスをMySQLのビルド時に追加する必要がある。なので以下のコマンドを実行する。

 

 $ bundle config --local build.mysql2 "--with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include"

 

 これで bundle install すれば OKである。

 

<参考記事> ありがとうございました。

https://qiita.com/akito19/items/e1dc54f907987e688cc0

http://sexyhacker.net/home/2018/10/30/%E3%80%90rails%E3%80%91%E3%81%93%E3%82%8C%E3%81%A0%E3%81%91%E3%81%A7%E7%B5%B6%E5%AF%BE%E7%9B%B4%E3%82%8B%EF%BC%81-bundle-install-%E3%82%A8%E3%83%A9%E3%83%BC-mysql2%E3%81%8C%E3%82%A4%E3%83%B3%E3%82%B9/