Centos7安装redis
Posted 暴躁的程序猿啊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7安装redis相关的知识,希望对你有一定的参考价值。
Centos 7.6 安装redis
官方地址https://redis.io/download/、
下载之后上传到Linux服务器
我们先在linux中安装redis需要的c环境
yum install gcc-c++
我们使用rz 或者ftp工具 这里上传到/opt 目录下
解压
位置/opt/redis-6,2,1.tar.gz
tar -zxvf redis-6.2.1.tar.g
在redis-6.2.1目录下执行make
make
再次执行make安装
make install
此时就会在/usr/local/bin目录下安装好
更改配置文件
先把配置文件复制到etc下
cp opt/redis-6.2.1/redis.conf /etc/redis.conf
vim etc/reids.conf
设置后台启动
bind 这一行注释掉 不然只允许本地访问
找到这一行设置密码
# use a very strong password otherwise it will be very easy to break.
# 设置Redis连接密码,如果配置了连接密码,客户端在连接Redis时需要通过auth <password>命令提供密码,默认关闭
# requirepass foobared
requirepass 11111
:wq保存
前台启动方式
进入bin 目录 输入 redis-server回车
此时只能停留在当前窗口 离开就会关闭redis
后台启动方式
cd /usr/local/bin
命令:redis-server etc/redis.conf
查看端口
ps -ef | grep redis
放开系统防火墙端口
linux启动防火墙
systemctl start firewalld.service
查看开放端口列表
firewall-cmd --list-port
开放端口
firewall-cmd --zone=public --add-port=6379/tcp --permanent
重启防火墙
[root@hello~]# firewall-cmd --reload
以上是关于Centos7安装redis的主要内容,如果未能解决你的问题,请参考以下文章