ERROR 3 (HY000) at line 1: Error writing file '/tmp/myfile.txt' (Errcode: 28 - No space left on device)
See OS Error Code 28
This error will be raised when you attempt to SELECT ... INTO OUTFILE where the target file already exists.
Database to Text
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
This error will be raised when you attempt to SELECT ... INTO OUTFILE where the target file is outside the location specified by the secure_file_priv parameter.
Check the correct location with...
SELECT @@secure_file_priv;
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
The real fix here is to make sure your function explicitly specifies that it is DETERMINISTIC, NO SQL or READS SQL DATA.
log_bin_trust_function_creators has been deprecated in MySQL 8.0 as it is exclusively used for statement-based binary logging which is also deprecated. In future, row-based binary logging will be the only binary logging format used or supported.
ERROR 1524 (HY000): Plugin ‘mysql_native_password’ is not loaded
The mysql_native_password authentication plugin is deprecated and subject to removal in a future version of MySQL.
Possible workarounds...
Start MySQL with --mysql-native-password=ON
[ERROR] Slave I/O for channel '': error connecting to master '...' - retry-time: 60 retries 88888, Error_code: 2003
See Client Error Code 2003
[ERROR] [MY-000035] [Server] Disk is full writing './binlog.000023' (OS errno 28 - No space left on device). Waiting for someone to free space... Retry in 60 secs. Message reprinted in 600 secs.
[ERROR] [MY-000035] [Server] Disk is full writing './relay-bin.000005' (OS errno 28 - No space left on device). Waiting for someone to free space... Retry in 60 secs. Message reprinted in 600 secs.
See OS Error Code 28
[ERROR] [MY-000067] [Server] unknown variable 'symbolic-link=0'.
Caused by a typo. In this case, the real variable is called symbolic-links (which is deprecated so, ideally, don't set it anyway).
[ERROR] [MY-010020] [Server] Data Dictionary initialization failed.
See accompanying error messages.