Skip to main content

Redis Installation Steps




Redis is an in-memory key-value store known for its flexibility, performance, and wide language support” Inorder to install redis on your machine you need ubuntu 16.4 and a non-root user with sudo privileges to perform the administrative functions required for this process.
Download and Extract the Source Code
  • Create a tmp directory
    cd /tmp
  • Download the latest stable version of Redis
    curl -O http://download.redis.io/redis-stable.tar.gz
  • untar
    tar xzvf redis-stable.tar.gz
  • Move into the Redis source directory structure that was just extracted
    cd redis-stable

Build and Install Redis

  • Now, we can compile the Redis binaries by typing
    make
  • After the binaries are compiled, run the test suite to make sure everything was built correctly. You can do this by typing:
    make test
  • This will typically take a few minutes to run. Once it is complete, you can install the binaries onto the system by typing:
    sudo make install

Configure Redis

Now that Redis is installed, we can begin to configure it.
  • To start off, we need to create a configuration directory. We will use the conventional ‘/etc/redisdirectory’ which can be created by typing
         sudo mkdir /etc/redis
  • Now, copy over the sample Redis configuration file included in the Redis source archive:
    sudo cp /tmp/redis-stable/redis.conf /etc/redis
  • Next, we can open the file to adjust a few items in the configuration
         sudo nano /etc/redis/redis.conf
  • In the file, find the supervised directive. Currently, this is set to no. Since we are running an operating system that uses the systemd init system, we can change this to systemd
    /etc/redis/redis.conf
. . .



# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous liveness pings back to your supervisor.
supervised systemd



. . .
  • Next, find the dir directory. This option specifies the directory that Redis will use to dump persistent data. We need to pick a location that Redis will have write permission and that isn't viewable by normal users.
  • We will use the /var/lib/redis directory for this, which we will create in a moment:
/etc/redis/redis.conf
. . .



# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# The Append Only File will also be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir /var/lib/redis


. . .
  • Save and close the file when you are finished.

Create a Redis systemd Unit File
  • Next, we can create a systemd unit file so that the init system can manage the Redis process. Create and open the /etc/systemd/system/redis.service file to get started:
    sudo nano /etc/systemd/system/redis.service
  • Inside, we can begin the [Unit] section by adding a description and defining a requirement that networking be available before starting this service
  • In the [Service] section, we need to specify the service's behavior. For security purposes, we should not run our service as root. We should use a dedicated user and group, which we will call redis for simplicity. We will create these momentarily.
  • To start the service, we just need to call the redis-server binary, pointed at our configuration. To stop it, we can use the Redis shutdown command, which can be executed with the redis-cli binary. Also, since we want Redis to recover from failures when possible, we will set the Restart directive to "always"
  • Finally, in the [Install] section, we can define the systemd target that the service should attach to if enabled (configured to start at boot):
    /etc/systemd/system/redis.service
[Unit]
Description=Redis In-Memory Data Store
After=network.target


[Service]
User=redis
Group=redis
ExecStart=/usr/local/bin/redis-server /etc/redis/redis.conf
ExecStop=/usr/local/bin/redis-cli shutdown
Restart=always


[Install]
WantedBy=multi-user.target
  • Save and close the file when you are finished.



Create the Redis User, Group and Directories
  • Now, we just have to create the user, group, and directory that we referenced in the previous two files.Begin by creating the redis user and group. This can be done in a single command by typing:
         sudo adduser --system --group --no-create-home redis
  • Now, we can create the /var/lib/redis directory by typing:
         sudo mkdir /var/lib/redis
  • We should give the redis user and group ownership over this directory:
         sudo chown redis:redis /var/lib/redis
  • Adjust the permissions so that regular users cannot access this location:
         sudo chmod 770 /var/lib/redis


Start the Redis Service
  • Start up the systemd service by typing:
    sudo systemctl start redis

  • Check that the service had no errors by running:
    sudo systemctl status redis


Test the Redis Instance Functionality
  • To test that your service is functioning correctly, connect to the Redis server with the command-line client:
    redis-cli

  • In the prompt that follows, test connectivity by typing:
    ping
    You should see:
    Output
    PONG

Comments

Popular posts from this blog

Redis Basic CRUD

We have seen how to setup on your linux machine here , now we will see how to perform basic CRUD operations using Spring Data & Redis server We will be creating a simple application that would persist an employee information into redis database. You will be needing certain JARs like jedis.jar, spring-data-redis.jar etc details of which you can download and view at https://github.com/meta-magic/RedisCRUDexample.git  First of all we will be creating the Employee entity, plz note that we are using the Serializable interface which automatically mapps the objects against the key. Employee.java import java.io.Serializable ; public class Employee implements Serializable { private static final long serialVersionUID = - 8243145429438016231L ; public enum Gender { Male , Female } private String id; private String name; private Gender gender; private int age; public String getId () { return id; } public void setId ( String

Function Point Analysis : ISO/IEC 20926:2009

This blog focuses on explaining the Function Point calculations. Software Sizing Background Function Point Rules for Counting FP Deep Dive - Function Point Analysis Case Study General Software Characteristics Details History - Measurement Methodologies Lines of Code (Oldest) Use case based Software Sizing IPFUG Function Point Analysis (ISO) Need for Software Sizing. Estimation and Budgeting Phasing Development Work Prioritization of Work Monitoring the Progress Bidding for Projects Allocating Testing Resources To measure and Manage Productivity Risk Assessment Software Asset Valuation CMMi Level 2 and 3 require that a valid sizing method be used. Software Sizing - Lines of Code The easiest and historically the most common method in Sizing Software project has been counting the number of lines of code and / or the number of screens. Advantages Automation of the counting process can be done Intuitive as the measurements are easily u