23 lines
511 B
Plaintext
23 lines
511 B
Plaintext
|
====== Créer un administrateur ======
|
||
|
{{ :informatique:langage:php:pasted:20220105-211558.png?75x75|Créer un utilisateur et sa base donnes}}
|
||
|
Instructions à suivre pour créer un administrateur en requête SQL.
|
||
|
|
||
|
|
||
|
===== MySQL et MariaDB =====
|
||
|
|
||
|
Les instructions sont testées sous
|
||
|
* MariadDB 10.1
|
||
|
* MariadDB 10.3
|
||
|
|
||
|
Les noms à adapter sont :
|
||
|
* mon_user
|
||
|
* mon_mdp
|
||
|
|
||
|
|
||
|
<code SQL>
|
||
|
|
||
|
CREATE USER 'mon_user'@'localhost' IDENTIFIED BY 'mon_mdp';
|
||
|
GRANT ALL ON *.* TO mon_user@localhost;
|
||
|
FLUSH PRIVILEGES;
|
||
|
|
||
|
</code>
|