跳至主要內容
2. 安装

1. 集群模式

1. standalone

2. replicaset

3. cluster

1. 操作

1. 登录

[root@localhost ~]# redis-cli -p 6379 -a root
127.0.0.1:6379> PING
PONG

[root@localhost ~]# redis-cli 

鸟书小于 1 分钟DATABASEREDISInstall
1. 介绍

1. 密码

1. 创建

create user 'userName'@'192.168.0.%' identified by 'newPassword';
grant all on *.* to 'userName'@'192.168.0.%';

鸟书小于 1 分钟DATABASEREDIS介绍