You configure various Ops Center Automator settings related to user password conditions and locks by editing the security.conf file. This enables you to customize your security settings to match your specific password policy.
The file is located in the following folder:
Common-Component-installation-folder\conf\sec
The file uses the following format:
specification-key-name=setting
When editing the file, you specify one specification key and setting per line. The following shows the default state of the security definition file:
# This is the minimum length of the password
# (minimum: 1 -256 characters)
password.min.length=4
# This is the minimum number of uppercase characters included in the password
# (minimum: 0-256 characters, character type: A-Z)
password.min.uppercase=0
# This is the minimum number of lowercase characters included in the password
# (minimum: 0-256 characters, character type: a-z)
password.min.lowercase=0
# This is the minimum number of numeric characters included in the password
# (minimum: 0-256 characters, character type: 0-9)
password.min.numeric=0
# This is the minimum number of symbolic characters included in the password
# (minimum: 0-256 characters, character type: ! # $ % & ' ( ) * + - . = @ \ ^ _ |)
password.min.symbol=0
# This specifies whether the user ID can be used for the password
# (true = cannot use the user ID, false = can use the user ID)
password.check.userID=false
# This is the minimum number of login failures before an account is locked
# (minimum: 0-10 times)
account.lock.num=0
| Key name | Setting | Settable values | Default value |
|---|---|---|---|
| password.min.length | Specifies the minimum number of characters in a password. | 1 - 256 | 4 |
| password.min.uppercase | Specifies the minimum number of uppercase letters that must be included in the password. If 0 is specified, there are no constraints on the number of uppercase letters. | 0 - 256 | 0 |
| password.min.lowercase | Specifies the minimum number of lowercase letters that must be included in the password. If 0 is specified, there are no constraints on the number of lowercase letters. | 0 - 256 | 0 |
| password.min.numeric | Specifies the minimum number of numeric characters that must be included in the password. If 0 is specified, there are no constraints on the number of numeric characters. | 0 - 256 | 0 |
| password.min.symbol | Specifies the minimum number of symbols that must be included in the password. If 0 is specified, there are no constraints on the number of symbols. | 0 - 256 | 0 |
| password.check.userID | Specifies whether to prevent the password from being the same as the user ID. |
|
false |
| account.lock.num | Specifies the number of consecutive failed logons before the account is automatically locked. If 0 is specified, the account is not automatically locked after failed logon tries. | 0 - 10 | 0 |