安全第二手 设置密码复杂度 verify-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502481
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2023-06-05 16:34:28


  1. 关键是pdb情况下
  2. 得要逐个登录pdb,然后再设置profile

  3. alter session set container=pdb1;


  4. set lines 200 pages 1000
  5. col profile for a10
  6. col resource_name for a30
  7. col resource_type for a20
  8. col limit for a23
  9. select profile,resource_name,resource_type,limit from dba_profiles where resource_type='password' and profile='default';

  10. alter profile default limit password_verify_function verify_function;

  11. 然后再检查确认
  12. select username,account_status,profile from dba_users;

  13. create user abcdef identified by abcdef;
  14. 如果失败说明复杂度设置成功

还可以改进一下:
  1. create profile prof2 limit password_life_time 180;
  2. alter profile prof2 limit
  3. password_reuse_max 5 --5次内不重用
  4. failed_login_attempts 10 --失败10次锁定
  5. password_lock_time 1/288 --锁定时长 5 分钟


  6. alter user query1 profile prof2;

阅读(159) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图