Missing information - corrupt DB?

I’ve been using rt 1.0 successfully for many months, but recently I’ve had
some information go missing.

To give an example, I created a request on 17th Mar with serial number 199.
The web interface shows the request correctly, but with a blank transaction
history. The directory /usr/local/rt/transactions/2000/Mar/17 contains a
file named 199.868 which contains what I would have expected to see, but the
web interface isn’t showing it.

I’m not too familiar with the database structure of RT, but a look at the
transactions table appeared to show some sort of corruption…

mysql> select id, serial_num, actor from transactions where serial_num>190;
| id | serial_num | actor |
| 839 | 191 | paul@elphin.com |
| 840 | 192 | paul@elphin.com |
| 849 | 191 | paul |
| 850 | 192 | paul |
| 1248343907 | 1968398946 | NULL |
| 878930738 | 1664045365 | NULL |
| 172254532 | 1445671501 | NULL |
| 1868644921 | 1399087626 | YBDrK2Vui95aOAOEsHuZvVCdmPSJBXbDX8xTi52q |
| 869 | 200 | gerrit.mesker@achmea.nl |
| 870 | 201 | paul@elphin.com |

That looks pretty nasty to me :wink: Hopefully someone else might be able to
throw some light on it! Can I recover the situation?

Thanks,

paul@elphin.com

Yipe. That’s not good. I’d suggest you “mysqldump rt” and see if you
see the corruption there. What rev of mysql are you running?

jesseOn Tue, Mar 21, 2000 at 04:18:31PM -0000, Paul Dixon wrote:

I’ve been using rt 1.0 successfully for many months, but recently I’ve had
some information go missing.

To give an example, I created a request on 17th Mar with serial number 199.
The web interface shows the request correctly, but with a blank transaction
history. The directory /usr/local/rt/transactions/2000/Mar/17 contains a
file named 199.868 which contains what I would have expected to see, but the
web interface isn’t showing it.

I’m not too familiar with the database structure of RT, but a look at the
transactions table appeared to show some sort of corruption…

mysql> select id, serial_num, actor from transactions where serial_num>190;
±-----------±-----------±-----------------------------------------+
| id | serial_num | actor |
±-----------±-----------±-----------------------------------------+
| 839 | 191 | paul@elphin.com |
| 840 | 192 | paul@elphin.com |
| 849 | 191 | paul |
| 850 | 192 | paul |
| 1248343907 | 1968398946 | NULL |
| 878930738 | 1664045365 | NULL |
| 172254532 | 1445671501 | NULL |
| 1868644921 | 1399087626 | YBDrK2Vui95aOAOEsHuZvVCdmPSJBXbDX8xTi52q |
| 869 | 200 | gerrit.mesker@achmea.nl |
| 870 | 201 | paul@elphin.com |
±-----------±-----------±-----------------------------------------+

That looks pretty nasty to me :wink: Hopefully someone else might be able to
throw some light on it! Can I recover the situation?

Thanks,

paul@elphin.com


rt-users mailing list
rt-users@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users

jesse reed vincent – jrvincent@wesleyan.edu – jesse@fsck.com
pgp keyprint: 50 41 9C 03 D0 BC BC C8 2C B9 77 26 6F E1 EB 91
Linux is like a Vorlon. It is incredibly powerful, gives terse,
cryptic answers and has a lot of things going on in the background.

Since you know the file is there, you might want to check the permissions on the
file. I had this happen ages ago with older versions of RT where the permissions
on the files weren’t being set properly. This is usually due to improper
permissions on the installation binaries.

If it is corrected when you fix the permissions (or if you do a chmod a+r
/usr/local/rt/transactions/2000/Mar/17/199.868), then you might want to go back to
your source tree, and run ‘make fixperms’ (I think that’s the right make option).

-Rich

Jesse wrote:

I’m not too familiar with the database structure of RT, but a look at the
transactions table appeared to show some sort of corruption…

Ouch … what version of mysql are you using? Maybe it’s time to check
out the mysql development. Both me and Jesse (running old versions of
mysql) have had some problems recently with mysql.

I think you should delete those extreme records.

Sometimes requests get “inaccessible” because they are merged.

Tobias Brox (alias TobiX) - +4722925871 - urgent emails to
sms@tobiasb.funcom.com. Check our upcoming MMORPG at
http://www.anarchy-online.com/ (Qt) and play multiplayer Spades,
Backgammon, Poker etc for free at http://www.funcom.com/ (Java)

mysql Ver 9.29 Distrib 3.22.19a, for pc-linux-gnu (i686)

I guess the newest is 3.23.9 or something like that. I guess I could take
a peek at some changelog and/or bug database to see if there is a list of
critical bugs that has been wiped out, and/or if people report bugs from
the more recent versions as well. Anyway, I’m too lazy (ehrm … “busy”
is a better word :slight_smile: for that.

Tobias Brox (alias TobiX) - +4722925871 - urgent emails to
sms@tobiasb.funcom.com. Check our upcoming MMORPG at
http://www.anarchy-online.com/ (Qt) and play multiplayer Spades,
Backgammon, Poker etc for free at http://www.funcom.com/ (Java)

3.22.19a? Yow… 3.22.32 is the latest stable version… the 3.23.x tree is the
development version.

-Rich

Tobias Brox wrote: