Se non disponi di un'interfaccia GUI per il tuo server di database, ad esempio phpMySQL, puoi creare utenti e database MySQL/MariaDB dalla riga di comando.
1. Autenticati come utente root/admin di MySQL
# mysql -u root -p
2. Crea il database desiderato
mysql> create database DATABASE_NAME
3. Consenti agli utenti l'accesso al server MySQL
mysql> grant usage on *.* to USER_NAME@localhost identified by 'USER_PASSWORD';
4. Concedi i privilegi all'utente
mysql> grant all privileges on DATABASE_NAME.* to USER_NAME@localhost;
Esempio su un server MariaDB di prova:
[root@web ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 4180008
Server version: 10.3.28-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database plothost_database1;
Query OK, 1 row affected (0.002 sec)
MariaDB [(none)]> grant usage on *.* to plothost@localhost identified by 'plothostpassword';
Query OK, 0 rows affected (0.002 sec)
MariaDB [(none)]> grant all privileges on plothost_database1.* to plothost@localhost;
Query OK, 0 rows affected (0.003 sec)
MariaDB [(none)]> quit
Bye
[root@web ~]#
Articoli correlati:
Le cinque migliori applicazioni software per accedere ai server MySQL/MariaDB