- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
What are the allowed characters for a password of Atlas?
- Labels:
-
Apache Atlas
Created ‎08-23-2018 05:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Created ‎08-23-2018 05:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Created ‎08-23-2018 05:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Created ‎08-23-2018 06:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8 characters with at least one alphabet and one numeric
Note: Please upvote or accept the answer if you found this useful
Created ‎08-23-2018 06:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much, @Aditya Sirna and @Pankaj Kadam!
