MySQL 8.4 Release Notes
6.8.1 perror — 显示 MySQL 错误信息
perror 显示 MySQL 或操作系统错误代码的错误信息。调用perror如下:
perror [options] errorcode ...
perror 尝试理解其参数。例如,对于ER_WRONG_VALUE_FOR_VAR
错误,perror理解以下参数:1231
,001231
,MY-1231
,或 MY-001231
,或ER_WRONG_VALUE_FOR_VAR
。
$> perror 1231
MySQL error code MY-001231 (ER_WRONG_VALUE_FOR_VAR): Variable '%-.64s'
can't be set to the value of '%-.200s'
如果错误号在 MySQL 和操作系统错误重叠的范围内,perror 显示两个错误信息:
$> perror 1 13
OS error code 1: Operation not permitted
MySQL error code MY-000001: Can't create/write to file '%s' (OS errno %d - %s)
OS error code 13: Permission denied
MySQL error code MY-000013: Can't get stat of '%s' (OS errno %d - %s)
要获取 MySQL 集群错误代码的错误信息,请使用ndb_perror实用工具。
系统错误信息的含义可能取决于您的操作系统。同一个错误代码在不同的操作系统上可能有不同的含义。
perror 支持以下选项。