美文网首页
redis 服务器启动与关闭

redis 服务器启动与关闭

作者: 师娘哪里去了 | 来源:发表于2020-03-11 09:19 被阅读0次
    ## 启动redis-server,后台线程
    $ redis-server /usr/local/redis/etc/redis.conf 
    ## 启动成功
    $ ps axu|grep redis
    shoren           14948   0.0  0.0  2434840    760 s000  S+   10:18上午   0:00.00 grep redis
    shoren           14946   0.0  0.0  2452968   1492   ??  Ss   10:18上午   0:00.01 redis-server *:6379 
    ## 关闭服务器
    $ redis-cli shutdown
    ##关闭成功
    $ ps axu|grep redis
    shoren           14952   0.0  0.0  2435864    772 s000  S+   10:19上午   0:00.01 grep redis
    

    相关文章

      网友评论

          本文标题:redis 服务器启动与关闭

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