How to view version information in mysql

View version information
#1 Use command line mode to enter mysql and you will see the initial prompt
Your MySQL connection id is 3
Server version: 5.1.69 Source distribution

#2 Use status in the command line to see

Copy the code The code is as follows:

mysql> status;
--------------
mysql Ver 14.14 Distrib 5.1.69, for redhat-linux-gnu (x86_64) using readline 5.1
Connection id:3
Current database:
Current user: root@localhost
SSL: Not in use
Current pager:stdout
Using outfile:''
Using delimiter:;
Server version:5.1.69 Source distribution
Protocol version:10
Connection: Localhost via UNIX socket
Server characterset:utf8
Db characterset:utf8
Client characterset:utf8
Conn. characterset:utf8
UNIX socket: /var/lib/mysql/mysql.sock
Uptime: 3 days 14 hours 50 sec
Threads: 1 Questions: 5 Slow queries: 0 Opens: 15 Flush tables: 1 Open tables: 8 Queries per second avg: 0.0


#3 Use system functions

Copy the code The code is as follows:

mysql> select version();
+-----------+
| version() |
+-----------+
| 5.1.69 |
+-----------+
1 row in set (0.12 sec)


#4 $ mysql --help | grep Distrib
mysql Ver 14.14 Distrib 5.1.69, for redhat-linux-gnu (x86_64) using readline 5.1

#5 Package management tool (rh series or bsd series according to different systems)
$ rpm - qa|grep mysql
qt-mysql-4.6.2-20.el6.x86_64
mysql-server-5.1.69-1.el6_4.x86_64
mysql-libs-5.1.69-1.el6_4.x86_64
mysql-5.1.69-1 .el6_4.x86_64
mysql-devel-5.1.69-1.el6_4.x86_64

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326685750&siteId=291194637