본문 바로가기

카테고리 없음

Redis Client Mac Os X



By using Homebrew, you greatly reduce the cost of setting up and configuring Redis on Mac OSX.

Running the above simple script will provide this figures in my Mac OS X system, running over the loopback interface, where pipelining will provide the smallest improvement as the RTT is already pretty low: without pipelining 1.185238 seconds with pipelining 0.250783 seconds. Database management application for OS X designed to help work with Redis data structure servers in a clean and user-friendly environment.

How to Install Homebrew (http://brew.sh/) on Mac OSX

$ /usr/bin/ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)'

How to Install Redis on Mac OSX via Homebrew

$ brew install redis

After installation, you will see some notification about some caveats on configuring.

Configuration

How to Start Redis When Computer Starts:

$ ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents

How to Start Redis as a Service (Start on Boot) on OSX:

$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

Redis

How to Start Redis Using Configuration File:

$ redis-server /usr/local/etc/redis.conf

How to Disable Autostart of Redis on Startup

$ launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

Location of Redis configuration file.

/usr/local/etc/redis.conf

Uninstallation

How to Uninstall Redis from Mac OSX via Homebrew

$ brew uninstall redis

$ rm ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

View Redis Package Information

$ brew info redis

Etc

How to Test is Redis is Working:

Mac Install Redis Cli

$ redis-cli ping

If it replies “PONG”, then it’s good to go!

Links

