View previous topic :: View next topic |
Author |
Message |
W3BMAST3R101 Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
Joined: 19 Jun 2004 Posts: 197
|
Posted: Mon Jul 04, 2005 4:52 pm Post subject: Access denied for 'mythtv@localhost'(Using password: YES) |
|
|
I think i almost have mythtv setup but i'm having problems with MYSQL I setup the password properly but i keep getting this error could any one tell me where to go from here?
Access denied for 'mythtv@localhost'(Using password: YES)
thnx, in advance |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
s3ntinel n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 04 Apr 2005 Posts: 64
|
Posted: Mon Jul 04, 2005 7:47 pm Post subject: |
|
|
the permission in the mysql.user table is missing.
Try (as mysql root user - or user with grant privileges=y in user table)
Code: | grant select,insert,update,delete on database_name.* to 'mythtv'@'localhost' identified by 'my_password';
flush privileges; |
or replace * with the table name if only one table required. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|