nvazquez commented on issue #5989: URL: https://github.com/apache/cloudstack/issues/5989#issuecomment-1038154107
Hi @nxsbi you can use the mailing lists for these questions as well. You can use the API to find out the active users or also query the database From cmk: ```` list accounts state=enabled domainid=<DOMAINID> list users state=enabled domainid=<DOMAINID> ```` Or DB query: ```` select * from account where state = 'enabled'; select * from user where state = 'enabled'; ```` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
