感谢支持
我们一直在努力

CentOS 7 安装Redis

系统环境和版本说明

Linux依然使用的是CentOS 7,安装的redis是官网的最新的版本4.0.2

安装步骤

下载安装包:
https://redis.io/download

创建文件目录:

# mkdir /usr/local/redis

解压文件

# tar xvfz redis-4.0.2.tar.gz

进入解压文件

# cd /usr/local/redis/redis-4.0.2/
# ls
总用量 280
-rw-rw-r--.  1 root root 131381 9月  21 22:12 00-RELEASENOTES
-rw-rw-r--.  1 root root     53 9月  21 22:12 BUGS
-rw-rw-r--.  1 root root   1815 9月  21 22:12 CONTRIBUTING
-rw-rw-r--.  1 root root   1487 9月  21 22:12 COPYING
drwxrwxr-x.  6 root root   4096 9月  21 22:12 deps
-rw-rw-r--.  1 root root     11 9月  21 22:12 INSTALL
-rw-rw-r--.  1 root root    151 9月  21 22:12 Makefile
-rw-rw-r--.  1 root root   4223 9月  21 22:12 MANIFESTO
-rw-rw-r--.  1 root root  20530 9月  21 22:12 README.md
-rw-rw-r--.  1 root root  57764 9月  21 22:12 redis.conf
-rwxrwxr-x.  1 root root    271 9月  21 22:12 runtest
-rwxrwxr-x.  1 root root    280 9月  21 22:12 runtest-cluster
-rwxrwxr-x.  1 root root    281 9月  21 22:12 runtest-sentinel
-rw-rw-r--.  1 root root   7606 9月  21 22:12 sentinel.conf
drwxrwxr-x.  3 root root   4096 9月  21 22:12 src
drwxrwxr-x. 10 root root   4096 9月  21 22:12 tests
drwxrwxr-x.  8 root root   4096 9月  21 22:12 utils

配置编译环境

# yum install gcc-c++

编译

# make

如果报错:jemalloc/jemalloc.h:没有那个文件或目录
使用:

make MALLOC=libc
# make install
cd src && make install
make[1]: 进入目录“/usr/local/redis/redis-4.0.2/src”
    CC Makefile.dep
make[1]: 离开目录“/usr/local/redis/redis-4.0.2/src”
make[1]: 进入目录“/usr/local/redis/redis-4.0.2/src”

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

    INSTALL install
    INSTALL install
    INSTALL install
    INSTALL install
    INSTALL install
make[1]: 离开目录“/usr/local/redis/redis-4.0.2/src”

启动Redis-server

# redis-server


Ctrl+shift+t 重开一个终端tab
查看Redis

$ ps -ef | grep redis
root       5188   3749  0 22:46 pts/0    00:00:00 redis-server *:6379
xcx        5235   5200  0 22:46 pts/1    00:00:00 grep --color=auto redis

启动Redis-client

$ redis-cli
127.0.0.1:6379> ping
PONG
127.0.0.1:6379> 

基本安装完成

此时重启系统,发现redis并没有启动,所以需要设置redis自启,
这里我们进入utils文件夹

# cd /usr/local/redis/redis-4.0.2/utils

切换root用户,执行里面的install_server.sh该文件会帮助我们将redis服务添加到系统自启服务中

# ./install_server.sh 
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379] 
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] 
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] 
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] 
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] 
Selected config:
Port           : 6379
Config file    : /etc/redis/6379.conf
Log file       : /var/log/redis_6379.log
Data dir       : /var/lib/redis/6379
Executable     : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!

这是再重启系统,就会发现redis跟随系统自动启动了

如果需要外部访问,需要修改配置文件:

# vim /etc/redis/6379.conf
#bind 127.0.0.1
bind 0.0.0.0
#daemonize no
daemonize yes

防火墙开放6379端口

# firewall-cmd --permanent --zone=public --add-port=6379/tcp
# firewall-cmd --reload

重启redis服务后就可以外部访问了

下面关于Redis的文章您也可能喜欢,不妨参考下:

Ubuntu 14.04下Redis安装及简单测试 http://www.linuxidc.com/Linux/2014-05/101544.htm

Redis主从复制基本配置 http://www.linuxidc.com/Linux/2015-03/115610.htm

CentOS 7下Redis的安装与配置 http://www.linuxidc.com/Linux/2017-02/140363.htm

Ubuntu 14.04安装Redis与简单配置 http://www.linuxidc.com/Linux/2017-01/139075.htm

Ubuntu 16.04环境中安装PHP7.0 Redis扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm

Redis 单机&集群离线安装部署 http://www.linuxidc.com/Linux/2017-03/141403.htm

CentOS 7.0 安装Redis 3.2.1详细过程和使用常见问题 http://www.linuxidc.com/Linux/2016-09/135071.htm

Ubuntu 16.04环境中安装PHP7.0 Redis扩展 http://www.linuxidc.com/Linux/2016-09/135631.htm

Ubuntu 15.10下Redis集群部署文档 http://www.linuxidc.com/Linux/2016-06/132340.htm

Redis实战 中文PDF http://www.linuxidc.com/Linux/2016-04/129932.htm 

更多CentOS相关信息见CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14

本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-10/147450.htm

赞(0) 打赏
转载请注明出处:服务器评测 » CentOS 7 安装Redis
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