🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
CentOS

CentOSは、主にRed Hat Enterprise Linux(RHEL)をベースにした、フリーのソフトウェアオペレーティングシステムです。

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Chrome

Google Chromeは携帯、テレビ、デスクトップなどの様々なプラットフォームで利用できるウェブブラウザです。Googleが開発したもので、Blink (レンダリングエンジン) とアプリケーションフレームワークを使用しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

2回答

2129閲覧

rails sでブラウザの読み込みができない

退会済みユーザー

退会済みユーザー

総合スコア0

CentOS

CentOSは、主にRed Hat Enterprise Linux(RHEL)をベースにした、フリーのソフトウェアオペレーティングシステムです。

Ruby

Rubyはプログラミング言語のひとつで、オープンソース、オブジェクト指向のプログラミング開発に対応しています。

Chrome

Google Chromeは携帯、テレビ、デスクトップなどの様々なプラットフォームで利用できるウェブブラウザです。Googleが開発したもので、Blink (レンダリングエンジン) とアプリケーションフレームワークを使用しています。

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

2クリップ

投稿2021/02/26 02:25

前提・実現したいこと

rails sでサーバーを立ち上げるときに、ターミナル上では下記のように立ち上がっているはずですが、ブラウザで読み込むことができません。

よろしくお願いいたします。

発生している問題・エラーメッセージ

rails s -b 0.0.0.0 => Booting Puma => Rails 6.1.3 application starting in development => Run `bin/rails server --help` for more startup options Puma starting in single mode... * Puma version: 5.2.1 (ruby 2.7.1-p83) ("Fettisdagsbulle") * Min threads: 5 * Max threads: 5 * Environment: development * PID: 17177 * Listening on http://0.0.0.0:3000 Use Ctrl-C to stop

試したこと

chrome,firefoxで、http://192.168.33.10:3000/を試してみました。

補足情報(FW/ツールのバージョンなど)

Rails 6.1.3
ruby 2.7.1
Vagrant 2.2.14
centos7

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

shinoharat2

2021/02/26 23:49

Vagrantfile の中身を見せてください
退会済みユーザー

退会済みユーザー

2021/02/28 00:23

返信が遅れて申し訳ございません。下記のような感じです。 # -*- mode: ruby -*- # vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure # configures the configuration version (we support older styles for # backwards compatibility). Please don't change it unless you know what # you're doing. Vagrant.configure("2") do |config| # The most common configuration options are documented and commented below. # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. # Every Vagrant development environment requires a box. You can search for # boxes at https://vagrantcloud.com/search. config.vm.box = "centos7" # Disable automatic box update checking. If you disable this, then # boxes will only be checked for updates when the user runs # `vagrant box outdated`. This is not recommended. # config.vm.box_check_update = false # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. # NOTE: This will enable public access to the opened port # config.vm.network "forwarded_port", guest: 80, host: 8080 # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine and only allow access # via 127.0.0.1 to disable public access config.vm.network "forwarded_port", guest: 3000, host: 3000, host_ip: "127.0.0.1" # Create a private network, which allows host-only access to the machine # using a specific IP. config.vm.network "private_network", ip: "192.168.33.10" # Create a public network, which generally matched to bridged network. # Bridged networks make the machine appear as another physical device on # your network. # config.vm.network "public_network" # Share an additional folder to the guest VM. The first argument is # the path on the host to the actual folder. The second argument is # the path on the guest to mount the folder. And the optional third # argument is a set of non-required options. # config.vm.synced_folder "../data", "/vagrant_data" # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options. # Example for VirtualBox: # config.vm.provider "virtualbox" do |vb| # # Display the VirtualBox GUI when booting the machine # vb.gui = true # # # Customize the amount of memory on the VM: vb.memory = "4096" end # # View the documentation for the provider you are using for more # information on available options. # Enable provisioning with a shell script. Additional provisioners such as # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the # documentation for more information about their specific syntax and use. # config.vm.provision "shell", inline: <<-SHELL # apt-get update # apt-get install -y apache2 # SHELL end
shinoharat2

2021/02/28 15:44

