Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

What are the allowed characters for a password of Atlas?

avatar
Contributor

I set up Atlas with AD authentication. And I heard that some users failed to log in and the others succeeded.

The users said that the users who failed to log in are using "@" in their password.

I know I should confirm by my eyes, but before to do that, I want to know what characters are allowed to use for a password of Atlas.

Could anyone please answer my question?

1 ACCEPTED SOLUTION

avatar
Super Guru

@Takefumi Oide,

Password should be minimum 8 characters with minimum one alphabet and one numeric. Unsupported special characters are " ' \ `

Below is the regex check for password in HDP 3.0

if not bool(re.search(r'^(?=.*[0-9])(?=.*[a-zA-Z]).{8,}$', atlas_admin_password)) or bool(re.search('[\\\`"\']', atlas_admin_password))

.

-Aditya

View solution in original post

3 REPLIES 3

avatar
Super Guru

@Takefumi Oide,

Password should be minimum 8 characters with minimum one alphabet and one numeric. Unsupported special characters are " ' \ `

Below is the regex check for password in HDP 3.0

if not bool(re.search(r'^(?=.*[0-9])(?=.*[a-zA-Z]).{8,}$', atlas_admin_password)) or bool(re.search('[\\\`"\']', atlas_admin_password))

.

-Aditya

avatar
Expert Contributor

8 characters with at least one alphabet and one numeric

Note: Please upvote or accept the answer if you found this useful

avatar
Contributor

Thank you very much, @Aditya Sirna and @Pankaj Kadam!