MySQLへのログイン
ターミナルソフトでサーバにログイン後、mysql
コマンドでMySQLに接続する。
1 |
mysql -u ユーザ名 -h サーバ名 -p |
-u
でユーザ名を指定し、-h
でホスト名(サーバ名)を指定する。-p
オプションだけつけると、パスワードの入力を求められる。さくらサーバでMySQLをインストール済みの場合は以下の通り。
1 |
mysql -u ユーザ名 -h mysql???.db.sakura.ne.jp -p |
パスワード入力に成功すると、mysql>
プロンプトが表示される。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
% mysql -u [ユーザ名] -h mysql???.db.sakura.ne.jp -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 593501130 Server version: 5.5.38-log Source distribution Copyright (c) 2000, 2013, 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からのログアウト
mysql>
プロンプトに対してquit
またはexit
で終了。
1 2 3 |
mysql> quit Bye % |
1 2 3 |
mysql> exit Bye % |
quit
の代わりに\q
でも終了できる。