当前位置 : 主页 > 编程语言 > 其它开发 >

Redis(1)

来源:互联网 收集:自由互联 发布时间:2022-05-26
1.Redis安装1.1.Linux环境安装Redis step-1:下载Redis 进入官网找到下载地址https://redis.io/download wget https: // github.com/redis/redis/archive/7.0.0.tar.gz step-2:解包 tar -zvxf 7.0 . 0 . tar .gz step-3:编译 cd re
1.Redis安装 1.1.Linux环境安装Redis

step-1:下载Redis

进入官网找到下载地址 https://redis.io/download

wget https://github.com/redis/redis/archive/7.0.0.tar.gz

 step-2:解包

tar -zvxf 7.0.0.tar.gz

 step-3:编译

cd redis-7.0.0
make

 step-4:安装

make install

 step-5(方式一):启动

cd src
redis-server

step-5(方式二):指定配置文件启动

在redis的安装目录下有一个redis.conf配置文件

 redis.conf文件里面没有用的信息比较多,使用cat命令过滤一下,生成一个新的配置文件

cat redis.conf | grep -v "#" | grep -v "^$" > redis-6379.conf

 然后在这个配置文件修改自己需要的配置项,修改结束,启动redis

redis-server redis-6379.conf

step-6:校验

新建一个会话后在redis-4.4.0/src目录下使用命令连接 redis-cli 

 

 

1.2.Windows环境安装Redis

step-1:下载文件

  • 链接: https://pan.baidu.com/s/1EMs1f7xBlhoL_c6Eh5o3rw
  • 提取码: ri3s 

step-2:创建启动文件

 

 Redis目录下创建start.bat文件,文件内容为:

redis-server redis.windows.conf

上一篇:关于线段树基础
下一篇:没有了
网友评论