RVM is great for developing on your local machine. But is it safe on a production machine?

link|improve this question

62% accept rate
1  
If you haven't faced any bugs on your dev machine, I would assume its safe. RVM is used for deployments too. – Zabba May 3 '11 at 1:03
1  
RVM is plenty solid. A better question is, will it do what you want? Perhaps if you describe your goals we could make more useful suggestions. As is this is kind of nebulous. – the Tin Man May 3 '11 at 2:22
The comment by the Tin Man is most excellent. The original question is to general to be answerable. – Wayne E. Seguin Jun 8 '11 at 17:00
feedback

8 Answers

up vote 65 down vote accepted

I built RVM for production and added the developer 'niceties' later on. If you would like more information read the documentation on the website and come talk to me in #rvm on irc.freenode.net sometime during the day EDT most days.

link|improve this answer
Really, I am the first to upvote this comment from the author of RVM? – Nicolai Reuschling Jun 8 '11 at 16:47
4  
He's biased. :) – Dr Nic Jun 8 '11 at 17:58
10  
Biased towards being...awesome. – Caley Woods Jun 8 '11 at 18:06
feedback

Since RVM is just a fancy way of downloading, isolating and switching between existing Ruby implementations, I'd say that it's as production ready as whatever ruby implementation you're currently running it with.

Essentially, all RVM does is point your path at a specific Ruby implementation. This is exactly what happens when you use your *nix distribution's Ruby implementation. The only real difference is that your path will be re-written so that when you run ruby -v it will run a ruby from your current user's .rvm directory instead of a global system directory like /usr/local/bin.

I'd go even further and say that using RVM is a better solution than using what generally gets installed in a *nix distro because it makes it easy to sandbox the specific ruby implementation on a per-user basis. RVM also makes it possible to attempt switching rubies (ie; from 1.8.7 to 1.9.2) on your production app while keeping a solid rollback strategy in place if something doesn't work quite right. It also makes it easier to keep old applications running on one version of Ruby, while switching new apps to more current versions.

link|improve this answer
Well thought out post, you summarized exactly what RVM does/is when used on production correctly. Environment files are the key to consistency there. – Wayne E. Seguin Jun 10 '11 at 12:25
Thanks Wayne, it's good to know that I "get it". RVM is perhaps one of the most useful development tools I've ever used. I'm currently building an app that runs on JRuby, so RVM makes it easy to run my app on MRI in development (because MRI runs my tests much faster) and then switch to JRuby to test it out before I deploy. Kudos! – Jeff Perrin Jun 10 '11 at 19:40
feedback

RVM is apparently a reasonable production tool

You know, I once made a similar rvm is a development tool comment and was informed that rvm was originally a production tool.

So, RVM will make your production environment more complex, which is bad, but it makes it more isolated and compartmentalized, what the language people would call modular, and that's good.

In the end, as long as you test your deployments, I don't see how a static configuration of any kind could be, all by itself, "unsafe".

link|improve this answer
1  
I propose that it makes production environment simpler due to containment and specification :) – Wayne E. Seguin Jun 10 '11 at 12:26
Heh, Wayne is the rvm author. I can certainly believe that rvm simplifies the case where multiple environments are required. – DigitalRoss Jun 13 '11 at 19:17
feedback

I disagree, especially if you're using any kind of automated production process (puppet, chef, fog, etc) and you have more than one or two machines.

We've had issues where version X of RVM worked in a completely different way to version Y of RVM (different default Rubygems versions, different default gemset configs, complete changeup of how system wide install works), breaking our automated provisioning process.

Not an issue if you're developing and on hand to tune things, a killer if you have an unattended scripted / puppet install. We worked around these issues by locking to a particular RVM version, but I remember having a conversation with Wayne where he discouraged this. If we kept using RVM in prod, we were going to actually package it into a series of .debs (one for the install, one for each Ruby).

The way that .rvmrc prompts by default and can only be overriden in the homedir ~/.rvmrc (and not the system-wide one) was also unhelpful.

I actually like the way that RVM will change up and do things this way in development - nothing sucks more than being held back by backward compatibility. This approach, however, cost us some time (and pulled hairs) in production/staging/uat/test.

link|improve this answer
feedback

Yes, I've used rvm on production machines and also set up puppet modules to install rvm as the default system ruby along with gemsets, etc.

If you run multiple apps on a single server, rvm can help you keep all your apps gemsets (and ruby versions) totally separate. However, if you are running only a single app on a server, there may not be as much benefit to having rvm installed.

link|improve this answer
I disagree with the second part as that is the normal use case for most of the people I have worked with :) – Wayne E. Seguin Jun 10 '11 at 12:23
RVM brings a little less awesome to a server running a single app than it does to a server running multiple apps. But in either case its awesomeness cannot be denied. :) – bowsersenior Jun 13 '11 at 16:42
feedback

I've been using RVM on a production webserver for over a year now with zero problems. I've kept it pretty up-to-date, running rvm get head frequently. Zero issues, ever. :)

link|improve this answer
If it's supposed to be suitable for production, should you be constantly running rvm get head? – Andrew Grimm Jun 8 '11 at 23:48
Andrew, what is wrong with getting head often? – Wayne E. Seguin Jun 10 '11 at 12:24
@Wayne: That kind of humor by itself makes it unsuitable for production! (I'm joking about it being a reason against using it, even though I roll my eyes every time I come across it). – Andrew Grimm Jun 10 '11 at 12:57
There's much less of this "getting head" humor now than there used to be. – Andrew Grimm Aug 18 '11 at 21:46
feedback

I've pretty much used RVM on all my production servers running rails apps!. RVM has not let me down.

link|improve this answer
feedback

I guess there's two parts to this question:

  1. Is RVM intended to be for production machines, as opposed to development machines?
  2. Is RVM reliable enough software to be used on production machines?

For (1), Wayne E. Seguin has stated that it's intended to be used on production machines. There's no point in disputing his intent.

For (2), I'm not so sure. Is it appropriate to use software that has a new version number every couple of days on a production machine? Also, RVM once deleted my entire ~/ruby directory. To Wayne's credit, when I told him about it, he fixed it that night, but that doesn't exactly say "production ready" to me.

Edit: I've just read about bumblebee's deletion of /usr, and I'll just say - it could have been worse! LOL.

link|improve this answer
And how long ago was that? The project moves quickly and other than the installer recently things have no longer been changing much. Additionally, what does having new version numbers frequently have to do with anything? Most of the time these are new features disjoint from what is already there. – Wayne E. Seguin Jun 10 '11 at 12:21
If used CORRECTLY in 'production' there should be no issue. – Wayne E. Seguin Jun 10 '11 at 12:23
@Wayne It was last December. – Andrew Grimm Jun 10 '11 at 12:50
Things have come a LONG way since then :) – Wayne E. Seguin Jun 10 '11 at 12:52
1  
@Wayne: Last December was still post 1.0. – Andrew Grimm Jun 10 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.