Is is possible to install Ruby on Rails alongside WampServer (and keep WampServer's Apache/MySQL installs)?
|
feedback
|
|
I have finally installed Ruby on Rails alongside WampServer. Here is how to do it: PS: Replace *C:\wamp* in the following text by your own WampServer's install repertory. Installing Ruby
Installing Rails and the Mongrel server
Integrating with Apache
You can now go to www.hello.com and it should load your Rails app ! References | ||||
feedback
|
|
This document walks you through installing RoR on WampServer. | |||||
feedback
|
|
Yes, There is InstantRails | |||||
feedback
|
|
This is assuming you're trying to set up a development environment, because it doesn't make much sense to use Windows and/or WAMP for a production server. You can instally Ruby rather easily on Windows using the Ruby installer. There's also the one-click installer which includes a number of libraries (though you can install these yourself with rubygems later). You are correct in that you install Rails (and dependencies) as a gem. Now, as for Apache... I'm going to suggest that you keep your WAMP installation and simply don't use it for Ruby/Rails. Ruby has a built-in web server called WEBrick, and there's another light-weight server called Mongrel (available as a gem). These can be run simultaneously with Apache, with Apache serving PHP content and Mongrel/WEBrick serving Rails. They'll run on different ports (Apache on 80, Mongrel/WEBrick on 3000 by default), so there shouldn't be any conflicts. There are several advantages with this approach:
MySQL is separate from Apache, so your Rails app will be able to access MySQL databases regardless of which server is serving its content. Naturally, you'll have to run at least the MySQL version of WAMP in order for it to work. | |||
|
feedback
|
This is a comment for the correct top rated answer.I can't comment on answers for some strange reason, so here's what happened when I started the Windows service.
Or alternatively, to setup Rails with Apache, you can do this Scroll all the way to the bottom of httpd.conf, and add the following, and then restart the server. You can find httpd.conf from the Wamp menu in the system tray.
| ||||
|
feedback
|