Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一个问题,即用户在 uaa 数据库中使用相同的用户名存在两次。是否有任何脚本可以检测复制的用户和删除?
您建议检测和删除的最佳方法是什么?
UAA 不允许您将同一用户添加两次。
你可以试试下面的..
$ uaac 目标 $ uaac 令牌客户端获取管理员 -s $ uaac 用户 | grep -i 用户名 $ uaac 客户 | grep -i 用户名
$ uaac 目标
$ uaac 令牌客户端获取管理员 -s
$ uaac 用户 | grep -i 用户名
$ uaac 客户 | grep -i 用户名
这将为您提供 UAA 用户和客户的列表。试试看。