Displaying 20 results from an estimated 11000 matches similar to: "kill webrick process on OSX Lion {localhost:3000}"
2011 Mar 17
7
Beta Invitation in Rails 3, little problem
INVITATION BETA EMAIL
I have in the email that the app send to friend''s email address
------------------------
You are invited to ExampleApp.com click below to signup
http://localhost:3000/signup.efweiuvwnjernfwkefwebhsohj
------------------------
But I have a dot in the url beteween http://localhost:3000 and the token
I wish the following url
2007 Jan 24
8
Viewing Rails from non-localhost using WEBrick server
During development, I''d like to see my Rails app from a computer other
than localhost on a Linux system and also want to change the default
port#. I thought this would do it:
Linux server:
$ script/server -b 10.4.1.84 -p 5432
=> Booting WEBrick...
=> Rails application started on http://10.4.1.84:5432
=> Ctrl-C to shutdown; call with --help for options
...
Windows browser URL:
2005 Dec 17
6
Why would Webrick use 0.0.0.0:3000 instead of 127.0.0.1:3000 ?
Someone working through my Rolling with Ruby on Rails tutorial is having
this problem. Does anyone know what could cause it? I pasted the text of
his message below.
Thanks,
Curt
-- Original Message --
I am using Instant Rails which comes with Rails 1.0, WEBrick 1.3.1 and
Ruby 1.8.2 and I ran the WEBrick server and it starts on
http://0.0.0.0:3000 and not http://127.0.0.1:3000. However, when
2011 Nov 18
1
celtenc 0.11.1 not generating encoded file on OSX Lion
Hi,
I am running celt 0.11.1 on my mac which is running osx lion. I invoke
celt such as so:
celtenc original.wav output.oga
I do not see any files being encoded, the wave file is stereo 16 bit at
44.1kHz.
Any ideas on why this is not working? I also tried the opus git repo for
the latest sources, but that also does not produce an encoded file.
Thanks
--
-baeksanchang
-------------- next
2012 Feb 27
2
using windows vst plug-ins with logic 9 on mac osx lion
I have just discovered the existence of Wine as I was thinking of creating a Windows partition in order to process audio files using some of the great VST fx plugins (such as dblue glitch) that are only available on Windows. I could then import the files into Logic 9 on Mac OSX Lion for use in my music.
A Windows partition seemed the only solution until I stumbled across the Wine website: I tried
2011 Nov 26
2
Medieval II: Total war Gold on Mac OSX Lion
Hi. I'm trying to install this, and have run into problems.
While it's installed now, it's impossible to run.
I installed it using CrossOver. Is this any help?
If I could just be given some advice, that would be a great help. Thanks!
2011 Aug 31
1
<TAB> completion in R console when using Lion OSX
R version: 2.13.1 64 bit for macOSX
R console version: R for Mac OS X GUI 1.40-devel Leopard build 64-bit (5874)
Problem: When I go to use the <TAB> auto completion feature it keeps tagging on all the listed options instead of just allowing me to pick one. Is there a fix for this?
2006 Dec 07
2
No Instant Gratification ! Browser can''t access localhost:3000 (IR 1.4)
Hi! I''m learning Ruby on Rails with the Agile Web Development With Rails
book. I have installed InstantRails 1.4 (under windows xp 2) and after
doing all steps (gem updates, rails demo, ruby script/server which
launches WEBrick server), I can''t access the localhost:3000 with the
browser. I tried 127.0.0.1:3000 in apache config, then with my IP
address 192.168.1.100:3000
2012 May 16
7
Rails 3.1.0 cannot connect to sqlite database on Mac Lion
I''m running Rails 3.2.3 on Mac Lion with sqlite 3.7.7 and ruby 1.9.3p125. I need to back down rails to 3.1.0 for a project but when I do that a simple index page give me a
ActiveRecord::ConnectionNotEstablished
error.
Rails 3.2.3 works, 3.1.0 not. Any ideas?
Just to show you it''s nothing fancy....
Gem file is only:
source ''https://rubygems.org''
gem
2011 Aug 30
6
WINE + TrackManiaNations4Ever on OsX 10.7 (Lion)
Hi all,
I am completely new to OS X and Wine, so I might ask a very stupid question now. If so, please forgive me; I searched the Forum, WineHQ and Google and couldnt find an answer to my problem.
I would like to run TrackManiaNations4Ever on my Mac (Os X 10.7 Lion), and i downloaded the program from
http://www.gamefront.com/files/10013754
I have MacPorts and Wine installed, and i was
2009 Oct 02
4
Can't access http://localhost:3000
Hello,
Pure newbie question.
After installeing Ruby, Rail and al the gems I am following the
tutorial here
http://guides.rubyonrails.org/getting_started.html
I start a server with Mongrel and it seems to be working, but when I
try to acces http://localhost:3000 i get a firefox error:
Firefox can''t establish a connection to the server at localhost:3000
I work under Vista with Ruby the
2006 Oct 19
2
WEBRick process not responding after few hours (rails 1.1.6 on linux)
the rail application I have developed (really simple one 2 -> db tables
with no more than 100 records) works perfectly in development /
production mode on my windows desktop (win200 pro + mysql + ruby 1.8.2
+ rails 1.1.6). when deploying the application on linux (ruby 1.8.4 ,
rails 1.1.6 the same mysql as on windows) everything *seems* to work
fine. well atleast for the first few hours. the
2013 Jul 04
4
localhost:3000
My third post here. I''m learning Rails.
getting Oops! Google Chrome could not connect to localhost:3000
I reinstalled Ruby and Rails. I create the Rails new ???? then run Rails
S or Rails server. still cant get the localhost:3000 to start.
I''m running Windows 8.1
Ruby version 2.0.0p0
Rails 4.0.0
--
You received this message because you are subscribed to the Google
2005 Dec 28
2
where is WEBrick (daemon mode) output? not in log/server.log
I am running WEBrick in daemon mode (with the -d option). Where is the
server output that would ordinarily be on my console if I ran without
the -d option?
APP_ROOT/log/server.log is empty and not being appended to, though it is
owned by the same user WEBrick is running as and has write permissions.
The only files in APP_ROOT/log are:
development.log
production.log
server.log
test.log
Where
2006 Mar 03
1
starting webrick from ruby (tar2rubyscript.rb)
I am using tar2rubyscript to package up a rails application and run it
as one file from the server.
If you run script/server and have lighttpd install it will start lighty
instead of webrick. So, thanks to Erik Veenstra''s suggestion, I add
ARGV.unshift("webrick") to the init.rb file to force webrick to start:
ARGV.unshift("webrick")
load "script/server"
2005 Mar 02
3
App behaves differently on Apache and Webrick
When running on the Webrick server (script/server), my app works fine.
When running on Apache 2.0.52, I get the dreaded ''unitialized constant
Merge'' error. Merge is the name of my model, the controller is
MergesController.
The deadline looms, any help appreciated!
Thanks!
Regards,
JJ
2006 Feb 10
2
Sudden Strange Webrick Error: Errno::ECONNABORTED
Hello,
I''ve been developing an application (on Windows), and everything was
going pretty well, but I suddenly began getting this weird error back
from Webrick after submitting something through ajax, and only through
ajax. I''m submitting a form through ajax, and it is being process
properly - with all the interaction with the database happening
without problem. The response
2006 Mar 21
3
Do module source code changes require reboot of WEBrick?
Assume that I refactor some code into a module and "require it into" my
controller.
Do I then need to restart my WEBrick server each time that I change the
module?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2006 Jun 23
2
WEBrick hangs with OCI8?
Has anyone experienced "hangs" with the WEBrick/OCI8 combination?
The sequence of actions I perform to consistently get WEBrick to hang is:
1. start WEBrick
2. list a table form my Oracle 10g DB
3. startup sqlplus and update a few records in the table
4. go back to my browser and reload the table
Here none of the chances I made directly to the table are reflected
in the listing.
2006 Feb 19
5
Memory use: WEBrick vs Apache
Hello,
>From purely a memory consumption standpoint, is it generally more
efficient to run a simple Rails app using WEBrick alongside a separate
apache installation or to run Rails under FCGI and use Apache to bridge
to the Web?
I have looked through lots of docs and old forum posts. Most seem to
center on just getting Apache+Rails running, or on speed.
I am really not concerned about my