当前位置:网站首页>How to set password complexity and timeout exit function in Oracle
How to set password complexity and timeout exit function in Oracle
2022-06-30 02:46:00 【Yisu cloud】
oracle How to set password complexity and timeout exit function
Today I'd like to share with you oracle How to set password complexity and timeout exit function , Detailed content , Clear logic , I believe most people still know too much about this knowledge , So share this article for your reference , I hope you will gain something after reading this article , Now let's take a look .
see oracle Whether to enable password complexity ;
select limit from dba_profiles where RESOURCE_NAME='PASSWORD_VERIFY_FUNCTION' and profile='DEFAULT';
Limit The value of the column is null Indicates that the password verification function is not enabled ; If the return value is :VERIFY_FUNCTION_11G It means that the verification function function is enabled
Turn off password complexity checking
SQL> alter profile default limit PASSWORD_VERIFY_FUNCTION null;Profile altered.
View password validity :
SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME';
oracle Password set to 180 God
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME 180;
oracle Set password complexity
[[email protected] Host name ~]# su - oracle[[email protected] Host name ~]# echo $ORACLE_HOME
see Oracle11g The default password complexity function script provided by the database (Oracle Install under directory /rdbms/admin/utlpwdmg.sql file )
[orac[email protected] Host name admin]$ sqlplus /nologSQL> connect /as sysdbaConnected.SQL> @?/rdbms/admin/utlpwdmg.sql
oracle Unlock after user lock
SQL> conn /as sysdbaSQL> alter user test account unlock;
Set up oracle Timeout exit function ;
SQL> SELECT name, value FROM gv$parameter WHERE name = 'resource_limit';NAME VALUE--------------- ----------resource_limit FALSE without , Then enable this parameter :SQL> ALTER SYSTEM SET RESOURCE_LIMIT=TRUE;System altered.SQL> SELECT name, value FROM gv$parameter WHERE name = 'resource_limit';NAME VALUE--------------- ----------resource_limit TRUE Modify existing Profile Medium IDLE_TIME:SQL> ALTER PROFILE DEFAULT LIMIT IDLE_TIME 10;
=========================================================
Check to see if it's on oracle Audit function of ;
show parameter audit;

stay oracle11g in , The database audit function is enabled by default ( This sum oracle10g Is not the same ,10g The default is off )
audit_trail Of value The value is NONE Indicates not open ;
audit_trail Of value The value is FALSE Indicates not open ;
audit_trail Of value The value is DB Open for indication ;
audit_trail Of value The value is TURE Open for indication ;
audit_trail Of value The value is OS Indicates that the audit record is written to an operating system file ;
That's all “oracle How to set password complexity and timeout exit function ” All the content of this article , Thank you for reading ! I believe you will gain a lot after reading this article , Xiaobian will update different knowledge for you every day , If you want to learn more , Please pay attention to the Yisu cloud industry information channel .
边栏推荐
- Série de tutoriels cmake - 02 - génération de binaires à l'aide du Code cmake
- Matlab code running tutorial (how to run the downloaded code)
- CMake教程系列-05-选项及变量
- Ffmpeg source code
- Global and Chinese market of Kanban software 2022-2028: Research Report on technology, participants, trends, market size and share
- C language pivot_ Invalid argument error resolution for root
- 银行的理财产品一般期限是多久?
- CMake教程系列-02-使用cmake代碼生成二進制
- 隐藏在科技教育中的steam元素
- 代码签名、驱动签名的常见问题解答
猜你喜欢

Heap sort

公司电脑强制休眠的3种解决方案

重磅来袭--UE5的开源数字孪生解决方案

FDA ESG规定:必须使用数字证书保证通信安全

选购通配符SSL证书注意事项

Welfare lottery | what are the highlights of open source enterprise monitoring zabbix6.0

Jupyter notebook显示k线图集合

JMeter obtains cookies across thread groups or JMeter thread groups share cookies

什么是自签名证书?自签名SSL证书的优缺点?

IBM websphere通道联通搭建和测试
随机推荐
如何在 JupyterLab 中把 ipykernel 切换到不同的 conda 虚拟环境?
IBM WebSphere channel connectivity setup and testing
Unity3D UGUI强制刷新Layout(布局)组件
Shell Sort
Xunwei NXP itop-imx6 development platform
[Postgres] Postgres database migration
怎样的外汇交易平台是有监管的,是安全的?
Precautions for purchasing wildcard SSL certificate
【postgres】postgres 数据库迁移
SQLite use
如何预防钓鱼邮件?S/MIME邮件证书来支招
Heavy attack -- ue5's open source digital twin solution
CA数字证书包含哪些文件?如何查看SSL证书信息?
Global and Chinese market of subscription revenue management software 2022-2028: Research Report on technology, participants, trends, market size and share
High paid programmers & interview questions series 63: talk about the differences between sleep (), yield (), join (), and wait ()
【干货分享】最新WHQL徽标认证申请流程
[NPM] solve the problem of error reporting when installing typeorm with NPM
[论]【DSTG】Dynamic SpatiotemporalGraph Convolutional Neural Networks for Traffic Data Imputation
重看《Redis设计与实现》后记录几个要点
Ffmpeg source code