键值对内存数据库,应该是比较快,
[root@aliyun ~]# yum install redis
[root@aliyun ~]# systemctl status redis
[root@aliyun ~]# systemctl enable redis
[root@aliyun ~]# systemctl start redis
[root@aliyun ~]# firewall-cmd --add-port=6379/tcp --permanent
[root@aliyun ~]# firewall-cmd --reload
[root@aliyun ~]# vim /etc/redis.conf
允许远程访问
#bind 127.0.0.1
端口号
port 8888
设置密码
requirepass xxxxxx
关闭保护
protected-mode no
使用Another Redis Desktop Manager进行连接