1PERROR(1) MySQL Database System PERROR(1)
2
3
4
6 perror - explain error codes
7
9 perror [options] errorcode ...
10
12 For most system errors, MySQL displays, in addition to an internal text
13 message, the system error code in one of the following styles:
14
15 message ... (errno: #)
16 message ... (Errcode: #)
17
18 You can find out what the error code means by examining the
19 documentation for your system or by using the perror utility.
20
21 perror prints a description for a system error code or for a storage
22 engine (table handler) error code.
23
24 Invoke perror like this:
25
26 shell> perror [options] errorcode ...
27
28 Example:
29
30 shell> perror 13 64
31 OS error code 13: Permission denied
32 OS error code 64: Machine is not on the network
33
34 To obtain the error message for a MySQL Cluster error code, invoke
35 perror with the --ndb option:
36
37 shell> perror --ndb errorcode
38
39 Note that the meaning of system error messages may be dependent on your
40 operating system. A given error code may mean different things on
41 different operating systems.
42
43 perror supports the following options.
44
45 · --help, --info, -I, -?
46
47 Display a help message and exit.
48
49 · --ndb
50
51 Print the error message for a MySQL Cluster error code.
52
53 · --silent, -s
54
55 Silent mode. Print only the error message.
56
57 · --verbose, -v
58
59 Verbose mode. Print error code and message. This is the default
60 behavior.
61
62 · --version, -V
63
64 Display version information and exit.
65
67 Copyright © 1997, 2013, Oracle and/or its affiliates. All rights
68 reserved.
69
70 This documentation is free software; you can redistribute it and/or
71 modify it only under the terms of the GNU General Public License as
72 published by the Free Software Foundation; version 2 of the License.
73
74 This documentation is distributed in the hope that it will be useful,
75 but WITHOUT ANY WARRANTY; without even the implied warranty of
76 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
77 General Public License for more details.
78
79 You should have received a copy of the GNU General Public License along
80 with the program; if not, write to the Free Software Foundation, Inc.,
81 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
82 http://www.gnu.org/licenses/.
83
84
86 For more information, please refer to the MySQL Reference Manual, which
87 may already be installed locally and which is also available online at
88 http://dev.mysql.com/doc/.
89
91 Oracle Corporation (http://dev.mysql.com/).
92
93
94
95MySQL 5.1 11/04/2013 PERROR(1)