<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
David Watkins wrote:
<blockquote
 cite="mid:44829edd0812171510k593ade2cn10f634cf5af39ea4@mail.gmail.com"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">The database directory is mentioned in the doc. In partidcular there's
a mysql file to initialize the database.  Mythtv's "first time" appears
to be failing on the database.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Well that I have seen before!

But [for me] the failure is normally an access permissions one.

You need to grant access permission on the mythconverg database to the
localhost and(if you have remote frontends) the network.

What does your backend log say?
_______________________________________________
mythtv-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a>
<a class="moz-txt-link-freetext" href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a>
  </pre>
</blockquote>
If your playing about with the database anyway, think about converting
it to innodb rather than myisam.<br>
I've had many issues with myth and myisam, If its recording or some
such when there's a power failure it will often corrupt the
recordedseek table.<br>
innodb is ACID compliant and seems to tolerate that kind of abuse
better. I have done this on all the systems I "look after" and haven't
had a problem with it. (and no more recordedseek table crashes either.)<br>
<br>
The symptom (if google is watching) is when playing a video you cant
jump forward or back within the show.<br>
<br>
To fix it you repair the table then rebuild the seektable.<br>
I used this<br>
find /var/lib/ -iname "*.mpg" -mtime +50 -print0 | xargs -0 -n1
mythtranscode --mpeg2 --buildindex --allkeys --showprogress --infiles
-0 -n1 mythtranscode --mpeg2 --buildindex --allkeys --showprogress
--infile<br>
<br>
<br>
to find all old shows then run mythtranscode over them, mythcommflag
would say it ran but the problem persisted.<br>
Theres probably no harm in running that command without the -mtime +50
argument to just do all videos. I use that find command to cover all my
storage groups.<br>
</body>
</html>