others linux服务器运维 django3 监控 k8s golang 数据库 大数据 前端 devops 理论基础 java oracle 运维日志

confluence 重置密码

访问量:1525 创建时间:2021-09-07

查看confluence的管理员id(在mysql数据库中)

use confluence;
select u.id ,u.user_name, u.active from cwd_user u
join cwd_membership cm on u.id = cm.child_user_id
join cwd_group cg on cm.parent_id = cg.id
join cwd_directory cd on cg.directory_id = cd.id
where cg.group_name = 'confluence-administrators' and cd.directory_name='Confluence Internal Directory';

修改管理员密码,密码Ab123456

update cwd_user set credential = '{PKCS5S2}ltrb9LlmZ0QDCJvktxd45WgYLOgPt2XTV8X7av2p0mhPvIwofs9bHYVz2OXQ6/kF' where id=229377;
###恢复密码为admin
update cwd_user set credential =  'x61Ey612Kl2gpFL56FT9weDnpSo4AV8j8+qx2AuTHdRyY036xxzTTrw10Wq3+4qQyB+XURPWx1ONxp3Y3pB37A=='  where id=xxxxxx; 
登陆评论: 使用GITHUB登陆