init: données initiales abonnel.fr

This commit is contained in:
Folio
2026-05-15 09:29:56 +02:00
commit 69abe1fc67
3518 changed files with 104609 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

@@ -0,0 +1,25 @@
# Créer un utilisateur et sa base de données
![Créer un utilisateur et sa base donnes](20220105-211558.png)
Instructions à suivre pour créer un utilisateur et sa base de données en requête SQL.
## MySQL et MariaDB
Les instructions sont testées sous
- MariadDB 10.1
- MariadDB 10.3
Les noms à adapter sont :
- ma_bdd
- mon_user
- mon_mdp
```SQL
CREATE DATABASE ma_bdd;
DROP USER IF EXISTS mon_user;
CREATE USER 'mon_user'@'localhost' IDENTIFIED BY 'mon_mdp';
GRANT ALL ON ma_bdd.* TO mon_user@localhost;
FLUSH PRIVILEGES;
```
@@ -0,0 +1,18 @@
{
"uuid": "52db61e4-de62-4240-88d3-27f921e54389",
"slug": "creer-un-utilisateur-et-sa-base-de-donnees",
"title": "Créer un utilisateur et sa base de données",
"author": "cedric@abonnel.fr",
"published": true,
"published_at": "2023-02-10 22:48:29",
"created_at": "2023-02-10 22:48:29",
"updated_at": "2023-02-10 22:48:29",
"revisions": [],
"cover": "",
"files_meta": [],
"external_links": [],
"seo_title": "",
"seo_description": "",
"og_image": "",
"category": "Informatique"
}