Access webrick/rails from another computer on local network

↘锁芯ラ 提交于 2019-12-18 10:08:12

问题


I have a rails application running on localhost:3000. I wish to access it from another computer on the same network. I feel like i've done this before with ease, but it's giving me some grief. I can ping the IP of the computer just fine, but hitting ip:3000 in the browser doesnt work. I tried launching rails s -b ipaddress as well, and no luck.

Suggestions?


回答1:


Try running the server on port 80 instead, your firewall is probably blocking port 3000.




回答2:


After making sure your server side firewall is open to the incoming connection on high ports (this is normally true and the default port is 3000, so you probably don't have to do anything) you must also start the server like this:

rails server -b 0.0.0.0

which binds it to the universal address. It binds to localhost by default.

Using this method you don't have to bind to port 80, but you can like this:

rails server -b 0.0.0.0 -p 80

(If you're using rvm then you may need to use rvmsudo)


To make this change more permanent edit your config/boot.rb and add this:

require 'rails/commands/server'
module Rails
  class Server
    def default_options
      super.merge(Host:  '0.0.0.0', Port: 3000)
    end
  end
end

Then you should only have to use rails s

Source: https://stackoverflow.com/a/29562898/1795429




回答3:


rails server -b 0.0.0.0 -p 8000

This worked for me. No firewall issues, and no need to give super user permissions.




回答4:


  1. Yes, this was a good answer in general:

    rails server -b 0.0.0.0
    
  2. If you use Ubuntu, you probably have to open the port in the firewall:

    sudo ufw allow 3000
    
  3. If your system is running in VirtualBox, you have to check your Network Settings.

    In the case of network mode NAT you have to click to the extended options and there to Port Forwarding. Add a rule for TCP protocoll, host port 3000 (or any other), and guest port 3000.




回答5:


Assuming Webrick starts without issue, this is 100% a firewall issue. You should provide some specifications, like what operating system your host is running and whether or not you have administrator privileges as far as controlling the firewall.

If you're on Linux and running the iptables firewall service, you need to add a rule to accept traffic over port 3000. It would look something like:

iptables -A INPUT -p tcp --dport 3000 -j ACCEPT

That command would be a one-time-only solution though, you'd need to extend your current iptables rules script to make it permanent every time your system boots or logs in.

If you're running Windows, depending on whether you're running XP or Vista/7, you'd need to do something similar. I'm going to assume you're in the Vista/7 environment, and you would just need to follow the steps provided through this guide http://windows.microsoft.com/en-US/windows7/Open-a-port-in-Windows-Firewall.




回答6:


One reason is your ip is not bind to the rails server. You can bind the ip with -b command option.

Usage: rails server [mongrel, thin etc] [options]
-p, --port=port                  Runs Rails on the specified port.
                                 Default: 3000
-b, --binding=IP                 Binds Rails to the specified IP.
                                 Default: localhost



回答7:


I am using foreman to manage my Procfile-based application.

Adding -b 0.0.0.0 to my bundle exec rails s command in Procfile worked for me.



来源:https://stackoverflow.com/questions/7325663/access-webrick-rails-from-another-computer-on-local-network

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!