Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Cara membuat database MySQL dan mengatur hak istimewa

Jika Anda tidak memiliki antarmuka GUI untuk server database Anda – seperti phpMySQL misalnya – Anda dapat membuat pengguna dan database MySQL/MariaDB dari baris perintah.

1. Otentikasi sebagai pengguna root/admin MySQL

# mysql -u root -p

2. Buat database yang diinginkan

mysql> create database DATABASE_NAME

3. Izinkan akses pengguna ke server MySQL

mysql> grant usage on *.* to USER_NAME@localhost identified by 'USER_PASSWORD';

4. Berikan hak istimewa kepada pengguna

mysql> grant all privileges on DATABASE_NAME.* to USER_NAME@localhost;

Contoh pada server MariaDB pengujian:

[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 ~]#



Artikel terkait:
Lima aplikasi perangkat lunak teratas untuk mengakses server MySQL/MariaDB


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Fungsi MySQL CEILING() – Membulatkan ke Integer Terdekat

  2. MySQL TEXT vs BLOB vs CLOB

  3. Bagaimana cara menyinkronkan database SQLite di ponsel Android dengan database MySQL di server?

  4. Dasar-dasar Tuning MySQL di Dedicated Server

  5. Bagaimana cara menyimpan nilai NULL di bidang datetime di MySQL?