Difference between revisions of "Troubleshooting:Unable to connect to the master backend server"
From MythTV Official Wiki
(5 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | Q: When trying access the program guide or recordings from the frontend, I am told that the backend is not running (''or some variation'') but I know it is. | + | Q: When trying access the program guide or recordings from the frontend, I am told that the backend is not running (''or some variation'') but I know it is. <br> |
A: There could be a few reasons this occurs. The first is that the IP address in [[mythtv-setup]] isn't correct. | A: There could be a few reasons this occurs. The first is that the IP address in [[mythtv-setup]] isn't correct. | ||
Line 9: | Line 9: | ||
mysql> quit | mysql> quit | ||
</nowiki></pre> | </nowiki></pre> | ||
+ | |||
+ | Also, be sure to check that your firewall has been configured to let MySQL out. | ||
+ | [[Category:Error messages]] | ||
+ | [[Category:MySQL]] |
Latest revision as of 02:48, 24 February 2007
Q: When trying access the program guide or recordings from the frontend, I am told that the backend is not running (or some variation) but I know it is.
A: There could be a few reasons this occurs. The first is that the IP address in mythtv-setup isn't correct.
Another possibility is that you don't have permission to access the MySQL tables using the username and password you entered into mythtv-setup. The following commands will change the mysql password to "mythtv" for user 'mythtv':
# mysql -u root mysql mysql> UPDATE user SET Password=PASSWORD('mythtv') WHERE user='mythtv'; mysql> FLUSH PRIVILEGES; mysql> quit
Also, be sure to check that your firewall has been configured to let MySQL out.