Rechercher dans le manuel MySQL
ndb_perror shows information about an NDB
error, given its error code. This includes the error message,
the type of error, and whether the error is permanent or
temporary. Added to the MySQL NDB Cluster distribution in NDB
7.6.4, it is intended as a drop-in replacement for
perror --ndb
.
Usage
ndb_perror [options] error_code
ndb_perror does not need to access a running NDB Cluster, or any nodes (including SQL nodes). To view information about a given NDB error, invoke the program, using the error code as an argument, like this:
shell> ndb_perror 323
NDB error code 323: Invalid nodegroup id, nodegroup already existing: Permanent error: Application error
To display only the error message, invoke
ndb_perror with the
--silent
option (short form
-s
), as shown here:
shell> ndb_perror -s 323
Invalid nodegroup id, nodegroup already existing: Permanent error: Application error
Like perror, ndb_perror accepts multiple error codes:
shell> ndb_perror 321 1001
NDB error code 321: Invalid nodegroup id: Permanent error: Application error
NDB error code 1001: Illegal connect string
Additional program options for ndb_perror are described later in this section.
ndb_perror replaces perror
--ndb
, which is deprecated as of NDB 7.6.4 and
subject to removal in a future release of MySQL NDB Cluster. To
make substitution easier in scripts and other applications that
might depend on perror for obtaining NDB
error information, ndb_perror supports its
own “dummy”
--ndb
option, which does
nothing.
The following table includes all options that are specific to the NDB Cluster program ndb_perror. Additional descriptions follow the table.
Table 22.335 Command-line options for the ndb_perror program
Format | Description | Added, Deprecated, or Removed |
---|---|---|
Display help text | All NDB 8.0 releases |
|
For compatibility with applications depending on old versions of perror; does nothing | All NDB 8.0 releases |
|
Show error message only | All NDB 8.0 releases |
|
Print program version information and exit | All NDB 8.0 releases |
|
Verbose output; disable with --silent | All NDB 8.0 releases |
Additional Options
-
Property Value Command-Line Format --help
Type Boolean Default Value TRUE
Display program help text and exit.
-
Property Value Command-Line Format --ndb
Type Boolean Default Value TRUE
For compatibility with applications depending on old versions of perror that use that program's
--ndb
option. The option when used with ndb_perror does nothing, and is ignored by it. -
Property Value Command-Line Format --silent
Type Boolean Default Value TRUE
Show error message only.
-
Property Value Command-Line Format --version
Type Boolean Default Value TRUE
Print program version information and exit.
-
Property Value Command-Line Format --verbose
Type Boolean Default Value TRUE
Verbose output; disable with
--silent
.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-mysql-cluster-programs-ndb-perror.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.