Mysql error

S2S-Robert

Verified User
Joined
Jun 24, 2003
Messages
415
Location
The Netherlands
Code:
Can't open file: 'members.MYI'. (errno: 145)
Any clues on this one? What might have caused it (perhaps an invalid mysql command?) but more important how do I fix it! :D
 
where are you recieveing that error? also, check that members.MYI exists in /var/lib/mysql
 
Last edited:
Hello,

I think I've seen this error before, and in that case, it was a permission error.
Code:
cd /var/lib/mysql
chown -R mysql:mysql username_databasename
chmod 700 username_databasename
chmod 660 username_databasename/*

Hope this helps.

John
 
Back
Top