Redis (http://redis.io/) -Redis is an open source (BSD licensed), in-memory data structure store, used as database, cache and message broker.

redis-rb (https://github.com/redis/redis-rb) -A Ruby client library that tries to match Redis' API one-to-one, while still providing an idiomatic interface. It features thread-safety, client-side sharding, pipelining, and an obsession for performance.

Medis (http://getmedis.com/ & https://github.com/luin/medis) -OSX GUI for Redis.

2015-05-29

This tutorial introduces how to deploy a web app, Redis, Postgres and Nginx with Docker on the same server. In this tutorial, the web app is a node.js(express) app. We use Redis as a cache store, Postgres as the database, and Nginx as the reverse proxy server. You can get all source code at https://github.com/vinceyuan/DockerizingWebAppTutorial.

Why Docker

Docker is a virtualization technology. The key feature I like most is it provides resource isolation. The traditional way of building a (low-traffic) website is we install the web app, cache, database, Nginx directly on a server. It's not easy to change the settings or the content a lot, because they are in the same environment. Changing one may impact others. With Docker, we can put each service in a container. It keeps the host server very clean. We can easily create/delete/change/re-create containers.

Install Docker on the host

Docker runs on a 64-bit Linux OS only. If your Linux is 32-bit, you have to re-install the 64-bit version. My original OS was 32-bit CentOS. Now I am using 64-bit Debian 8. The main reason I choose Debian is its distribution size is small and Docker recommends it in Best Practices(it's ridiculous that almost all examples at docker.com use ubuntu). Actually the host's OS can be different to the container's OS. I choose Debian instead of 64-bit CentOS because I don't want to spend any time on the differences. For example, the package management tools on Debian and CentOS are different. One is apt, the other is yum.

Currently, Docker's official installation on Debian 8 does not work. You need to run the following commands as root. theuser is the user of host OS.

Prepare

The folder /DockerizingWebAppTutorial contains all we need. mynodeapp is a very simple node.js (express) app. It just reads a number from Redis, and gets a query result from Postgres. There are several Dockerfiles in the dockerfiles folder. We will use them to build images.

Redis client mac os x 10.13

Create folders:

Let's run the first container.

Redis

We use the official Redis image. Run it directly with this command:

-v /mydata/redis_data:/data means we mount a folder /mydata/redis_data of the host as a volume /data in a container. Nginx will save dump.rdb at /mydata/redis_data in the host. If we don't mount a volume, Nginx will save dump.rdb in the container. When this container is deleted, dump.rdb will be deleted too. So we should always mount a volume for the important data e.g. database file, logs.--name myredis means we name this container myredis--restart=always means the container will restart after it quits unexpectedly. It also makes the container start automatically after the server reboots.

That command outputs:

It downloads redis:latest image from Docker Hub. Let's check if myredis container is running.

We can see myredis is running.

We need to run redis-cli in this container to set a value in Redis.

Postgres

We use the official Postgres image too. Just run it directly.

-e POSTGRES_PASSWORD=postgres means we set the environment variable POSTGRES_PASSWORD to postgres.

Redis Client Mac Os X

-v /mydata/postgres_data:/var/lib/postgresql/data means we mount /mydata/postgres_data as a volume. This is very important. It's safe to keep database files in the host.

Create mynodeappdb:

We can see mypostgres and myredis are running.

Redis client and Postgres client

The Dockerfile for redis client:

It's based on debian:7. It actually installs both redis server and client. But we only need the client. So it stops redis-server.

Build it:

The Dockerfile for Postgres client:

Redis Mac Os

It's based on myredisclient, because our web app needs to access both redis and postgres. The annoying thing is the default postgresql-client in Debian apt is a very old version (pg_dump will not work, because the version does not match the server's version). This Dockerfile installs the latest version (currently 9.4).

Mac

Build it

We can see there are 5 images in the host.

Node.js

Let's build a Node.js image. In the Dockerfile for mynodejs image, we install node.js, express, forever and then set NODE_ENV production. In this example, I am not using the latest version.

Build it.

mynodeapp

Then we build an image for mynodeapp. In Dockerfile, we run npm install, and use forever to run the node.js app. We don't use forever start, because we don't run it as a daemon (otherwise, the container will quit immediately).

Build it

Actually we can merge these 4 Dockerfiles into one to create one image. I build 4 images for re-using images. For example, if we want to build an image for another node.js app, we can write a Dockerfile based on mynodejs image. If we want to replace node.js with Go, we can write a Dockerfile based on myredispgclient.

The core code of mynodeapp:

There is a problem. We are using localhost or 127.0.0.1 for redis and postgres' host address. It works only when they are installed on the same server. But now they are in different containers. Even if we use --link, we still cannot access them via localhost and 127.0.0.1. We can use the following code to get correct host and port.

REDIS_PORT_6379_TCP_ADDR is created by Docker if you run a container with --link myredis:redis. You can get Postgres user account, password, port from the environment variables too.

Run a container based on mynodeapp image. We also name the container mynodeapp. You can rename it whatever you like.

By default, each container is isolated. --link allows a container access another container. --link mypostgres:postgres means we can access mypostgres container with the alias postgres just like localhost for 127.0.0.1.-v /mydata/log_mynodeapp:/log mounts a volume. We want to keep logs in the host.-p 3000:3000 maps host's port 3000 to container's port 3000. It is not mandatory. But with it, we can use curl localhost:3000 in the host to check if mynodeapp container runs correctly.

The web app runs correctly in the container.

Nginx

Now we install Nginx. In the Dockerfile, we make directory /mynodeapp/public. A folder in the host will be mounted here.

In nginx-docker.conf, we use mynodeapp for the server address, because it is linked.

Build the image and run the container.

Run mynginx container.

--link mynodeapp:mynodeapp means we link mynodeapp container to mynginx container. We don't link myredis and mypostgres because mynginx does not access them directly.We also mount 2 folders for logging.-p 443:443 is for https. However, this example does not provide ssl certificate files.

Run curl localhost and curl localhost/stylesheets/style.css to check if mynginx runs correctly.

Client

Now we finished deploying a web app, Redis, Postgres and Nginx with Docker. It took me a lot of time to really deploy my real app with Docker. Luckily I tested in a VirtualBox VM. I can delete/create images/containers back and forth easily with Docker.

An important part is missing. That's restoring and backing up database. I will show you in another tutorial. Here are some tips about Docker.

Please enable JavaScript to view the comments powered by Disqus.blog comments powered by Disqus