Rechercher dans le manuel MySQL
5.1.12.3 Connecting Using the IPv6 Local Host Address
The following procedure shows how to configure MySQL to permit
IPv6 connections by clients that connect to the local server
using the ::1
local host address. The
instructions given here assume that your system supports IPv6.
Start the MySQL server with an appropriate
bind_address
setting to permit it to accept IPv6 connections. For example, put the following lines in the server option file and restart the server:[mysqld] bind_address = *
Specifying * (or
::
) as the value forbind_address
permits both IPv4 and IPv6 connections on all server host IPv4 and IPv6 interfaces. If you want to bind the server to a specific list of addresses, you can do this as of MySQL 8.0.13 by specifying a comma-separated list of values forbind_address
. This example specifies the local host addresses for both IPv4 and IPv6:[mysqld] bind_address = 127.0.0.1,::1
For more information, see the
bind_address
description in Section 5.1.8, “Server System Variables”.As an administrator, connect to the server and create an account for a local user who will connect from the
::1
local IPv6 host address:For the permitted syntax of IPv6 addresses in account names, see Section 6.2.4, “Specifying Account Names”. In addition to the
CREATE USER
statement, you can issueGRANT
statements that give specific privileges to the account, although that is not necessary for the remaining steps in this procedure.Invoke the mysql client to connect to the server using the new account:
shell> mysql -h ::1 -u ipv6user -pipv6pass
Try some simple statements that show connection information:
- mysql> STATUS
- ...
- ...
- +----------------+----------------+
- +----------------+----------------+
- | ipv6user@::1 | :: |
- +----------------+----------------+
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-ipv6-local-connections.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.