1.1 更新仓库 sudo apt update 1.2 使用 apt 从官方 Ubuntu 存储库来安装 Redis sudo apt-get install redis-server 二、设置密码 2.1 打开Redis配置文件redis.conf sudo vi /etc/redis/redis.conf 2.2 找到# requirepass foobared这一行,将注释符号#去掉,将后面修改成自己的密码,例如,设置密码为123abc requirepass 自定义密码 三、开启远程访问 默认情况下,Redis服务器不允许远程访问,只允许本机访问,所以我们需要设置打开远程访问的功能。 1、打开Redis服务器的配置文件redis.conf sudo vi /etc/redis/redis.conf 2、使用注释符号#注释bind 127.0.0.1这行 #注释bind #bind 127.0.0.1 四、Redis服务控制命令 /etc/init.d/redis-server start #启动 /etc/init.d/redis-server stop #关闭 /etc/init.d/redis-server restart #重启
标签:redis,sudo,Redis,server,etc,conf,ubuntu,安装 From: https://www.cnblogs.com/-llf/p/17700586.html