Installing Ruby on Rails and MySQL on an apache virtual private server is the first step toward getting Ruby applications live and online. Three useful installers make the task of building this server easier than ever before.
This tutorial requires you to have a droplet or server up and running. Additionally, the rails ready script needs to be performed by a user with sudo privileges. If you don't have a user like that on your server, you can check out how to do that in steps 3 and 4 of this tutorial.
Once you are logged in on your virtual server with your user with root privileges, type in the command to install Rails Ready:
wget --no-check-certificate https://raw.github.com/joshfng/railsready/master/railsready.sh && bash railsready.sh
Rails Ready can be installed either from the source or with RVM, the Ruby Version Manager. I would recommend using RVM—it's an easy installation and will later let you to switch between multiple versions of Ruby if needed.
Overall the installation does take a while—be prepared to wait.
However, once Rails Ready finishes the process, your VPS will be fully equipped with Ruby, Gems, and Rails. Then, following the instructions on screen, "logout and back in to access Ruby"
Once RVM is set up, you can use it to install rails:
rvm install 1.9.3
And set RVM to use Ruby 1.9.3 by default:
rvm use --default 1.9.3
Then install the passenger gem:
gem install passenger
As a useful bonus, RailsReady comes packaged with Phusion Passenger, which we can use to then automatically install and configure Apache on our server.
Use this command to start the apache installation:
passenger-install-apache2-module
Passenger will display this text after Apache installs:
The Apache 2 module was successfully installed.
Please edit your Apache configuration file, and add these lines:
LoadModule passenger_module /home/username/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.12/ext/apache2/mod_passenger.so PassengerRoot /home/username/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.12 PassengerRuby /home/username/.rvm/wrappers/ruby-1.9.3-p194/ruby
To finish the process, open up the Apache config and paste the three required lines into the file:
sudo nano /etc/apache2/apache2.conf
Save and Exit.
Before we conclude the installation, we should add one more useful program to our virtual server.
MySQL is a powerful database management system used for organizing and retrieving data.
To install MySQL, open terminal and type in these commands:
sudo aptitude update sudo aptitude install mysql-server
During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell with this command:
UPDATE mysql.user SET Password = PASSWORD('password') WHERE User = 'root';
Congratulations! WIth the help of three useful installers, we now have Ruby on Rails, Apache, and MySQL on our Ubuntu server!
Once you have installed Ruby on Rails on your server, you can proceed to Create a SSL Certificate for your site or Install an FTP server
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Is there any chance of a tutorial on setting up Rails+nginx+Postgres+ElasticSearch?
Thanks
We’re going to look into that.
Probably split it into two separate tutorials, one on Rails + Postgres with nginx and the other on elastic search.
Sounds like a plan. This link (http://asquera.de/opensource/2012/11/25/elasticsearch-pre-flight-checklist/) might help with the elasticsearch. Thanks
I’m getting an error on Step 2 above:
sudo: passenger-install-apache2-module: command not found
Anyone else run into this?
Clifton: don’t use sudo. This tutorial uses RVM and installs passenger as a gem within RVM. In general, RVM is nice because it makes it easy to install different versions of Ruby, but it does some funky stuff with environment variables. When you type sudo, your environment changes and RVM gets lost. If you really need to use sudo, type rvmsudo instead.
…also make sure you log out and log back in after installing RVM so that your bash environment will reload with the necessary environment variables.
Thanks, Andrew. I should have noted that I’ve tried it without sudo with the same result. Am I supposed to use
passenger-install-apache2-module
in conjunction with an rvm command somehow?It looks like you need to install Ruby and Passenger prior to installing the Apache 2 module. I have emailed DO about this, and they are going to update this article.
Thanks, everyone!
Might I suggest adding a section of the Apache virtual directory set up
I get the following error when I try to restart apache:
apache2: Syntax error on line 265 of /etc/apache2/apache2.conf: Cannot load /home//.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.12/ext/apache2/mod_passenger.so into server: /home//.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.12/ext/apache2/mod_passenger.so: cannot open shared object file: No such file or directory Action ‘configtest’ failed. The Apache error log may have more information. …fail!