chenzechao

 

 

-- Jira数据库中,用户信息都存放在表 cwd_user中
-- 切换到jiar数据库
use jiradb;

-- 更改密码为sphere
update cwd_user
set credential=\'uQieO/1CGMUIXXftw3ynrsaYLShI+GTcPS4LdUGWbIusFvHPfUzD7CZvms6yMMvA8I7FViHVEqr6Mj4pCLKAFQ==\'
where user_name=\'XXXX\'
;

-- 更改密码为123456
update cwd_user
set credential=\'{PKCS5S2}ms9AdSR9vnOXqnNdEmRG/kxRc22qTnx3Y/nwdyaNEg5/XAANouQ+akxcQbFjJiQ4\'
where user_name=\'XXXX\'
;

 

分类:

技术点:

相关文章:

  • 2021-12-12
  • 2021-04-25
  • 2021-05-23
  • 2021-05-21
  • 2021-09-23
  • 2021-09-11
  • 2021-12-21
  • 2021-09-14
猜你喜欢
  • 2021-10-20
  • 2021-11-05
  • 2021-12-04
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案