Mysql help

Status
Not open for further replies.

Xman

Active Member
504
2009
0
0
MySQL said:
#1 - Can't create/write to file '/tmp/#sql_1fda_0.MYI' (Errcode: 13)

i have no clue what is up my site went wacko

now the index page doesnt work but other pages do
 
5 comments
hello scotty the reason why it is like this is because /tmp is stating there is no read write access to it or someone deleted tmp :)

what you need to do is find out the chmod permissions on tmp and tell me what they are and ill tell you what to do next
 
/tmp is probably mounted as read-only OR your disk is at 99% capacity (although in that case, lots more would stop working too).

In ssh check the mount list:
Code:
# mount
/dev/sda3 on /tmp type ext3 (ro,usrquota,grpquota)
# mount -o remount,rw /tmp
# mount
/dev/sda3 on /tmp type ext3 (rw,usrquota,grpquota)

Somethin along those lines anyway.
 
Status
Not open for further replies.
Back
Top