2019年9月15日日曜日

MySQLコマンドラインツール

MySQLのコマンドラインツールの起動方法
以下の通りにすれば、パスワード入力がらくになります。
バッチやシェルにしておけばすぐに起動が可能です!
mysql -uroot -pパスワード


次にバージョンの確認方法です
mysql --version



>>最初にバージョン確認

koba@koba-desktop:~$ mysql --version
mysql  Ver 14.14 Distrib 5.7.18, for Linux (i686) using  EditLine wrapper
koba@koba-desktop:~$




>>これは、パスワードの入力が発生するので
>>mysql -uroot -pパスワードとする



koba@koba-desktop:~$ mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 27
Server version: 5.7.18-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2017, 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コマンドのプロンプトが出てきました!