Getting started with Rancher

Posted by

A few days ago Rancher Labs released Rancher 1.0 so I’d thought I’d take it for a test drive. This is the first time I’ve worked with a product like this so this post will be really basic, but if this is the way things are going, it’s pretty amazing. Take a moment to check out their site and watch the “See Rancher in Action” video. The speaker sounds like a cowboy so you can imagine me talking like a cowboy for the rest of this post. I’m going to show how to deploy an application named Rocket Chat, which is like Slack. In my next post on Rancher I’ll show how to deploy Kubernetes using Rancher and then deploy and an application on Kubernetes.

Installation

I’m going to mainly be following the Quick Start Guide 

I started with a Ubuntu 12.04.5 LTS VM running on ESXi 5.1. My VM’s name is rancher1a.vmware.local with an IP of 192.168.3.168.

First let’s update the OS:

sudo apt-get update
sudo apt-get upgrade

Install the latest version of Docker by using the following commands or using Docker’s Instructions.

curl https://get.docker.com/ > docker-install.sh
Check out the docker-install.sh script to see what it’s doing.
chmod 700 docker-install.sh
./docker-install.sh

Adding myself into the docker group:

sudo usermod -aG docker chris

Start the Rancher server

We will run the Rancher server in a container by running:

sudo docker run -d –restart=always -p 8080:8080 rancher/server

Verify that the container is running:

2016-04-04_19-23-32.jpg

Now I can access Rancher by going to http://rancher1a.vmware.local:8080. You’ll be logged in automatically and will see the screen where you can add your first host:

2016-04-04_19-09-36.jpg

Go ahead and select Add Host and we see that the VM that is running Rancher has been pre-populated. For this demonstration I’m going to leave things as is and press Save.

2016-04-04_19-10-05.jpg

On the next screen, I’ll perform the following:

  1. Enter the IP of the VM where Ranch is running.
  2. Select the copy button
  3. Paste the copied text into the terminal running your Rancher container.
  4. Select Close

2016-04-04_19-12-59.jpg

Let’s verify that the Rancher agent container is running:

2016-04-04_19-23-32.jpg

Now go to:

  1. Infrastructure
  2. Hosts
  3. View the newly added host

2016-04-04_19-27-43.jpg

You can click on the hostname and view a bunch of info:

2016-04-04_19-29-39.jpg

Launching an App

We can view the built-in catalog by going to Catalog > All

2016-04-04_19-31-09.jpg

Let’s deploy the RocketChat app by selecting View Details:

2016-04-04_19-32-51.jpg

I’m going to leave everything at the defaults and select Launch:

2016-04-04_19-33-54.jpg

You should be redirected to Applications > Stacks where you can see the application starting up:

2016-04-04_19-38-53.jpg

At this point I like to switch over to the terminal that’s running the Rancher container and run the sudo watch docker ps command so that I can see the containers coming online.

2016-04-04_19-59-31.jpg

It shouldn’t take long for everything to become active:

2016-04-04_19-59-23.jpg

Now I can access the Rocket Chat instance at http://rancher1a.vmware.local:3000. From here you need to register for a new account:

2016-04-04_20-00-07.jpg

Fill in some info. The email address doesn’t have to be real:

2016-04-04_20-03-57.jpg

Acknowledge the warning that pops up and select a username:

2016-04-04_21-18-33.jpg

You’ll be logged in where you can begin using the application:

2016-04-04_21-20-24.jpg

The WordPress app is also simple to deploy so you may want to try that as well.

 

 

 

 

 

 

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s