ありがとうございます。 うーん、特に変な設定はなさそうですね。。。 1・↓の行をコメントアウト ``` config.vm.network "forwarded_port", guest: 3000, host: 3000, host_ip: "127.0.0.1" ``` 2・vagrant up 3・仮想環境で rails s -b 0.0.0.0 4・ブラウザで http://192.168.33.10:3000 にアクセス だとどうなりますか?
退会済みユーザー

退会済みユーザー

2021/03/01 06:08

コメントアウトをしてアクセスしても、「このサイトは接続できません」と表示されいけませんでした。 firewalledの設定を行おうと思ったのですが、zonesディレクトリとfirewalledの設定ファイルがなかったのですが、どうしたら良いでしょうか。
shinoharat

2021/03/01 06:49

権限でアクセスできなかったんじゃなくて、本当にファイル自体が存在しなかったんでしょうか? $ sudo cat /etc/firewalld/zones/public.xml と打つと、 No such file or directory になりますか?
shinoharat

2021/03/01 06:52

$ sudo firewall-cmd --state コマンドの結果も教えて欲しいです。
退会済みユーザー

退会済みユーザー

2021/03/01 06:57

sudo cat /etc/firewalld/zones/public.xmlと打ったら、ありました。すいません。 sudo firewall-cmd --stateと打ったら、runningと表示されました。
shinoharat

2021/03/01 07:02

> sudo cat /etc/firewalld/zones/public.xmlと打ったら、ありました。 良かったです! 一部の設定ファイルは、編集に管理者権限が必要な場合があるので、コマンドの先頭に sudo を付けて実行してください。
shinoharat

2021/03/01 07:03

> sudo firewall-cmd --stateと打ったら、runningと表示されました。 やっぱりファイアウォールが有効な状態ですね。 public.xml の修正と port3000 の許可で直るんじゃないかと思います。たぶん。
退会済みユーザー

退会済みユーザー

2021/03/01 08:08

無事アクセスできました。 大変助かりました。 ありがとうございました。
shinoharat2

2021/03/01 12:02

解決したようで何よりです。 回答欄にも記載しましたので、差し支えなければベストアンサー選択をお願いいたします????
guest

回答2

0

ベストアンサー

ファイアウォール(firewalld)が原因と思われます。
以下の記事を参考に public.xml の修正と port3000 の許可を行ってみてください。

Vagrant + rails + CentOS7の組み合わせでゲストOSのlocalhost:3000に接続できない場合 | Qiita

なお、ファイルによっては管理者権限が必要です。
権限エラー(Permission Denied)が出る場合は、以下のようにコマンドの先頭に「sudo」を付加してください。

$ sudo vi /etc/firewalld/zones/public.html

投稿2021/03/01 12:01

shinoharat2

総合スコア73

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

0

普通に "localhost:3000" とうっても表示されませんか?

投稿2021/02/26 02:27

sasaharukimedes

総合スコア27

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

退会済みユーザー

退会済みユーザー

2021/02/26 02:37

「このサイトにアクセスできません」と表示されてできませんでした。
sasaharukimedes

2021/02/26 02:42

うーん, ローカルサーバーは立ち上がってそうですけどね...
sasaharukimedes

2021/02/26 02:44

一度, コマンドプロンプトを消してから再度コマンドを打ち直してみてはいかがでしょうか?rails sだけで行けないですか?
退会済みユーザー

退会済みユーザー

2021/02/26 03:14

このような表示が出たのですが、できませんでした。 => Booting Puma => Rails 6.1.3 application starting in development => Run `bin/rails server --help` for more startup options Puma starting in single mode... * Puma version: 5.2.1 (ruby 2.7.1-p83) ("Fettisdagsbulle") * Min threads: 5 * Max threads: 5 * Environment: development * PID: 16969 * Listening on http://127.0.0.1:3000 * Listening on http://[::1]:3000 Use Ctrl-C to stop
sasaharukimedes

2021/02/26 05:40

listening on ~~ の部分をまんまコピペして貼っても行けないですか?
退会済みユーザー

退会済みユーザー

2021/02/26 07:37

いけませんでした。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問