I made a local user in Gerrit with ssh (gerrit create-user). I would like to change the proper name of the user, but I can’t find any way to do it.
Can I change user data or at least can I delete the user?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Changing Full Name info
If you can login with that user
Modifying the user in the database
ssh -p 29418 review.example.com gerrit gsqlselect * from accounts ;update accounts set full_name = 'Any User Name' where account_id = <X>Deleting the user
At present there is no easy way to delete an account. You need to remove the references in the proper tables (there are not so many).