Created on 03-25-2017 08:17 PM - edited 09-16-2022 04:20 AM
Hi, I'm new hortonworks hdp user, so i downloaded virtualbox machine and tried to access via my browser but it asked me my username and password and I dont know how to get them 😞
Created 03-25-2017 08:26 PM
@Youssef Zifri Can you try admin/admin?
Created 03-25-2017 08:41 PM
Tank u i foud it 🙂
Created 03-25-2017 08:43 PM
No it's :
username/password : raj_ops/raj_ops Or maria_dev/maria_dev
Created 03-26-2017 03:40 AM
Looks like now Password they updating in HDP VM Image, text file you can check in that .
Created 03-26-2017 03:56 AM
VM password change
----------------------------------
If you want to reset the root password of the Sandbox/VM then you can login in it using "single user mode" and then easily reset the password as mentioned in. Check if the "root/hadoop" username/password is working or not.
1. http://linuxpitstop.com/boot-oracle-virtual-machine-into-single-user-mode/
2. https://community.hortonworks.com/questions/42281/how-to-reset-root-password-for-sandbox-hdp-24.html
3. Or use the docker command to reset it:
sudo docker exec -i <container-id-or-name> passwd
Ambari password change
---------------------------------------- If you want to reset ambari password then once you logged in to the VM using ssh and then use the command 'ambari-admin-password-reset ' to reset ambari admin password.
# ssh root@127.0.0.1 -p 2222 # ambari-admin-password-reset
There is another option to change ambari admin password. In which you can login to ambari database (by default it is postgresql) and then run the following SQL query which will reset the ambari 'admin' users password to 'admin'
[root@sandbox tmp]# psql -Uambari ambari Password for user ambari: bigdata ambari=> update ambari.users set user_password='538916f8943ec225d97a9a86a2c6ec0818c1cd400e09e03b660fdaaec4af29ddbb6f2b1033b81b00' where user_name='admin';
Then restart ambari-server so that it can take the changes.
# ambari-server stop # ambari-server start
.