1PERROR(1) MariaDB Database System PERROR(1)
2
3
4
6 perror - explain error codes
7
9 perror [options] errorcode ...
10
12 For most system errors, MariaDB displays, in addition to an internal
13 text 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 Note that the meaning of system error messages may be dependent on your
35 operating system. A given error code may mean different things on
36 different operating systems.
37
38 perror supports the following options.
39
40 · --help, --info, -I, -?
41
42 Display a help message and exit.
43
44 · --silent, -s
45
46 Silent mode. Print only the error message.
47
48 · --verbose, -v
49
50 Verbose mode. Print error code and message. This is the default
51 behavior.
52
53 · --version, -V
54
55 Display version information and exit.
56
58 Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc.,
59 2010-2015 MariaDB Foundation
60
61 This documentation is free software; you can redistribute it and/or
62 modify it only under the terms of the GNU General Public License as
63 published by the Free Software Foundation; version 2 of the License.
64
65 This documentation is distributed in the hope that it will be useful,
66 but WITHOUT ANY WARRANTY; without even the implied warranty of
67 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
68 General Public License for more details.
69
70 You should have received a copy of the GNU General Public License along
71 with the program; if not, write to the Free Software Foundation, Inc.,
72 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA or see
73 http://www.gnu.org/licenses/.
74
75
77 For more information, please refer to the MariaDB Knowledge Base,
78 available online at https://mariadb.com/kb/
79
81 MariaDB Foundation (http://www.mariadb.org/).
82
83
84
85MariaDB 10.4 28 March 2019 PERROR(1)