Go to the first, previous, next, last section, table of contents.


Problems with file permissions

If you have problems with file permissions, for example when creating a table mysql gives: "ERROR: Can't find file: 'path/with/filename.frm' (Errcode: 13)", then you might have the wrong value for environment variable UMASK. Default umask is 0664. Fix:

UMASK=432
export UMASK
./bin/safe_mysqld


Go to the first, previous, next, last section, table of contents.