Linux|Linux yum安装Redis

  • 安装
    yum install redis
  • 启动
    systemctl start redis.service
  • 查看进程
    ps -ef | grep redis
    redis2937310 16:16 ?00:00:00 /usr/bin/redis-server 127.0.0.1:6379 root29389 291450 16:17 pts/100:00:00 grep --color=auto redis

  • 暂停
    systemctl stop redis.service
  • 启动后使用RedisDesktopManager链接发现还是链接不上。
    修改配置文件
    1.daemonize no 修改为 daemonize yes; 开启后台启动。
    2.bing 127.0.0.1 注释(前面添加#号)
    3.#requirepass foobared 取消#号注释 修改foobared变成你想要的"密码"
  • 【Linux|Linux yum安装Redis】重启Redis,再次链接就OK了。(确保6379端口不要被墙了就行)

    推荐阅读