I am trying to deploy rails on a remote server(RedHat Linux), I am using WinSCP and Putty, I have installed ruby,and Rails, and created a rails app using "# rails test" then: " # cd test # ruby script/server --binding=61.129.my.host " then Webrick was successfully started, but i cannot access it in my local IE, the browser says:"cannot find server", but I can use "# wget http://61.129.my.host:3000 " to download a "index.html"! any one have a idea with it? thank you all! I am new to linux. :(
On 7 May 2005, at 12:28, hui wrote:> then Webrick was successfully started, > but i cannot access it in my local IE, > the browser says:"cannot find server", > > but I can use "# wget http://61.129.my.host:3000 " to download a > "index.html"!Your server probably has a firewall running, so ports like FTP, HTTP, SSH, etc, all work fine remotely.. but 3000 (not generally used for anything in particular) is blocked out. Best of luck, Pete