Reliably Deploying Rails Applications
$20.00
Minimum price
$30.00
Suggested price

Reliably Deploying Rails Applications

Hassle free provisioning, reliable deployment

About the Book

Mastering Rails application deployment

This book will show you from start to finish how to:

  • Setup a VPS from Scratch
  • Setup additional servers in minutes
  • Use Capistrano 3 to deploy quickly and reliably
  • Automate boring maintenance tasks

This is the fifth edition of this book, updated April 2021 and using current releases of Chef, Capistrano, Rails and Sidekiq as well as Ubuntu 20.04 LTS.

The fifth edition is currently in progress, with the core path of setting up a server and deploying with Capistrano completed including all sample code. The price is temporarily reduced while the supplementary chapters on what's happening behind the scenes and advanced configuration are completed, everyone who buys the book gets free updates for life.

If you've got applications on Heroku which are costing you a fortune, this will provide you with the tools you need to move them onto a VPS. This includes running several Rails Applications on a single VPS - great for small side projects.

If you're already running your app on a VPS but the deploy process is flaky - it sometimes doesn't restart or loads the wrong version of the code - this book provides a template for making the process hassle free.

Section 1: Chef

How to automate provisioning new servers with chef. By the end you'll be able to get a new server up and ready to use within minutes.

Many standard Rails system configurations are supported out of the box with the example code. For anything else, detailed instructions for setting up your own custom configurations and writing your own chef recipes are provided. 

The aim of this section is to build a re-usable blueprint you can use whenever you need to setup a new VPS. It includes a "Five minute VPS" quickstart section for the impatient.

Section 2: Capistrano 3

Using Capistrano 3 to automate every aspect of deployment, from updating code to managing assets and background workers.

Particular attention is paid to setting up zero downtime deployment - essential if you're iterating rapidly and want to deploy several times per day. This includes a section on common gotchas such as failing to reload the gemfile on deployment as well as a detailed guide to troubleshooting when it goes wrong.

It also includes detailed sample code and complete instructions for deploying Sidekiq workers, configuring NGinx Virtualhosts and automatic SSL with LetsEncrypt. Finally it covers how to setup automated database backups and a will soon include a bonus chapter on integrating deployment with CI.

I've spent hundreds of hours combing through blog posts, documentation and tweaking config files. This has got me to the stage where deploying to a VPS is as easy as - in fact often easier than - deploying to Heroku. If you want to do the same, this book will save you a lot of time.

The book is continuously updated as and when there are significant changes to Capistrano, Chef and other system components. 

Any feedback on content, structure or corrections very gratefully received, you can get me on twitter (@talkingquickly) or by emailing ben@talkingquickly.co.uk

  • Share this book

  • Categories

    • Ruby on Rails
    • DevOps
    • Ruby
    • Computers and Programming
  • Feedback

    Email the Author(s)

Translations

About the Author

Ben Dixon
Ben Dixon

