通过数据库重置confluence管理员密码
1、运行此sql 找到你的管理员帐户,并记住管理员帐户的id。
select u.id, u.user_name, u.active from cwd_user u
join cwd_membership m on u.id=m.child_user_id join cwd_group g on m.parent_id=g.id join cwd_directory d on d.id=g.directory_id
where g.group_name = 'confluence-administrators' and d.directory_name='Confluence Internal Directory';
2、运行此sql, 恢复管理员密码为 admin,注意此处xxxxxx 为上一步的 id。
update cwd_user set credential =
'x61Ey612Kl2gpFL56FT9weDnpSo4AV8j8+qx2AuTHdRyY036xxzTTrw10Wq3+4qQyB+XURPWx1ONxp3Y3pB37A=='
where id=xxxxxx;
如果你的密码是{PKCS5S2}前缀开头的,则用下面这个sql:
update cwd_user set credential =
'{PKCS5S2}ltrb9LlmZ0QDCJvktxd45WgYLOgPt2XTV8X7av2p0mhPvIwofs9bHYVz2OXQ6/kF'
where id=xxxxxx;
这个管理员密码为 Ab123456。
文章版权声明:除非注明,否则均为TseKing的运维博客原创文章,转载或复制请以超链接形式并注明出处。
还没有评论,来说两句吧...