CentOS7(单节点)安装Redis

1.下载安装包

2.上传到linux

3.解压:

1
2
3
cd /usr/local/tars

tar -zxvf redis-4.0.2.tar.gz -C /usr/local

4.编译:

1
2
3
cd /usr/local/redis-4.0.2

make

编译

5.安装:

1
2
3
cd /usr/local/redis-4.0.2

make PREFIX=/usr/local/redis install //安装

安装

6.拷贝配置文件:

1
2
3
cd /usr/local

cp ./redis-4.0.2/redis.conf ./redis

拷贝

7.修改配置文件

1
2
3
cd /usr/local/redis

vi redis.conf

修改内容如下:

1
2
3
daemonize yes        //是否后台启动

logfile "/usr/local/redis/redis.log" //日志文件地址

8.启动:

1
2
3
cd /usr/local/redis

./bin/redis-server ./redis.conf

9.查看:

1
ps -ef | grep redis

10.启动客户端:

1
2
3
cd /usr/local/redis

./bin/redis-cli

查看

打赏
  • 版权声明: 本博客所有文章除特别声明外,著作权归作者所有。转载请注明出处!
  • Copyrights © 2015-2021 Movle
  • 访问人数: | 浏览次数:

请我喝杯咖啡吧~

支付宝
微信