Bonjour, aujourd'hui je vais vous montrer comment créer un serveur MySQL sur votre VPS de n'importe quel offre
Tout d'abord, nous allons vérifier que notre système est à jour:
sudo apt update
ensuite, nous allons installer le packages MySQL:
sudo apt install mysql-server
Une fois que MySQL est installer nous allons faire cette commande pour finaliser l'installation de MySQL:
sudo mysql_secure_installation
sortie:
Securing the MySQL server deployment.
Connecting to MySQL using a blank password.
VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?
Press y|Y for Yes, any other key for No:
Je vous conseil de faire Y donc oui ce sera le mot de passe par défault de MySQL
sortie
Please set the password for root here.
New password:
Re-enter new password:
Après avoir taper votre nouveau mots de passe voici la suite:
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.`
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
- Dropping test database...
Success.
- Removing privileges on test database...
Success.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success
.
All doneAll done
Ensuite nous allons voir comment crée un utilisateur:
tout d'abord: rentrer dans le programme MySQL:
mysql -u root -p
Entrer le mot de passe que vous avez mit avant lors de la configuration.
utiliser MySQL (obligatoire):
USE mysql;
ATTENTION: Ne pas oublier les points-virgules à la fin de chaque commandes
Nous allons maintenant crée un utilisateur:
CREATE USER '<utilisateur>'@'127.0.0.1' IDENTIFIED BY '<mot_de_passe>';
ensuite nous allons créer une base de données:
CREATE DATABASE <nom_de_la_base_de_donnee>;
Ensuite nous allons donner à notre utilisateur la permission d’accéder à la base de données:
GRANT ALL PRIVILEGES ON <base_de_donnees> TO '<utilisateur>'@'127.0.0.1' WITH GRANT OPTION;
puis pour valider:
FLUSH PRIVILEGES;
Et voila vous avez maintenant donc votre serveur SQL.