How can we disable password expiration for users
Dx NetOps Performance Management any version
[root@PerformanceCenter]# ./SsoConfig
Single Sign-On Configuration Tool
Enter q to quit the program or b to go back to previous menu
SSO Configuration:
1. CA Performance Center
Choose an option > 1
SSO Configuration/CA Performance Center:
1. LDAP Authentication
2. SAML2 Authentication
3. Performance Center
4. Single Sign-On
5. Test LDAP
6. Export SAML2 Service Provider Metadata
7. Enable FIPS
8. Performance Center Local Password Authentication
9. Enable or Disable a user account.
Choose an option > 8
SSO Configuration/CA Performance Center/Performance Center Local Password Authentication:
Enforce password requirements (default: Enabled):
Allow REST to create users with usernames and passwords that match (default: Enabled):
Minimum password length (default: 8):
Password lifespan (default:105 days):
Disable password expiration for a specific user:
Enable password expiration for a specific user:
Expire password for a specific user:
Expire all passwords immediately:
Failed login attempts before blocking (default 6):
Timeframe for failed login attempts (default 3 minutes):
Disable user after failed login attempts (default: Disabled):
Number of minutes to block IP address after failed login attempts (default: 0 minutes (Disabled)):
Next choose option 4 password lifespan
1. Remote Value
2. Local Override
Select 1 Remote Value to modify the setting.
use u for update and set it to 0 to disable the lifespan.
Just for reference:
IF you got the message:
INFO: No sso.properties file found. Using default DB connection configuration.
INFO: No sso.properties file found. Using default DB connection configuration.
This is already fixed on CAPM 3.7.7 or you can manually disabled via mysql using the netqosportal table:
update user_definitions set PasswordExpiration=0 where name='username';
select PasswordExpiration from user_definitions where username = <username>;