This section focuses on MySQL 8 server errors. The section describes the errors related to MySQL server administration, table definitions, and known issues in the MySQL 8 server.
MySQL 8 server errors
Issues with file permissions
If the UMASK or UMASK_DIR environment variables are set incorrectly upon server startup, we may have problems with file permissions. The MySQL server may issue following error message upon table creation:
ERROR: Can't find file: 'path/with/file_name' (Errcode: 13)
The default values for UMASK and UMASK_DIR system variables are 0640 and 0750, respectively. If the value of these environment variables starts with zero, it indicates to the MySQL server that the values are in octal. For...