MacOS上でDockerを起動してCentOS7が動いています。
コマンドライン上ではsqlite3 が使用できますが、rubyからrequireすると
エラーになりました。
Docker上でのrubyでSQLiteを使用したいのですが、これを解決するにはどうすれば良いでしょうか。
[root@ed6c8567e38f db]# cat /etc/redhat-release CentOS Linux release 7.8.2003 (Core) [root@ed6c8567e38f db]# sqlite3 --version 3.7.17 2013-05-20 00:56:22 118a3b35693b134d56ebd780123b7fd6f1497668 [root@ed6c8567e38f db]# ruby test.rb /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- sqlite3 (LoadError) from /usr/share/rubygems/rubygems/core_ext/kernel_require.rb:55:in `require' from test.rb:2:in `<main>'
これは過去にも経験していたのでgemでsqlite3をインストールすると、
[root@a8e04140ed56 /]# gem install sqlite3 Fetching: sqlite3-1.4.2.gem (100%) Building native extensions. This could take a while... ERROR: Error installing sqlite3: ERROR: Failed to build gem native extension. /usr/bin/ruby extconf.rb mkmf.rb can't find header files for ruby at /usr/share/include/ruby.h Gem files will remain installed in /usr/local/share/gems/gems/sqlite3-1.4.2 for inspection. Results logged to /usr/local/share/gems/gems/sqlite3-1.4.2/ext/sqlite3/gem_make.out
sqlite-develをインストールしました。
[root@ed6c8567e38f db]# yum install -y sqlite-devel
エラーは変わらなかったのでruby-develをインするトールしました。
[root@ed6c8567e38f db]# yum install -y ruby-devel [root@a8e04140ed56 /]# gem install sqlite3 Building native extensions. This could take a while... ERROR: Error installing sqlite3: ERROR: Failed to build gem native extension. /usr/bin/ruby extconf.rb *** 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 (以下略)
mkmf.logを読んでねとあったので、探して開きました
[root@a8e04140ed56 /]# cat /usr/local/share/gems/gems/sqlite3-1.4.2/ext/sqlite3/mkmf.log "gcc -o conftest -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mtune=generic -fPIC conftest.c -L. -L/usr/lib64 -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic -m64 -lruby -lpthread -lrt -ldl -lcrypt -lm -lc" checked program was: /* begin */ 1: #include "ruby.h" 2: 3: int main(int argc, char **argv) 4: { 5: return 0; 6: } /* end */
とくにヒントになるメッセージはありませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。