Rechercher dans le manuel MySQL
5.1.9.1 System Variable Privileges
A system variable can have a global value that affects server operation as a whole, a session value that affects only the current session, or both:
For dynamic system variables, the
SET
statement can be used to change their global or session runtime value (or both), to affect operation of the current server instance. (For information about dynamic variables, see Section 5.1.9.2, “Dynamic System Variables”.)For certain global system variables,
SET
can be used to persist their value to themysqld-auto.cnf
file in the data directory, to affect server operation for subsequent startups. (For information about persisting system variables and themysqld-auto.cnf
file, see Section 5.1.9.3, “Persisted System Variables”.)For persisted global system variables,
RESET PERSIST
can be used to remove their value frommysqld-auto.cnf
, to affect server operation for subsequent startups.
This section describes the privileges required for operations that assign values to system variables at runtime. This includes operations that affect runtime values, and operations that persist values.
To set a global system variable, use a
SET
statement with the appropriate keyword. These privileges apply:
To set a global system variable runtime value, use the
SET GLOBAL
statement, which requires theSYSTEM_VARIABLES_ADMIN
orSUPER
privilege.To persist a global system variable to the
mysqld-auto.cnf
file (and set the runtime value), use theSET PERSIST
statement, which requires theSYSTEM_VARIABLES_ADMIN
orSUPER
privilege.To persist a global system variable to the
mysqld-auto.cnf
file (without setting the runtime value), use theSET PERSIST_ONLY
statement, which requires theSYSTEM_VARIABLES_ADMIN
andPERSIST_RO_VARIABLES_ADMIN
privileges.SET PERSIST_ONLY
can be used for both dynamic and read-only system variables, but is particularly useful for persisting read-only variables, for whichSET PERSIST
cannot be used.Some global system variables are persist-restricted (see Section 5.1.9.4, “Nonpersistible and Persist-Restricted System Variables”). To persist these variables, use the
SET PERSIST_ONLY
statement, which requires the privileges described previously. In addition, you must connect to the server using an encrypted connection and supply an SSL certificate with the Subject value specified by thepersist_only_admin_x509_subject
system variable.
To remove a persisted global system variable from the
mysqld-auto.cnf
file, use the
RESET PERSIST
statement. These
privileges apply:
For dynamic system variables,
RESET PERSIST
requires theSYSTEM_VARIABLES_ADMIN
orSUPER
privilege.For read-only system variables,
RESET PERSIST
requires theSYSTEM_VARIABLES_ADMIN
andPERSIST_RO_VARIABLES_ADMIN
privileges.For persist-restricted variables,
RESET PERSIST
does not require an encrypted connection to the server made using a particular SSL certificate.
If a global system variable has any exceptions to the preceding
privilege requirements, the variable description indicates those
exceptions. Examples include
default_table_encryption
and
mandatory_roles
, which require
additional privileges. These additional privileges apply to
operations that set the global runtime value, but not operations
that persist the value.
To set a session system variable runtime value, use the
SET
SESSION
statement. In contrast to setting global
runtime values, setting session runtime values normally requires
no special privileges and can be done by any user to affect the
current session. For some system variables, setting the session
value may have effects outside the current session and thus is a
restricted operation that can be done only by users who have a
special privilege:
As of MySQL 8.0.14, the privilege required is
SESSION_VARIABLES_ADMIN
.NoteAny user who has
SYSTEM_VARIABLES_ADMIN
orSUPER
effectively hasSESSION_VARIABLES_ADMIN
by implication and need not be grantedSESSION_VARIABLES_ADMIN
explicitly.Prior to MySQL 8.0.14, the privilege required is
SYSTEM_VARIABLES_ADMIN
orSUPER
.
If a session system variable is restricted, the variable
description indicates that restriction. Examples include
binlog_format
and
sql_log_bin
. Setting the
session value of these variables affects binary logging for the
current session, but may also have wider implications for the
integrity of server replication and backups.
SESSION_VARIABLES_ADMIN
enables
administrators to minimize the privilege footprint of users who
may previously have been granted
SYSTEM_VARIABLES_ADMIN
or
SUPER
for the purpose of enabling
them to modify restricted session system variables. Suppose that
an administrator has created the following role to confer the
ability to set restricted session system variables:
Any user granted the set_session_sysvars
role
(and who has that role active) is able to set restricted session
system variables. However, that user is also able to set global
system variables, which may be undesirable.
By modifying the role to have
SESSION_VARIABLES_ADMIN
instead
of SYSTEM_VARIABLES_ADMIN
, the
role privileges can be reduced to the ability to set restricted
session system variables and nothing else. To modify the role,
use these statements:
Modifying the role has an immediate effect: Any account granted
the set_session_sysvars
role no longer has
SYSTEM_VARIABLES_ADMIN
and is not
able to set global system variables without being granted that
ability explicitly. A similar
GRANT
/REVOKE
sequence can be applied to any account that was granted
SYSTEM_VARIABLES_ADMIN
directly
rather than by means of a role.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-system-variable-privileges.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.