search
HomeDatabaseMysql TutorialOracle创建用户时的密码校验问题

今天需要在测试环境中做一些性能测试,为了不影响原有的数据,准备创建一个临时的schema。但是创建的时候报了如下的错误。第一感

今天需要在测试环境中做一些性能测试,为了不影响原有的数据,准备创建一个临时的schema。但是创建的时候报了如下的错误。
 SQL> create user mig_perf identified by mig_perf;
 create user mig_perf identified by mig_perf
 *
 ERROR at line 1:
 ORA-28003: password verification for the specified password failed
 ORA-20002: Password same as or similar to user
 
第一感觉就是开启了密码的校验,11g里面有一个新特性的关于密码的大小写敏感的,,会不会有关联呢。似乎有些牵强,但是目前是false选项,表示不对大小写敏感。
 
SQL> show parameter sen
 NAME                                TYPE        VALUE
 ------------------------------------ ----------- ------------------------------
 sec_case_sensitive_logon            boolean    FALSE
 
如果还有问题,就需要从profie的角度入手了,比如登录密码超过10次,账户就会锁定,这些都是在profile里面配置的。
 来看看能得到什么信息。
 
select *from dba_profiles order by profile;
 SQL> /
 

PROFILE                        RESOURCE_NAME                    RESOURCE LIMIT
 ------------------------------ -------------------------------- -------- ----------------------------------------
 DBAMON_PF1                    COMPOSITE_LIMIT                  KERNEL  UNLIMITED
 DBAMON_PF1                    SESSIONS_PER_USER                KERNEL  10
 DBAMON_PF1                    CPU_PER_SESSION                  KERNEL  UNLIMITED
 DBAMON_PF1                    CPU_PER_CALL                    KERNEL  UNLIMITED
 DBAMON_PF1                    LOGICAL_READS_PER_SESSION        KERNEL  UNLIMITED
 DBAMON_PF1                    LOGICAL_READS_PER_CALL          KERNEL  UNLIMITED
 DBAMON_PF1                    IDLE_TIME                        KERNEL  UNLIMITED
 DBAMON_PF1                    CONNECT_TIME                    KERNEL  UNLIMITED
 DBAMON_PF1                    PRIVATE_SGA                      KERNEL  DEFAULT
 DBAMON_PF1                    FAILED_LOGIN_ATTEMPTS            PASSWORD 10
 DBAMON_PF1                    PASSWORD_LIFE_TIME              PASSWORD UNLIMITED
 DBAMON_PF1                    PASSWORD_REUSE_TIME              PASSWORD UNLIMITED
 DBAMON_PF1                    PASSWORD_REUSE_MAX              PASSWORD UNLIMITED
 DBAMON_PF1                    PASSWORD_VERIFY_FUNCTION        PASSWORD VERIFY_FUNCTION
 DBAMON_PF1                    PASSWORD_LOCK_TIME              PASSWORD .0106
 DBAMON_PF1                    PASSWORD_GRACE_TIME              PASSWORD UNLIMITED
 DEFAULT                        COMPOSITE_LIMIT                  KERNEL  UNLIMITED
 DEFAULT                        SESSIONS_PER_USER                KERNEL  UNLIMITED
 DEFAULT                        CPU_PER_SESSION                  KERNEL  UNLIMITED
 DEFAULT                        CPU_PER_CALL                    KERNEL  UNLIMITED
 DEFAULT                        LOGICAL_READS_PER_SESSION        KERNEL  UNLIMITED
 DEFAULT                        LOGICAL_READS_PER_CALL          KERNEL  UNLIMITED
 DEFAULT                        IDLE_TIME                        KERNEL  UNLIMITED
 DEFAULT                        CONNECT_TIME                    KERNEL  UNLIMITED
 DEFAULT                        PRIVATE_SGA                      KERNEL  UNLIMITED
 DEFAULT                        FAILED_LOGIN_ATTEMPTS            PASSWORD 10
 DEFAULT                        PASSWORD_LIFE_TIME              PASSWORD 180
 DEFAULT                        PASSWORD_REUSE_TIME              PASSWORD UNLIMITED
 DEFAULT                        PASSWORD_REUSE_MAX              PASSWORD UNLIMITED
 DEFAULT                        PASSWORD_VERIFY_FUNCTION        PASSWORD VERIFY_FUNCTION_11G
 DEFAULT                        PASSWORD_LOCK_TIME              PASSWORD 1
 DEFAULT                        PASSWORD_GRACE_TIME              PASSWORD 7
 
我创建的新用户,没有指定profile,所以会是默认的default profile,对应的"PASSWORD_VERIFY_FUNCTION" 有一些差别。
 看来是对于密码安全的加强,来看看相关的简单测试,看看密码验证还都做了那些校验。
 SQL> create user mig_perf identified by mig_perf1;
 create user mig_perf identified by mig_perf1
 *
 ERROR at line 1:
 ORA-28003: password verification for the specified password failed
 ORA-20005: Password same as or similar to user name
 
SQL> create user mig_perf identified by  abc;
 create user mig_perf identified by  abc
 *
 ERROR at line 1:
 ORA-28003: password verification for the specified password failed
 ORA-20001: Password length less than 8
 
SQL>  create user mig_perf identified by  abcabc12;
 User created.
 
SQL> drop user mig_perf;
 User dropped.
 
当然了“PASSWORD VERIFY_FUNCTION_11G”其实是一个function来实现的。具体的细节可以在$Oracle_HOME/rdbms/admin/utlpwdmg.sql中查看。
 > ls -lrt utlpwd*
 -rw-r--r-- 1 oraccbs1 dba 11555 Aug 13  2006 utlpwdmg.sql
 
-- This script sets the default password resource parameters
 -- This script needs to be run to enable the password features.
 -- However the default resource parameters can be changed based
 -- on the need.
 -- A default password complexity function is also provided.
 -- This function makes the minimum complexity checks like
 -- the minimum length of the password, password not same as the
 -- username, etc. The user may enhance this function according to
 -- the need.
 -- This function must be created in SYS schema.
 -- connect sys/ as sysdba before running the script
 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),