हर बार जब आप mysql कंसोल का उपयोग करते हैं, तो संस्करण दिखाया जाता है।
mysql -u user
सफल कंसोल लॉगिन निम्न दिखाता है जिसमें mysql सर्वर संस्करण शामिल है।
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1432
Server version: 5.5.9-log Source distribution
Copyright (c) 2000, 2010, 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 --version
आप संस्करण चर का उपयोग करके स्वयं MySQL कंसोल से संस्करण की जानकारी भी देख सकते हैं:
mysql> SHOW VARIABLES LIKE "%version%";
आउटपुट कुछ इस तरह होगा:
+-------------------------+---------------------+
| Variable_name | Value |
+-------------------------+---------------------+
| innodb_version | 1.1.5 |
| protocol_version | 10 |
| slave_type_conversions | |
| version | 5.5.9-log |
| version_comment | Source distribution |
| version_compile_machine | i386 |
| version_compile_os | osx10.4 |
+-------------------------+---------------------+
7 rows in set (0.01 sec)
आप इसका उपयोग भी कर सकते हैं:
mysql> select @@version;
STATUS कमांड संस्करण की जानकारी भी प्रदर्शित करता है।
mysql> STATUS
आप इस आदेश को निष्पादित करके संस्करण की जांच भी कर सकते हैं:
mysql -v
यह उल्लेखनीय है कि यदि आपका सामना कुछ इस तरह हुआ है:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket
'/tmp/mysql.sock' (2)
आप इसे इसके द्वारा ठीक कर सकते हैं:
sudo ln -s /Applications/MAMP/tmp/mysql/mysql.sock /tmp/mysql.sock