码迷,mamicode.com
首页 > 其他好文 > 详细

centos7安装redis

时间:2019-10-19 15:15:06      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:whereis   修改   centos7安装   安装redis   配置   远程   systemctl   ice   red   

一、安装redis 

        yum install redis;

二、启动redis服务 

       /bin/systemctl  start  redis.service

三、测试redis

       redis-cli

       set  ‘test‘  ‘hello‘

       get  ‘test‘

四、修改配置

        1.找配置文件 

            whereis  redis.config    

2.打开配置文件  

           vi /etc/redis.conf

 允许远程访问

        #bind 127.0.0.1

        端口号

        port 8888

        设置密码

        requirepass FA86D6708231EACC2EC22F0_20190624

        关闭保护

        protected-mode no

          ESC  :wq  保存

         /bin/systemctl  restart  redis.service

常用命令

    启动  /bin/systemctl  start  redis.service

    重启  /bin/systemctl  restart  redis.service

    关闭  /bin/systemctl  stop  redis.service

centos7安装redis

标签:whereis   修改   centos7安装   安装redis   配置   远程   systemctl   ice   red   

原文地址:https://www.cnblogs.com/wangxc20181130/p/11703575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!