Trying to get mythtv working in Gutsy beta. I can't get 'mythtv-setup' to run because 'Access denied for user: 'mythtv@localhost'. Here's some info:
and then rebooted and tried again, no luck. I found this link:
https://help.ubuntu.com/community/My...roubleshooting
What are they telling me here:
If you still can't connect, you can change the password. See instructions below with the small change of the instruction. Instead of
you can set mythtv password to the default (mythtv):
Looks like they're talking about mysql so if I try to reset pw in mysql:
Code:
$ grep mythtv: /etc/group mythtv:x:120:red $ rm ~/.mythtv -rf
https://help.ubuntu.com/community/My...roubleshooting
What are they telling me here:
If you still can't connect, you can change the password. See instructions below with the small change of the instruction. Instead of
Code:
UPDATE user SET Password=PASSWORD('<password>') WHERE user='root'; FLUSH PRIVILEGES;
Code:
UPDATE user SET Password=PASSWORD('mythtv') WHERE user='mythtv'; FLUSH PRIVILEGES;
Code:
[$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1151 Server version: 5.0.45-Debian_1ubuntu2-log Debian etch distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> UPDATE user SET Password=PASSWORD('mythtv') WHERE user='mythtv'; ERROR 1046 (3D000): No database selected/code] How can I fix this so I can run 'mythtv-setup'??? ??? ??? ???
Comment