Blogger Information
Blog 25
fans 0
comment 0
visits 16821
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Linux下安装redis过程
力挽狂澜的博客
Original
789 people have browsed it
  1. redis官网页面查看最新版本 https://redis.io/download

  2. $ wget http://download.redis.io/releases/redis-4.0.9.tar.gz    //下载最新稳点版本源码到当前目录下 
    $ tar xzf redis-4.0.9.tar.gz    //在当前目录以压缩包名称解压
    $ cd redis-4.0.9    //进入解压目录
    $ make    //源码编译安装
    $ src/redis-server    //以默认配置redis.conf启动服务端。
    //运行Redis,出现redis字符图标以及介绍代表编译安装成功

    其中4.0.9代表最新稳定版版本号。命令格式大同小异。仅版本号和下载安装的目录需要自定义。

  3. $ src/redis-cli   //使用内置客户端与Redis服务端进行交互
    //提示Could not connect to Redis at 127.0.0.1:6379: Connection refused。
    //这是因为没有开启redis守护进程,linux操作页面无法同时开启服务端和客户端。需要配置设置开启守护进程
  4. $ vim redis.conf    //vim打开redis默认配置文件
    vim中命令模式下输入“/daemonize”    //类似于windows的文件中查询,字符n代表下一个,N代表上一个。
    //设置参数值 no 为 yes 并在命令模式下输入 “:wq” 代表保存并退出
  5. $ src/redis-server redis.conf //以配置文件启动,此时守护进程拉起
    6130:C 09 May 18:33:41.458 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
    6130:C 09 May 18:33:41.459 # Redis version=4.0.9, bits=64, commit=00000000, modified=0, pid=6130, just started
    6130:C 09 May 18:33:41.459 # Configuration loaded
    $ src/redis-cli
    127.0.0.1:6379>    //成功开启客户端连接服务端,可以开始使用redis的命令了。
    127.0.0.1:6379> set name 54skyer
    OK
    127.0.0.1:6379> get name
    "54skyer"
    127.0.0.1:6379>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post