summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/acl-list.md
blob: ebfa36bd4442f3daa07161e7af7fbfe8fd211c2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
The command shows the currently active ACL rules in the Redis server. Each line
in the returned array defines a different user, and the format is the same used
in the redis.conf file or the external ACL file, so you can cut and paste what
is returned by the ACL LIST command directly inside a configuration file if you
wish (but make sure to check `ACL SAVE`).

@return

An array of strings.

@examples

```
> ACL LIST
1) "user antirez on #9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08 ~objects:* +@all -@admin -@dangerous"
2) "user default on nopass ~* +@all"
```