准备安装环境
yum install -y gcc tcl gcc-c++ make
使用yum进行处理问题
yum install redis -y
安装完成之后会有/etc/redis.conf,我们需要进行一个备份操作
cp /etc/redis.conf /home/redis/
启动redis服务测试 能否登录
systemctl start redis
systemctl status redis
redis-cli -h 127.0.0.1 -p 6379
[root@localhost redis]# redis-cli -h 127.0.0.1 -p 6379
127.0.0.1:6379> ping
PONG
测试:
set hello word
get hello
127.0.0.1:6379> set hello word
OK
127.0.0.1:6379> get hello
"word"
监控的IP和端口号命令
ss -tnlup | grep redis