Forked from scmx/upgrade-install-ruby-2-1-2-ubuntu-12-04.md
Created
June 6, 2016 06:28
-
-
Save x1unix/a8bd21070ef2c37dbad23b0805866a30 to your computer and use it in GitHub Desktop.
Upgrade/Install ruby 2.1.2 #ubuntu #12.04 #14.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reference http://stackoverflow.com/a/18490935/2037928 | |
# Login as root | |
# Install needed packages | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev | |
cd /tmp | |
# Download appropriate ruby version https://www.ruby-lang.org/en/downloads/ | |
wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz | |
# Unpack | |
tar -xvzf ruby-2.1.2.tar.gz | |
cd ruby-2.1.2/ | |
# Compile from source | |
./configure --prefix=/usr/local | |
make | |
make install | |
# Make sure deploy user has access to installing gems | |
chown -R deploy:staff /usr/local/bin | |
chown -R deploy:staff /usr/local/lib/ruby | |
# Login as deploy user | |
# Install bundler | |
gem install bundler | |
# Locally | |
cap production deploy | |
# Remove the old manifest.yml file | |
rm /u/apps/YOUR_APP_NAME/shared/assets/manifest.yml | |
# I also had to make the unicorn binary into a binstub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment