Michael Williams a écrit : > > Okay, this may well be a LINUX issue I am having, so be kind before you > flame. > > When I try to index a large file, it fails with a write error on the /tmp > directory. Now my /tmp directory is on a smaller partition (as sent to me > by dell). Can I configure MySQL to use a different area when creating > indexes? If not, would I have to configure something in the OS to use a > different partition as the temporary storage area. > > --------------------------------------------------------------------- > Before posting, please check: > http://www.mysql.com/manual.php (the manual) > http://lists.mysql.com/ (the list archive) > > To request this thread, e-mail <[EMAIL PROTECTED]> > To unsubscribe, e-mail <[EMAIL PROTECTED]> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php Hi,
You can change mysqld temporary file location with: tmpdir = /path/to/some/directory in /etc/my.cnf configuration file (check MySQL manual for details). Make sure to create this directory and change its owner/permissions so that mysqld can write in it. Hope this helps -- Joseph Bueno NetClub/Trader.com --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php