I've been developing web applications for over fifteen years, over the last few years specialising in Rails development and deployment as well as Elixir and Kubernetes. I'm co-founder & CTO of [Catapult](https://www.catapult.com) a venture backed global SaaS platform for maximising worker engagement.

Previously I was the technical lead at a health and fitness startup who provide the timetabling for many of the UK's leisure operators as well as producing a globally recognised iOS app (Speedo Fit) for swimmers.

As part of these projects I've dealt with everything from the usual rapid growth from 10's of requests per minute to 10's per second to more unusual challenges such as expanding infrastructure into China and debugging obscure indexing issues.

I spoke about deploying Rails applications at Railsconf Chicago and integrating Docker with Rails in Atlanta. I also spoke at Refresh! conf in Tallinn about common mistakes people make when deploying and scaling web applications.

Table of Contents

  • Intro
    • Preface to the fifth edition (2021)
    • Current status of the fifth edition
    • The purpose of this book
    • Who is this book not for
    • If you’re in a hurry
    • About Me
    • Why This Book Exists
    • Intended Audience
    • Pre-requisites
    • Structure of Part 1 - Setting up the server
    • Structure of Part 2 - Deploying to the server
    • Version
  • The Stack
    • Overview
    • Ubuntu 20.04 LTS
    • Nginx
    • Postgresql
    • Ruby + rbenv
    • Redis
    • Memcached
    • Why This Stack
    • Adapting to your stack
  • Tools And Terminology
    • Introduction
    • Automation
    • Introducing Chef
    • Terminology
    • Working without a Chef server - Chef Zero
    • Leveraging the Community
  • Installing Tools
    • Overview
    • Installing Tools
  • Quick Start
    • Overview
    • Next Steps
  • Creating a new project & Berkshelf
    • Generating a Chef Repo
    • Berkshelf
    • Configuring Knife
    • Recap / Quick Reference
    • Up Next
  • Using Knife
    • Overview
    • SSH Access
    • Setting up a node for Chef
    • Editing data in Chef & Setting Our Editor
    • Editing a node definition
    • Editing attributes
    • Adding to the run list
    • Creating and editing roles
    • Applying configuration to a node (converging)
    • Working with data bags
    • Other useful commands
    • Quick Reference
    • Up Next
  • Creating a Chef Cookbook
    • Overview
    • Prerequisites
    • Generating a Cookbook
    • Adding the cookbook to Berkshelf
    • Structure of a Cookbook
    • Installing Redis Manually
    • Converting this into a simple Chef Cookbook
    • Adding the recipe to the node definition
    • Applying the updated node definition
    • Is This Cookbook “Bad” or “Wrong”
    • Limitations of the simple Cookbook
    • Improving our Cookbook the Chef Way
    • Updating The Node
    • Adding flexibility with attributes
    • Conclusion
  • Node and Role Definitions
    • Overview
    • Attribute Hierarchy
    • Node Definitions
    • Role Definitions
    • Breaking a System Into Roles
    • Limitations of Roles
  • A Template for Rails Servers
    • Overview
    • The Example Configuration
  • Basic Server Setup
    • Overview
    • Unattended Upgrades
    • Automatic System Time via NTP
    • Locales
  • Security
    • Overview
    • No Magic Bullet
    • Common Pitfalls
    • SSH Hardening
    • Firewall
    • Users
    • Sudo
  • Ruby & Gem Dependencies
    • Overview
    • Rbenv v RVM
    • How rbenv works
    • The rbenv Cookbook
    • Gem Dependencies
  • Monit
    • Which configuration goes where
    • The importance of a custom monitoring configuration
    • System level monitoring
    • Monitoring Pids
    • Monitoring Ports
    • Free Space Monitoring
    • Alerts and avoiding overload
    • Serving the web interface with Nginx
  • nginx
    • Overview
    • Why Nginx
    • The Cookbook
    • Virtualhosts
    • Monitoring
  • PostgreSQL
    • Overview
    • Installation
    • Accessing the psql console
    • Creating Databases
    • Adding users to Databases
    • Listing all databases and permissions
    • Configuring Authentication
    • Allow External Access
    • Mangaging pg_hba.conf with chef
    • Importing and Exporting Databases
    • Monit
  • Redis and Memcached
    • Redis
    • Memcached
    • Conclusion
  • Deploying with Capistrano Quickstart
    • Overview
    • Capistrano
    • Steps
    • Copying configuration to the destination server
    • Conclusion
  • Deploying with Capistrano
    • Overview
    • Stages
    • Adding Capistrano to an application
    • Installation
    • Capistrano 3 is Rake
    • The Capfile
    • Common configuration
    • Running tests
    • Hooks
    • Setting up stages
    • Generating Remote Configuration Files
    • Database Credentials
    • Deploying
    • Conclusion
  • Writing Custom Capistrano Tasks
    • Overview
    • File Structure
    • The Task
    • A note on Namespacing
  • Unicorn Configuration and Zero Downtime Deployment (Deprecated)
    • Overview
    • Unicorn and the request flow
    • Basic Configuration
    • Unix Signals
    • Unicorn Init script
    • Zero Downtime Deployment
    • Gemfile Reloading
    • Troubleshooting Process for Zero Downtime Deployment
  • Nginx Virtualhosts and SSL
    • Overview
    • A Basic Virtualhost
    • DNS Overview
    • Forcing HTTPS
    • Adding SSL
    • Chaining SSL Certificates
    • Updating SSL Certificates
  • Sidekiq
    • Overview
    • Sidekiq Version 3
    • Capistrano Integration
  • Backups
    • Overview
    • Structure
    • Getting Started
    • Triggering Backups with Whenever
    • Conclusion

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

80% Royalties. Earn $16 on a $20 book.

We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub