Redis 在linux 7.0 版本的安装
Posted gaoshen990816
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis 在linux 7.0 版本的安装相关的知识,希望对你有一定的参考价值。
1 上传redis 安装包
jemalloc-3.6.0-1.el7.x86_64
redis-4.0.8-1.el7.remi.x86_64
2 安装程序
先安装rpm -ivh jemalloc-3.6.0-1.el7.x86_64.rpm
rpm -ivh jemalloc-3.6.0-1.el7.x86_64.rpm
3 创建redis 存储文件的目录
mkdir -p /data/redis (-p是层级创建的意思)
4 修改操作存储文件目录的权限
chown redis:redis /data/redis/ -R
5 赋予redis用户 文件存储 可写权限
chmod 774 /data/redis/ -R
6 启动 redis
systemctl start redis
7 查看端口监听
netstat -antp|grep 6379
发现监听的ip 是本机
8 修改监听本机ip
先暂停redis
vi /etc/redis.conf
按ESC 键 输入: ,/bind 回车
查找bind 按键盘 n 跳转到下一个bind
找到 bind 127.0.0.1
改成 bind 0.0.0.0
9 启动redis
systemctl start redis
10 再次 查看端口
netstat -antp|grep 6379 要看到0.0.0.0
11 增加防火墙 端口
firewall-cmd --add-port=6379/tcp --permanent
firewall-cmd --reload
firewall-cmd --list-all
12 命令行连接 redis
redis-cli -h 192.168.188.146 -p 6379
-h 指定redis 所在服务器的ip值
-p 端口号
-a 输入密码
13 设置redis密码
编辑redis 配置文件 vi /etc/redis.conf
找到: # requirepass foobared
改为: requirepass 设置登录密码
重启systemctl restart redis
登录: redis-cli -h 192.168.188.146 -p 6379
get a 无法使用
输入:AUTH 所设置的密码 可以继续使用
14 直接登录客户端 直接输入密码
redis-cli -h 192.168.188.146 -p 6379 -a 设置的密码
以上是关于Redis 在linux 7.0 版本的安装的主要内容,如果未能解决你的问题,请参考以下文章