Hortonworks Ranger Accounts

I installed the HDP msi installer on a two-node Windows server . After installation, I did not contact the Ranger Portal with or without valid credentials. How can I change my Ranger credentials in HDP 2.0?

+5
source share
3 answers

According to the Ranger credentials, if you mean the Ranger Admin login, you can change it to:

  • Logging into Ranger Admin on localhost: 6080 with administrator credentials
  • Click "Admin" → Profile in the upper right corner
  • Go to the "Change Password" tab and change the password

Let me know if you encounter any problems or if you had other credentials in mind.

+1
source

Default credentials:

  • username: admin
  • password: admin

If you've never configured anything, chances are they still work.

+1
source

I hope you already find your answer, but there is a way to set user credentials for the Ranger admin user interface without using the web interface.

In the install.properties file in the ranger-admin directory, add the following property

rangerAdmin_password=<your_custom_password> 

Now run ./setup.sh in your ranger-admin directory. Then you can log in to Ranger Admin (i.e. http: // localhost: 6080 ) using

Username: admin

Password: your_user password

0
source

Source: https://habr.com/ru/post/1213603/


All Articles