|
| 1 | +<!--- |
| 2 | +title: Setup Ruby On Rails on Ubuntu 14.10 Utopic Unicorn |
| 3 | +description: "A guide to setting up a Ruby on Rails development environment on Ubuntu 14.10 Utopic Unicorn" |
| 4 | +layout: blog_post |
| 5 | +categories: ubuntu |
| 6 | +--> |
| 7 | + |
| 8 | +# Setup Ruby On Rails on Ubuntu 14.10 Utopic Unicorn |
| 9 | + |
| 10 | +This will take about 30 minutes. |
| 11 | + |
| 12 | +We will be setting up a Ruby on Rails development environment on Ubuntu 14.10 Utopic Unicorn. |
| 13 | + |
| 14 | +The reason we're going to be using Ubuntu is because the majority of code you write will run on a Linux server. Ubuntu is one of the easiest Linux distributions to use with lots of documentation so it's a great one to start with. |
| 15 | + |
| 16 | +You'll want to download the latest Desktop version here: http://releases.ubuntu.com/14.10/ |
| 17 | + |
| 18 | +Some of you may choose to develop on Ubuntu Server so that your development environment matches your production server. You can find it on the same download link above. |
| 19 | +Installing Ruby |
| 20 | + |
| 21 | +The first step is to install some dependencies for Ruby. |
| 22 | + |
| 23 | + sudo apt-get update |
| 24 | + sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev |
| 25 | + |
| 26 | +Next we're going to be installing Ruby using one of three methods. Each have their own benefits, most people prefer using rbenv these days, but if you're familiar with rvm you can follow those steps as well. I've included instructions for installing from source as well, but in general, you'll want to choose either rbenv or rvm. |
| 27 | + |
| 28 | + |
| 29 | +Installing with rbenv is a simple two step process. First you install rbenv, and then ruby-build: |
| 30 | + |
| 31 | + cd |
| 32 | + git clone https://github.com/rbenv/rbenv.git ~/.rbenv |
| 33 | + echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc |
| 34 | + echo 'eval "$(rbenv init -)"' >> ~/.bashrc |
| 35 | + exec $SHELL |
| 36 | + |
| 37 | + git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build |
| 38 | + echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc |
| 39 | + exec $SHELL |
| 40 | + |
| 41 | + rbenv install 2.3.1 |
| 42 | + rbenv global 2.3.1 |
| 43 | + ruby -v |
| 44 | + |
| 45 | +The last step is to install Bundler |
| 46 | + |
| 47 | + gem install bundler |
| 48 | + |
| 49 | +rbenv users need to run rbenv rehash after installing bundler. |
| 50 | +Configuring Git |
| 51 | + |
| 52 | +We'll be using Git for our version control system so we're going to set it up to match our Github account. If you don't already have a Github account, make sure to register. It will come in handy for the future. |
| 53 | + |
| 54 | +Replace my name and email address in the following steps with the ones you used for your Github account. |
| 55 | + |
| 56 | + git config --global color.ui true |
| 57 | + git config --global user.name "YOUR NAME" |
| 58 | + git config --global user.email "[email protected]" |
| 59 | + ssh-keygen -t rsa -b 4096 -C "[email protected]" |
| 60 | + |
| 61 | +The next step is to take the newly generated SSH key and add it to your Github account. You want to copy and paste the output of the following command and paste it here. |
| 62 | + |
| 63 | + cat ~/.ssh/id_rsa.pub |
| 64 | + |
| 65 | +Once you've done this, you can check and see if it worked: |
| 66 | + |
| 67 | + |
| 68 | + |
| 69 | +You should get a message like this: |
| 70 | + |
| 71 | + Hi excid3! You've successfully authenticated, but GitHub does not provide shell access. |
| 72 | + |
| 73 | +## Installing Rails |
| 74 | + |
| 75 | +Since Rails ships with so many dependencies these days, we're going to need to install a Javascript runtime like NodeJS. This lets you use Coffeescript and the Asset Pipeline in Rails which combines and minifies your javascript to provide a faster production environment. |
| 76 | + |
| 77 | +To install NodeJS, we're going to add it using the official repository: |
| 78 | + |
| 79 | + curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - |
| 80 | + sudo apt-get install -y nodejs |
| 81 | + |
| 82 | +And now, without further adieu: |
| 83 | + |
| 84 | + gem install rails -v 4.2.6 |
| 85 | + |
| 86 | +If you're using rbenv, you'll need to run the following command to make the rails executable available: |
| 87 | + |
| 88 | + rbenv rehash |
| 89 | + |
| 90 | +Now that you've installed Rails, you can run the rails -v command to make sure you have everything installed correctly: |
| 91 | + |
| 92 | + rails -v |
| 93 | + # Rails 4.2.6 |
| 94 | + |
| 95 | +If you get a different result for some reason, it means your environment may not be setup properly. |
| 96 | +Setting Up MySQL |
| 97 | + |
| 98 | +Rails ships with sqlite3 as the default database. Chances are you won't want to use it because it's stored as a simple file on disk. You'll probably want something more robust like MySQL or PostgreSQL. |
| 99 | + |
| 100 | +There is a lot of documentation on both, so you can just pick one that seems like you'll be more comfortable with. If you're coming from PHP, you may already be familiar with MySQL. If you're new to databases, I'd suggest skipping to setting up PostgreSQL. |
| 101 | + |
| 102 | +You can install MySQL server and client from the packages in the Ubuntu repository. As part of the installation process, you'll set the password for the root user. This information will go into your Rails app's database.yml file in the future. |
| 103 | + |
| 104 | + sudo apt-get install mysql-server mysql-client libmysqlclient-dev |
| 105 | + |
| 106 | +Installing the libmysqlclient-dev gives you the necessary files to compile the mysql2 gem which is what Rails will use to connect to MySQL when you setup your Rails app. |
| 107 | + |
| 108 | +When you're finished, you can skip to the Final Steps. |
| 109 | + |
| 110 | +## Setting Up PostgreSQL |
| 111 | + |
| 112 | +For PostgreSQL, we're going to add a new repository to easily install a recent version of Postgres. |
| 113 | + |
| 114 | + sudo sh -c "echo 'deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main' > /etc/apt/sources.list.d/pgdg.list" |
| 115 | + wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add - |
| 116 | + sudo apt-get update |
| 117 | + sudo apt-get install postgresql-common |
| 118 | + sudo apt-get install postgresql-9.5 libpq-dev |
| 119 | + |
| 120 | +The postgres installation doesn't setup a user for you, so you'll need to follow these steps to create a user with permission to create databases. Feel free to replace chris with your username. |
| 121 | + |
| 122 | + sudo -u postgres createuser chris -s |
| 123 | + |
| 124 | +If you would like to set a password for the user, you can do the following |
| 125 | + |
| 126 | + sudo -u postgres psql |
| 127 | + postgres=# \password chris |
| 128 | + |
| 129 | +## Final Steps |
| 130 | + |
| 131 | +And now for the moment of truth. Let's create your first Rails application: |
| 132 | + |
| 133 | + #### If you want to use SQLite (not recommended) |
| 134 | + rails new myapp |
| 135 | + |
| 136 | + #### If you want to use MySQL |
| 137 | + rails new myapp -d mysql |
| 138 | + |
| 139 | + #### If you want to use Postgres |
| 140 | + # Note that this will expect a postgres user with the same username |
| 141 | + # as your app, you may need to edit config/database.yml to match the |
| 142 | + # user you created earlier |
| 143 | + rails new myapp -d postgresql |
| 144 | + |
| 145 | + # Move into the application directory |
| 146 | + cd myapp |
| 147 | + |
| 148 | + # If you setup MySQL or Postgres with a username/password, modify the |
| 149 | + # config/database.yml file to contain the username/password that you specified |
| 150 | + |
| 151 | + # Create the database |
| 152 | + rake db:create |
| 153 | + |
| 154 | + rails server |
| 155 | + |
| 156 | +You can now visit [http://localhost:3000](http://localhost:3000) to view your new website! |
| 157 | + |
| 158 | +Now that you've got your machine setup, it's time to start building some Rails applications. |
| 159 | + |
| 160 | +If you received an error that said `Access denied for user 'root'@'localhost' (using password: NO)` then you need to update your config/database.yml file to match the database username and password. |
| 161 | + |
| 162 | + |
| 163 | + |
| 164 | + |
0 commit comments