PR

MySQL ユーザー作成方法

スポンサーリンク
MySQL

MySQL上にユーザを作成する方法と、作成したユーザを確認する方法を紹介します。

MySQL rootユーザーで接続する

まずはMySQLのrootユーザーで接続します。

[root@cent77 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.29 MySQL Community Server (GPL)

Copyright (c) 2000, 2020, 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>

MySQL上にユーザーを作成する

rootユーザでMySQL上のユーザーを作成するには、以下のSQLを実行します。

CREATE USER ‘<ユーザー名>’@'<接続元ホスト>’ IDENTIFIED BY ‘<パスワード>’;

今回は以下のユーザー・パスワードで作成します。

  • ユーザー名: dekiruengineer
  • パスワード: dekien12#$
mysql> CREATE USER 'dekiruengineer'@'localhost' IDENTIFIED BY 'dekien12#$';
Query OK, 0 rows affected (0.01 sec)

<接続元ホスト>を今回localhostとしましたが、ネットワーク越しで接続する場合は接続元となるクライアントのIPを設定してください。

※ユーザー作成前に作成するデータベース作成方法については、以下の記事を参照してください。

※ユーザー作成後に行う権限付与については以下の記事を参照してください。

ユーザー一覧の確認

作成したユーザーを一覧で表示するには以下のSQLを実行します。

select user,host from mysql.user;

mysql> select user,host from mysql.user;
+----------------+-----------+
| user           | host      |
+----------------+-----------+
| dekiruengineer | localhost |
| mysql.session  | localhost |
| mysql.sys      | localhost |
| root           | localhost |
+----------------+-----------+
4 rows in set (0.00 sec)

localhostから接続できるユーザーが作成されたことが確認できます。