ubuntu 20.04 ltsにてrails serverを起動してアクセスしようとしたところ、URLが表示されずエラー文も出ず詰まってしまいました。
有識者の方にご助力を仰がせていただきたく質問投稿しました。
よければ教えていただけないでしょうか?
やりたいこと
rails serverを立ち上げてWEBアプリ開発がしたい
調べたり確認したこと
railsのインストールが失敗しているかと思い確認してみた
$ rails -v Rails 6.0.3.3 ruby -v ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-linux]
インストールはできていそう???
つぎに再度 rails serverコマンドを実行してみる
rails server Usage: rails new APP_PATH [options] Options: [--skip-namespace], [--no-skip-namespace] # Skip namespace (affects only isolated applications) -r, [--ruby=PATH] # Path to the Ruby binary of your choice # Default: /home/admin0/.rbenv/versions/2.7.1/bin/ruby -m, [--template=TEMPLATE] # Path to some application template (can be a filesystem path or URL) -d, [--database=DATABASE] # Preconfigure for selected database (options: mysql/postgresql/sqlite3/oracle/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc) # Default: sqlite3 ~~~~~~中略~~~~~~~~~~ Rails options: -h, [--help], [--no-help] # Show this help message and quit -v, [--version], [--no-version] # Show Rails version number and quit Description: The 'rails new' command creates a new Rails application with a default directory structure and configuration at the path you specify. You can specify extra command-line arguments to be used every time 'rails new' runs in the .railsrc configuration file in your home directory. Note that the arguments specified in the .railsrc file don't affect the defaults values shown above in this help message. Example: rails new ~/Code/Ruby/weblog This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
rails serverのURLが表示されないので不審に思い調べたところ、以下の質問https://teratail.com/questions/108980
のように
=> Booting Puma => Rails 5.0.3 application starting in development on http://localhost:3000 => Run `rails server -h` for more startup options
とURLが表示されると思うのですがそれすら出ず。。。
本当に起動できているか確認してみたが起動できていなさそうです。
ps aux | grep puma admin0 71 0.0 0.0 16072 1124 tty1 S 22:27 0:00 grep --color=auto puma
このような状況でても足もでず困ってます。よければアドバイスもらえませんか?
使用環境
ubuntu 20.04 LTS
Windows 10 home
やっていた手順
https://railsgirls.jp/install#setup_for_windows_without_wsl
これの動作確認項目まで進んでいます。
回答1件
あなたの回答
tips
プレビュー