Hi, Community!
This post describes how to reset the password of CSP portal.
Reset CSP Portal Password
The customer forgot the admin password for the CSP portal of CloudIVS3000.
Find the ID of cspgaussdb_docker container by using the command.
docker ps|grep cspgaussdb
Log in to the cspgaussdb_docker container with the root user.
docker exec -u root -ti [cspgaussdb_docker_id] bash
Reset the password of CSP, command.
su - dbuser -c "gsql -d USERDB -U USERDBUSER -p 22080 -W Cspdbg@2017";
UPDATE USERPASSWORD SET PASSWORD='0000000166EF6C8F58782CD6C183185D6C6188CF0C9303DC77E9D8FE6A0A51A77EFA3FD024D54B3E20F55FD12963F857CFC406B9' where USERID=1;
I think this is very useful, hope it can help you!


