1

MySQL コマンドラインから phpMyAdmin にあるデータベースにアクセスして管理する方法はありますか?

4

1 に答える 1

2

*nix ステーションで BASH のようなシェルを想定:

mysql -h<hostname> -u<username> -p<password>

-h は、localhost ではスキップできます。リモート ホストを扱う場合は、外部インターフェイスでリッスンするように構成する必要があり、リモート ホストのそのインターフェイスでポート 3306 にアクセスできる必要があります。ユーザー名は、ルートまたはパスワードと同様にデータベース/スキーマ固有のものです。

12:02:26 justin@justin-4320s:~
$ mysql -htiny -uroot -p################
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2710
Server version: 5.5.28-0ubuntu0.12.10.1-log (Ubuntu)

Copyright (c) 2000, 2012, 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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| Assessor           |
| mysql              |
| performance_schema |
| test               |
| ... contd.         |
+--------------------+
12 rows in set (0.10 sec)

mysql>
于 2012-11-17T20:31:12.810 に答える