lgb861213 commented on issue #16391: URL: https://github.com/apache/dolphinscheduler/issues/16391#issuecomment-2257279826
#login the postgresql sql container docker exec -it docker-dolphinscheduler-postgresql-1 /bin/bash psql -Uroot -d dolphinscheduler 【login the pq database】 #Generate an encrypted string of new password using md5 echo -n "Aa123456#" | md5 #update the new password update t_ds_user set user_password='c96da3623f1434248c7ee7f0be47a51d' where user_name='admin'; #and then it can success login -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
