Reset tt-rss password
I have never used mysql before, so running tt-rss is a learning process for me.
Unfortunately, immediately after installing tt-rss I forgot my password and went searching to see how to reset the admin password. I eventually found LoginNotes157 on the tt-rss wiki but since I haven't used mysql before I didn't know where to paste the SQL line.
Note: See config.php in tt-rss's installation directory for your mysql username/ database name / password/ etc, if you've forgotten those too.
First you have to run mysql client: mysql -u ttrss -p
Now use the ttrss database: mysql> use ttrss
Paste the line from the wiki: (don't forget the semicolon!) mysql> UPDATE ttrss_users SET pwd_hash = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8' WHERE login = 'admin';
If that doesn't work you're probably using a newer version of tt-rss that salts passwords, so you'll have to paste the following: (don't forget the semicolon!) mysql> UPDATE ttrss_users SET pwd_hash = 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', salt= '' WHERE login = 'admin';
Now your admin password should be reset to password. Change it and write it down, you idiot!















