方法一:源文件安装(推荐安装)
1.首先添加EPEL仓库,然后更新yum源
- sudo yum install epel-release
- sudo yum update
之后将会在/etc/yum.repos.d中创建两个epel的repo文件。分别是epel.repo和epel-testing.repo。
2.安装Redis数据库:
2.1、yum安装redis服务器
yum install redis
两个重要的redis服务器配置文件的路径/etc/redis.conf和/etc/redis-sentinel.conf。
2.2启动redis服务器
systemctl start redis.service
sudo systemctl start redis
这里同样可以使用redis-cli进入Redis命令行模式操作。
2.3、检查redis服务器的运行状态
systemctl status redis.service
2.4测试redis的安装
redis-cli ping
返回结果PONG,则安装成功。
3.Redis服务器监听端口
Redis Server默认侦听端口号6379,可使用SS命令查看。
ss -nlp|grep redis
4.redis远程连接
需要修改配置文件,路径为/etc/redis.conf
4.1注释(bind 127.0.0.1(vim61行))
vim下查找内容命令普通模式下输入 / 后面搜寻内容
4.2推荐给Redis设置密码,取消注释这一行(480行)
foobared即当前密码,可以自行修改
requirepass 密码
4.3重启Redis服务,使用的命令如下
sudo systemctl restart redis
5.redis服务器相关命令
systemctl start redis.service #启动redis服务器
systemctl stop redis.service #停止redis服务器
systemctl restart redis.service #重新启动redis服务器
systemctl status redis.service #获取redis服务器的运行状态
systemctl enable redis.service #开机启动redis服务器
systemctl disable redis.service #开机禁用redis服务器