前提・実現したいこと
Railsチュートリアルの1.3.2において、Default Rails ページを表示させたい。
発生している問題・エラーメッセージ
Railsチュートリアルの1.3.2に従い、以下を実行。
ec2-user:~/environment/hello_app (master) $ rails server
=> Booting Puma
=> Rails 5.1.6 application starting in development
=> Run rails server -h
for more startup options
Puma starting in single mode...
- Version 3.9.1 (ruby 2.6.3-p62), codename: Private Caller
- Min threads: 5, max threads: 5
- Environment: development
- Listening on tcp://localhost:8080
Use Ctrl-C to stop
preview→preview Running Applicationを選択
→この時点でVFS connection does not existがcloud9内部ブラウザに表示されている。
→pop out new window押下
→ブラウザ上でVFS connection does not existが表示される
試したこと
AWS cloud9を停止しcloud9を再起動
→状況変わらず
コマンドを
rails s -b 0.0.0.0 -p 8080
に変更
表示が以下の通りに
ec2-user:~/environment/hello_app (master) $ rails s -b 0.0.0.0 -p 8080
=> Booting Puma
=> Rails 5.1.6 application starting in development
=> Run rails server -h
for more startup options
Puma starting in single mode...
- Version 3.9.1 (ruby 2.6.3-p62), codename: Private Caller
- Min threads: 5, max threads: 5
- Environment: development
- Listening on tcp://0.0.0.0:8080
Use Ctrl-C to stop
→しかし状況変わらず。
補足情報(FW/ツールのバージョンなど)
環境 AWS cloud9
あなたの回答
tips
プレビュー