编译安装redis4.0
Posted bo-ke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装redis4.0相关的知识,希望对你有一定的参考价值。
下载redis4.0的安装包:http://download.redis.io/releases/redis-4.0.11.tar.gz
这里用的是已经下载到电脑上,只需上传即可
解压缩
[[email protected]67 ~]# tar xvf redis-4.0.11.tar.gz
查看,会生成redis-4.0.11
[[email protected]67 ~]# ls redis-4.0.11
移动程序包
[[email protected]67 ~]# mv redis-4.0.11 /usr/local/redis
创建文件保存目录
[[email protected]67 ~]# mkdir /redis
创建用户
[[email protected]67 ~]# useradd redis
生成配置文件
[[email protected]67 ~]# cp -a /usr/local/redis/redis.conf /redis
修改配置文件
[[email protected]67 ~]# vim /redis/redis.conf
68 bind 10.220.5.67
91 port 6379 <<<默认6379
135 daemonize yes <<<是否工作在后台运行模式
157 pidfile /redis/redis_6379.pid
170 logfile /redis/redis.log
262 dir /redis
修改属主,属组
[[email protected]67 ~]# chown -R redis.redis /redis
启动,并查看
[[email protected]67 ~]# /usr/local/redis/src/redis-server /redis/redis.conf [[email protected]67 ~]# ss -tnl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 10.220.5.67:6379 *:* LISTEN 0 128 *:22 *:* LISTEN 0 128 :::22
为了以后启动方便,需要导出二进制文件
[[email protected]67 ~]# vim /etc/profile.d/redis.sh
PATH=$PATH:/usr/local/redis/
export PATH
[[email protected]67 ~]# source /etc/profile.d/redis.sh
先关闭redis,由于是在做实验,用暴力的方法关闭
[[email protected]67 ~]# pkill redis
[[email protected] ~]# ss -tnl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:* LISTEN 0 128 :::22 :::*
使用二进制命令启动
[[email protected]67 ~]# redis-server /redis/redis.conf [[email protected]67 ~]# ss -tnl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 10.220.5.67:6379 *:* LISTEN 0 128 *:22 *:* LISTEN 0 128 10.220.5.67:16379 *:* LISTEN 0 128 :::22 :::*
以上是关于编译安装redis4.0的主要内容,如果未能解决你的问题,请参考以下文章