OsTicket: Reset User Password via SQL: Difference between revisions
From wiki.jacobjohns.com
jwiki>jjohns No edit summary |
m 5 revisions imported |
||
(No difference)
| |||
Latest revision as of 16:06, 27 July 2024

- Connect to the osTicket database on the osTicket host.
sudo mysql
- Show databases.
SHOW databases;
- Use the osTicket database.
USE osticket_database;
- Show tables and look for _staff.
SHOW tables;
- Change the password for the desired user.
update _staff set passwd=MD5('NEW_PASSWORD') Where username='USERNAME';
- Test the logon at the user interface.
