MySQLのバージョンの調べ方
2009/09/06 01:05Update
MySQLのバージョンを知りたい場合の調べ方について。
mysqladmin versionで調べる
パスワードは設定されなかった場合
mysqladmin version
パスワードは設定された場合
mysqladmin version -u root -p
例:
# mysqladmin version -u root -p
Enter password:
mysqladmin Ver x.y Distrib x.y.z, for linux-gnu on x86_64
Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license
Server version 5.x.y
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /mysql/mysql.sock
Uptime: 58 min 41 sec
Threads: 72 Questions: 40145 Slow queries: 0 Opens: 117 Flush tables: 1 Open tables: 64 Queries per second avg: 11.402
Enter password:
mysqladmin Ver x.y Distrib x.y.z, for linux-gnu on x86_64
Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license
Server version 5.x.y
Protocol version 10
Connection Localhost via UNIX socket
UNIX socket /mysql/mysql.sock
Uptime: 58 min 41 sec
Threads: 72 Questions: 40145 Slow queries: 0 Opens: 117 Flush tables: 1 Open tables: 64 Queries per second avg: 11.402
mysqlコマンドで調べる
# mysql -D mydb -e "select version();" -u root -pのも調べられます。
例
# mysql -D mydb -e "select version();" -u root -p
Enter password:
+-----------+
| version() |
+-----------+
| 5.x.y |
+-----------+
Enter password:
+-----------+
| version() |
+-----------+
| 5.x.y |
+-----------+
Sponsored Link
- Relative Articles
- SQL入門その15 - テーブルの列名の変更 - (2009/03/16 11:16)
- MySQL/Oracleなどのデータベースのページング処理 - (2009/09/08 18:29)
- OralceやMySQLなどのデータベースの索引(インデックス)を削除する例 - (2010/08/02 17:45)
- データベースチューニング - (2008/07/11 15:54)
- MySQLチューニングを行うためのログ解析ツール - (2008/10/10 00:27)
- MySQLクイック・リファレンス - (2008/12/24 20:41)
- MySQL RSSで最新ニュース・情報 - (2009/02/26 14:09)
- MySQL初心者入門講座「mysqlweb.net」 - (2009/02/26 14:14)
- MySQL4.1 リファレンス・マニュアル「公式日本語版」 - (2009/02/26 14:27)
- MySQL5.1 リファレンス・マニュアル「公式日本語版」 - (2009/02/26 14:29)