zoukankan      html  css  js  c++  java
  • [Mysql]查看版本号的五种方式

    [Mysql]查看版本号的五种方式

     

    目录(?)[+]

     
    查看版本信息

    #1 

    使用命令行模式进入mysql会看到最开始的提示符 
    Your MySQL connection id is 3
    Server version: 5.1.69 Source distribution
        #2
    命令行中使用status可以看到
    [sql] view plain copy
     
    1. mysql> status;  
    2. --------------  
    3. mysql  Ver 14.14 Distrib 5.1.69, for redhat-linux-gnu (x86_64) using readline 5.1  
    4.   
    5.   
    6. Connection id:3  
    7. Current database:  
    8. Current user: root@localhost  
    9. SSL: Not in use  
    10. Current pager:stdout  
    11. Using outfile:''  
    12. Using delimiter:;  
    13. Server version:5.1.69 Source distribution  
    14. Protocol version:10  
    15. Connection: Localhost via UNIX socket  
    16. Server characterset:utf8  
    17. Db     characterset:utf8  
    18. Client characterset:utf8  
    19. Conn.  characterset:utf8  
    20. UNIX socket: /var/lib/mysql/mysql.sock  
    21. Uptime: 3 days 14 hours 50 sec  
    22.   
    23.   
    24. Threads: 1  Questions: 5  Slow queries: 0  Opens: 15  Flush tables: 1  Open tables: 8  Queries per second avg: 0.0  
    25. --------------  


    #3 使用系统函数
    [sql] view plain copy
     
    1. mysql> select version();  
    2. +-----------+  
    3. | version() |  
    4. +-----------+  
    5. | 5.1.69    |  
    6. +-----------+  
    7. 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 包管理工具(根据不同系统 rh系列或则是bsd系列)
    $ 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

    REF:www.cnblogs.com/end/archive/2011/10/18/2216461.html

  • 相关阅读:
    Fibonacci Again
    N的10000的阶乘
    HDU2141(二分搜索)
    POJ2366(HASH法)
    10106 Product
    UVA 401 Palindromes
    UVA424 Integer Inquiry
    POJ2503(二分搜索)
    mysql重置root密码
    tidb安装haproxy负载均衡
  • 原文地址:https://www.cnblogs.com/pejsidney/p/8941372.html
Copyright © 2011-2022 走看看