How to set a longer password lifecycle for the "masteradmin" password?
AXA 17.3.x
DX Platform 20.x, 21.x
By default password expires after 180 days
How to check this value?
If you are using DX Platform 20.x
a) obtain the postgres pod name
kubectl get pods -n<namespace> | grep postgres
b) exec postgres pod
kubectl exec -it <postgres-pod> -n<namespace> bash
1) connect to aoplatform database
psql -U aopuser -d aoplatform
2) Check default validity Period as below
select * from aradminpwdpolicy ;
orgname | minpasswordlength | maxpasswordlength | minnumericchars | minalphachars | minspecialchars | strikecount | allowedsplchars | isglobal | validityperiod |
passwordhistcount | isallowall
------------------------+-------------------+-------------------+-----------------+---------------+-----------------+-------------+-----------------+----------+----------------+
-------------------+------------
--globalorganization-- | 6 | 25 | 1 | 4 | 1 | 5 | [email protected]#$%^&*()_+ | Y | 180 |
3 | N
MASTERADMIN | 6 | 25 | 1 | 4 | 1 | 5 | [email protected]#$%^&*()_+ | N | 0 |
3 | N
DEFAULTORG | 6 | 25 | 1 | 4 | 1 | 5 | [email protected]#$%^&*()_+ | N | 0 |
3 | N