1. 下载redis安装包:
> 可以用命令: wget http://download.redis.io/releases/redis-5.0.5.tar.gz, 或者直接从官网下载。
2. 解压:
tar -zxvf redis-5.0.5.tar.gz
3. 安装gcc:
> yum install gcc
4. 进入redis目录并编译安装
> cd redis-5.0.5; make MALLOC=libc; cd src && make install;
> 分别执行三条命令,出现一下表示安装成功
[root@bogon redis-5.0.5]# cd src && make install
CC Makefile.dep

Hint: It's a good idea to run 'make test' ;)

INSTALL install
INSTALL install
INSTALL install
INSTALL install
INSTALL install
1
2
3
4
5
6
7
8
9
10
5. 三种启动方式:
先进入目录 cd src;
1> 用命令直接启动 ./redis-server 出现一下表示成功:
[root@bogon src]# ./redis-server
15281:C 19 Jun 2019 21:59:59.728 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
15281:C 19 Jun 2019 21:59:59.728 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=15281, just started
15281:C 19 Jun 2019 21:59:59.728 # Warning: no config file specified, using the default config. In order to specify a config file use ./redis-server /path/to/redis.conf
15281:M 19 Jun 2019 21:59:59.730 * Increased maximum number of open files to 10032 (it was originally set to 1024).
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 5.0.5 (00000000/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 15281
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'

15281:M 19 Jun 2019 21:59:59.736 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
15281:M 19 Jun 2019 21:59:59.736 # Server initialized
15281:M 19 Jun 2019 21:59:59.736 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
15281:M 19 Jun 2019 21:59:59.736 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
15281:M 19 Jun 2019 21:59:59.736 * Ready to accept connections

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
但是不能操作,不方便, 按 ctrl + c可以关闭窗口。
2> 以后台进程方式启动redis
a. 修改redis.conf文件: 将 daemonize no 改为 daemonize yes
b. 指定redis的启动文件:(我的redis放在 /usr/java/redis-5.0.5/ ) 执行下面命令:
[root@bogon src]# ./redis-server /usr/java/redis-5.0.5/redis.conf
15855:C 19 Jun 2019 22:41:42.748 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
15855:C 19 Jun 2019 22:41:42.749 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=15855, just started
15855:C 19 Jun 2019 22:41:42.749 # Configuration loaded
1
2
3
4
c. 用ps -aux | grep redis查看redis进程
[root@bogon src]# ps -aux | grep redis
root 15430 0.0 0.0 14072 1192 pts/2 S+ 22:06 0:00 redis-cli -h 0.0.0.0 -p 6379 -a password
root 15969 0.0 0.1 144020 2040 ? Ssl 22:51 0:00 ./redis-server 127.0.0.1:6379
root 15974 0.0 0.0 112708 980 pts/1 S+ 22:51 0:00 grep --color=auto redis
1
2
3
4
3> 设置开机启动:
a. 在/etc目录下新建redis目录 :
[root@bogon etc]# mkdir redis
1
b. 将 /usr/java/redis-5.0.5/redis.conf 复制一份到 /etc/redis/, 命名为 6379.conf
[root@bogon etc]# cp /usr/java/redis-5.0.5/redis.conf /etc/redis/6379.conf
1
c. 将redis的启动脚本复制一份放到/etc/init.d目录下, 命名为redisd
[root@bogon etc]# cp /usr/java/redis-5.0.5/utils/redis_init_script /etc/init.d/redisd
1
d. 设置开机启动
[root@bogon etc]# cd /etc/init.d/
[root@bogon init.d]# chkconfig redisd on
//
如果出现
service redisd does not support chkconfig,
是redisd不支持chkconfig,
使用vim编辑redisd文件,在第一行加入如下两行注释,保存退出

# chkconfig: 2345 90 10
# description: Redis is a persistent key-value database

注释的意思是,redis服务必须在运行级2,3,4,5下被启动或关闭,启动的优先级是90,关闭的优先级是10。
1
2
3
4
5
6
7
8
9
10
11
12
e. 启动: service redisd start / service redisd stop
[root@bogon init.d]# service redisd start
/var/run/redis_6379.pid exists, process is already running or crashed
出现这个错误的时候,重启系统就好了,下面是开关服务的提示:

[root@bogon ~]# service redisd stop
Stopping ...
Waiting for Redis to shutdown ...
Redis stopped
[root@bogon ~]# service redisd start
Starting Redis server...
1829:C 19 Jun 2019 23:39:12.204 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
1829:C 19 Jun 2019 23:39:12.204 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=1829, just started
1829:C 19 Jun 2019 23:39:12.204 # Configuration loaded

1
2
3
4
5
6
7
8
9
10
11
12
13
14

---------------------

redis的安装总结的更多相关文章

  1. redis的安装配置

    主要讲下redis的安装配置,以及以服务的方式启动redis 1.下载最新版本的redis-3.0.7  到http://redis.io/download中下载最新版的redis-3.0.7 下载后 ...

  2. Linux下Redis的安装和部署

    一.Redis介绍 Redis是当前比较热门的NOSQL系统之一,它是一个key-value存储系统.和Memcache类似,但很大程度补偿了Memcache的不足,它支持存储的value类型相对更多 ...

  3. 基于C#的MongoDB数据库开发应用(4)--Redis的安装及使用

    在前面介绍了三篇关于MongoDB数据库的开发使用文章,严格来讲这个不能归类于MongoDB数据库开发,不过Redis又有着和MongoDB数据库非常密切的关系,它们两者很接近,Redis主要是内存中 ...

  4. Linux下Redis的安装与配置

    redis是当前比较热门的NOSQL系统之一,它是一个key-value存储系统.和Memcached类似,但很大程度补偿了 memcached的不足,它支持存储的value类型相对更多,包括stri ...

  5. [nosql之redis]yum安装redis

    1.首先对于这种nosql来说目前我用到的功能很少,所以感觉没有必要去优化他跟不需要去编译安装.今天来介绍下一个yum安装redis 步骤1:安装扩展yum库 [root@localhost ~]# ...

  6. Linux下redis的安装

    第一部分:安装redis 希望将redis安装到此目录 /usr/local/redis 希望将安装包下载到此目录 /usr/local/src 那么安装过程指令如下: $ mkdir /usr/lo ...

  7. redis的安装和启动

    Windows下Redis的安装及PHP扩展使用 时间 2014-10-28 17:47:09  CSDN博客 原文  http://blog.csdn.net/wyqwclsn/article/de ...

  8. linux下redis的安装与部署及基础命令

    <1>下载安装文件:redis-3.2.5.tar.gz 放在opt目录下 <2> tar -zxvf redis-3.2.5.tar.gz,备份redis.conf到自己的目 ...

  9. redis/php redis扩展 安装

    作者:silenceper 日期:2013-10-03 原文地址: http://silenceper.com/archives/952.html 我是在CentOS 6.3 中进行的. 使用到的软件 ...

  10. [Linux]Linux下redis的安装及配置.

    在上一篇[Linux] linux下安装配置 zookeeper/redis/solr/tomcat/IK分词器 详细实例. 我们已经将redis所需tar包拷贝到了linux下的root 根目录下, ...

随机推荐

  1. 如何将Eclipse中的项目迁移到Android Studio中

    如果你之前有用Eclipse做过安卓开发,现在想要把Eclipse中的项目导入到Android Studio的环境中,那么首先要做的是生成Build Gradle的文件.因为Android Studi ...

  2. VS 一些用法设置

    /************************************************************************ * VS 一些用法设置 * 说明: * 最近要用到C ...

  3. Spring-AOP解析

    策略模式:选择动态代理还是CGLIB方式: 1.这种在运行时,动态地将代码切入到类的指定方法.指定位置上的编程思想就是面向切面的编程. 2.AOP基本上是通过代理机制实现的 3.写好验证用户的代码,然 ...

  4. hdu4352(数位DP + LIS(nlogn))

    题目描述: 给定一个区间中,将区间的每一个数看成一个字符串,求这个区间内每个字符串的最大上升 子序列等于k的个数. 可以采用nlogn的LIS(用一个C数组记录长度为i的最大上升子序列的结尾最小值), ...

  5. 520. Detect Capital(检测数组的大小写)

    Given a word, you need to judge whether the usage of capitals in it is right or not. We define the u ...

  6. 将Mozilla ThunderBird最小化到系统托盘(转载)

    转自:http://be-evil.org/mozilla-thunderbird-minize-to-tray.html Mozilla ThunderBird是一款非常不错的邮件客户端,但是其在默 ...

  7. Ruby 数式匹配器

    str = "x^2 + 12317         +X^2 -       Length" str = "      x    ^  2  + y           ...

  8. mybatis基础学习5-一对多和多对多(简写)

    1:建实体类 建mysql表

  9. bzoj 4814: [Cqoi2017]小Q的草稿【计算几何】

    //先打个50暴力,10min50分简直美滋滋~ #include<iostream> #include<cstdio> #include<algorithm> u ...

  10. 洛谷P3211 [HNOI2011]XOR和路径(期望dp+高斯消元)

    传送门 高斯消元还是一如既往的难打……板子都背不来……Kelin大佬太强啦 不知道大佬们是怎么发现可以按位考虑贡献,求出每一位是$1$的概率 然后设$f[u]$表示$u->n$的路径上这一位为$ ...