Cas5.2版本的用户如果想访问gerrit,可以直接访问到,但是得自己设定邮箱信息,然后确认,这种方式类似于注册的这种方式,然而我们可以直接通过操作表的方式,完成gerrit用户和cas用户的关联。
重要的关系表
表名称 | 作用 |
---|---|
accounts | 存id用的 |
accounts_id | 存用户信息 |
account_external_ids | 存邮件信息 |
删除用户
需要先获取到用户的id,然后删除这三张表的用户
-- 查看这个用户的信息
select from account_external_ids where account_id = '96';
-- 然后根据查询的 account_id 来删除数据
delete from account_external_ids where account_id = '96';
delete from accounts where account_id ='96';
delete from account_id where s = '96';
</