infra/docs/keycloak/keycloak-email-list.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
491 B
Markdown
Raw Normal View History

2023-11-16 21:04:29 +00:00
# Process for getting a list of email addresses of all keycloak users
### Keycloak
Required:
- auth.pub.solar ops user credentials
- SSH access to host nachtigall
2023-11-16 21:04:29 +00:00
```
ssh barkeeper@nachtigall.pub.solar
2023-11-16 21:04:29 +00:00
sudo --user keycloak kcadm.sh get users \
-r pub.solar \
--offset 0 \
--limit 1000 \
--no-config \
--server http://localhost:8080 \
--realm master \
--user admin \
--password <admin password> \
> keycloak-user-list.json
jq -r '.[].email' < keycloak-user-list.json
```