redis单机搭建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis单机搭建相关的知识,希望对你有一定的参考价值。

1.       创建分用户(用于启动redis

[[email protected] ~]# useradd redis

  1. 2.       切换到分用户环境

[[email protected] ~]# sudo su – redis

  1. 3.       上传redis软件或者wget http://download.redis.io/releases/redis-3.2.6.tar.gz

[[email protected] ~]$ rz -y

rz waiting to receive.

Starting zmodem transfer.  PressCtrl+C to cancel.

Transferring redis-3.2.6.tar.gz...

  100%    1508 KB   1508 KB/sec    00:00:01       0 Errors 

[[email protected] ~]$ ls

redis-3.2.6.tar.gz

  1. 4.       解压缩redis文件并安装

[[email protected] ~]$ mkdir run

[[email protected] ~]$ tar zxf redis-3.2.6.tar.gz –C run/

[[email protected] ~]$ cd run/redis-3.2.6/

[[email protected] redis-3.2.6]$ make

  1. 5.       启动redis(这里使用默认配置文件进行启动)

[[email protected] ~]$ ~/run/redis-3.2.6/src/redis-server~/run/redis-3.2.6/redis.conf  &

[[email protected] ~]$ netstat -lantup|grep redis

(Not all processes could be identified, non-owned process info

 will not be shown, you wouldhave to be root to see it all.)

tcp       0      0127.0.0.1:6379[l1]       0.0.0.0:*     LISTEN     8536/redis-server 1


 [l1]默认绑定的地址以及端口


本文出自 “李群艳博客” 博客,转载请与作者联系!

以上是关于redis单机搭建的主要内容,如果未能解决你的问题,请参考以下文章

linux 的环境搭建(二)--redis单机环境、生产环境、集群环境的搭建

redis单机主从搭建

redis单机搭建

快速搭建redis单机版和redis集群版

Redis单机,主从集群,哨兵集群,分片集群的搭建

Redis单机,主从集群,哨兵集群,分片集群的搭建