美文网首页
Linux yum安装Redis

Linux yum安装Redis

作者: Bertram_Wang | 来源:发表于2019-04-29 00:46 被阅读0次
  • 安装
    yum install redis

  • 启动
    systemctl start redis.service

  • 查看进程
    ps -ef | grep redis

    redis    29373     1  0 16:16 ?        00:00:00 /usr/bin/redis-server 127.0.0.1:6379
    root     29389 29145  0 16:17 pts/1    00: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变成你想要的"密码"

  • 重启Redis,再次链接就OK了。(确保6379端口不要被墙了就行)

相关文章

网友评论

      本文标题:Linux yum安装Redis

      本文链接:https://www.haomeiwen.com/subject/zzzsnqtx.html