Well, this should tell you the existing password:
Code: Select all
# cat /etc/squeezecenter/debian-db.pm
Look for $dbpass, then use that in the uninstall process when you are prompted.
Or if you want to start from scratch and get rid of it (WARNING! This will get rid of all your indexed files, settings etc):
Code: Select all
root@b3:/etc/squeezecenter# mysql
...
mysql> drop database squeezecenter;
Query OK, 16 rows affected (0.96 sec)
mysql> drop user 'squeezecenter'@'localhost';
Query OK, 0 rows affected (0.04 sec)
mysql> exit
Bye
Then when you do:
Answer No to "Deconfigure database for squeezecenter with dbconfig-common?"
Then when you do:
You will get a similar prompt:
"Configure database for squeezecenter with dbconfig-common?"
Answer Yes.
Leave a blank password on the next two prompts (press TAB to get out of the password field and SPACE to press OK)
Hopefully no errors, start it:
Check for errors:
Code: Select all
# tail -f /var/log/squeezecenter/server.log
It will now have to rescan all your stuff, and it might take a while, but the web access should be fine (albeit slow at first).