Jumat, 30 Agustus 2019

How to create new mysql user on Percona MySql 8 server command

  Tidak ada komentar
How to create new mysql user on Percona MySql 8 server
[root@localhost ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 8.0.16-7

Copyright (c) 2009-2019 Percona LLC and/or its affiliates
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> CREATE USER 'myuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'P@55w0rd';
Query OK, 0 rows affected (0.00 sec)

mysql> GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'localhost' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)

Tidak ada komentar :

Posting Komentar