centOS7 上での rails開発環境構築中です。
基本的には、
qiita
にのっとってやっています。
ローカルでhttp://192.168.33.10:3000にアクセスするしようとすると、
ActiveRecord::ConnectionNotEstablished raise ConnectionNotEstablished, "No connection pool with '#{spec_name}' found."
と表示されてしまいます。
おそらく、
テラテイル
と同様の事が起こっており、
sqliteのバージョンを
gem 'sqlite3', '~> 1.3.6'
と指定して、bundle updateして、rails serverとしてもダメです。
bundle update すると、
[vagrant@localhost myapp]$ bundle update The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`. Fetching gem metadata from https://rubygems.org/............ Fetching gem metadata from https://rubygems.org/. Resolving dependencies... Using rake 12.3.3 Using concurrent-ruby 1.1.5 Using i18n 1.6.0 Using minitest 5.11.3 Using thread_safe 0.3.6 Using tzinfo 1.2.5 Using zeitwerk 2.1.10 Using activesupport 6.0.0 Using builder 3.2.3 Using erubi 1.8.0 Using mini_portile2 2.4.0 Using nokogiri 1.10.4 Using rails-dom-testing 2.0.3 Using crass 1.0.4 Using loofah 2.2.3 Using rails-html-sanitizer 1.2.0 Using actionview 6.0.0 Using rack 2.0.7 Using rack-test 1.1.0 Using actionpack 6.0.0 Using nio4r 2.5.1 Using websocket-extensions 0.1.4 Using websocket-driver 0.7.1 Using actioncable 6.0.0 Using globalid 0.4.2 Using activejob 6.0.0 Using activemodel 6.0.0 Using activerecord 6.0.0 Using mimemagic 0.3.3 Using marcel 0.3.3 Using activestorage 6.0.0 Using mini_mime 1.0.2 Using mail 2.7.1 Using actionmailbox 6.0.0 Using actionmailer 6.0.0 Using actiontext 6.0.0 Using public_suffix 4.0.1 Using addressable 2.7.0 Using bindex 0.8.1 Using msgpack 1.3.1 Using bootsnap 1.4.5 Using bundler 2.0.2 Using byebug 11.0.1 Using regexp_parser 1.6.0 Using xpath 3.2.0 Using capybara 3.29.0 Using childprocess 2.0.0 Using ffi 1.11.1 Using jbuilder 2.9.1 Using rb-fsevent 0.10.3 Using rb-inotify 0.10.0 Using ruby_dep 1.5.0 Using listen 3.1.5 Using method_source 0.9.2 Using puma 3.12.1 Using thor 0.20.3 Using railties 6.0.0 Using sprockets 3.7.2 Using sprockets-rails 3.2.1 Using rails 6.0.0 Using rubyzip 1.2.4 Using sass-listen 4.0.0 Using sass 3.7.4 Using tilt 2.0.9 Using sass-rails 5.1.0 Using selenium-webdriver 3.142.4 Using spring 2.1.0 Using spring-watcher-listen 2.0.1 Using sqlite3 1.3.13 Using turbolinks-source 5.2.0 Using turbolinks 5.2.0 Using web-console 4.0.1 Using webdrivers 4.1.2 Cleaning all the gems on your system is dangerous! If you're sure you want to remove every system gem not in this bundle, run `bundle clean --force`. [vagrant@localhost myapp]$ rails server -b 192.168.33.10 -d => Booting Puma => Rails 6.0.0 application starting in development => Run `rails server --help` for more startup options A server is already running. Check /home/vagrant/rails_lessons/myapp/tmp/pids/server.pid. [vagrant@localhost myapp]$
sqlite3は1.3.13となっています。これはまちがいでしょうか?
ご教示いただければありがたいです。
追記
bundle update後にこのようなエラーがでます。
Fetching sqlite3 1.3.6 (was 1.3.13) Installing sqlite3 1.3.6 (was 1.3.13) with native extensions Gem::Ext::BuildError: ERROR: Failed to build gem native extension. current directory: /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/sqlite3-1.3.6/ext/sqlite3 /home/vagrant/.rbenv/versions/2.5.3/bin/ruby -I /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/site_ruby/2.5.0 -r ./siteconf20190916-8616-k3a6ic.rb extconf.rb checking for sqlite3.h... yes checking for sqlite3_libversion_number() in -lsqlite3... yes checking for rb_proc_arity()... yes checking for sqlite3_initialize()... yes checking for sqlite3_backup_init()... yes checking for sqlite3_column_database_name()... yes checking for sqlite3_enable_load_extension()... yes checking for sqlite3_load_extension()... yes checking for sqlite3_open_v2()... yes checking for sqlite3_prepare_v2()... yes checking for sqlite3_int64 in sqlite3.h... yes checking for sqlite3_uint64 in sqlite3.h... yes creating Makefile current directory: /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/sqlite3-1.3.6/ext/sqlite3 make "DESTDIR=" clean current directory: /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/sqlite3-1.3.6/ext/sqlite3 make "DESTDIR=" compiling backup.c compiling database.c compiling exception.c compiling sqlite3.c compiling statement.c statement.c: 関数 ‘bind_param’ 内: statement.c:262:7: 警告: 関数 ‘RBIGNUM’ の暗黙的な宣言です [-Wimplicit-function-declaration] if (RBIGNUM_LEN(value) * SIZEOF_BDIGITS <= 8) { ^ In file included from statement.c:1:0: ./sqlite3_ruby.h:16:34: エラー: ‘->’ の無効な型の引数です (‘int’ 型です) #define RBIGNUM_LEN(x) RBIGNUM(x)->len ^ statement.c:262:11: 備考: in expansion of macro ‘RBIGNUM_LEN’ if (RBIGNUM_LEN(value) * SIZEOF_BDIGITS <= 8) { ^ statement.c:262:32: エラー: ‘SIZEOF_BDIGITS’ が宣言されていません (この関数内での最初の使用) if (RBIGNUM_LEN(value) * SIZEOF_BDIGITS <= 8) { ^ statement.c:262:32: 備考: 未宣言の識別子は出現した各関数内で一回のみ報告されます statement.c: 関数 ‘reset_bang’ 内: statement.c:294:7: 警告: 変数 ‘status’ が設定されましたが使用されていません [-Wunused-but-set-variable] int status; ^ statement.c: 関数 ‘clear_bindings’ 内: statement.c:314:7: 警告: 変数 ‘status’ が設定されましたが使用されていません [-Wunused-but-set-variable] int status; ^ statement.c: トップレベル: cc1: 警告: 認識できないコマンドラインオプション "-Wno-self-assign" です [デフォルトで有効] cc1: 警告: 認識できないコマンドラインオプション "-Wno-constant-logical-operand" です [デフォルトで有効] cc1: 警告: 認識できないコマンドラインオプション "-Wno-parentheses-equality" です [デフォルトで有効] cc1: 警告: 認識できないコマンドラインオプション "-Wno-tautological-compare" です [デフォルトで有効] make: *** [statement.o] Error 1 make failed, exit code 2 Gem files will remain installed in /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/gems/sqlite3-1.3.6 for inspection. Results logged to /home/vagrant/.rbenv/versions/2.5.3/lib/ruby/gems/2.5.0/extensions/x86_64-linux/2.5.0-static/sqlite3-1.3.6/gem_make.out An error occurred while installing sqlite3 (1.3.6), and Bundler cannot continue. Make sure that `gem install sqlite3 -v '1.3.6' --source 'https://rubygems.org/'` succeeds before bundling. In Gemfile: sqlite3
1.3.6にアップデートされないのはなぜなのでしょうか?