zoukankan      html  css  js  c++  java
  • Mysql查看连接端口及版本

    C:UsersAdministrator>mysql -uroot -p
    Enter password: *****
    Welcome to the MySQL monitor. Commands end with ; or g.
    Your MySQL connection id is 6
    Server version: 5.6.23-enterprise-commercial-advanced-log MySQL Enterprise Server - Advanced Edition (Commercial)

    Copyright (c) 2000, 2015, 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> status
    --------------
    mysql Ver 14.14 Distrib 5.6.23, for Win64 (x86_64)

    Connection id: 6
    Current database:
    Current user: root@localhost
    SSL: Not in use
    Using delimiter: ;
    Server version: 5.6.23-enterprise-commercial-advanced-log MySQL Enterprise Server - Advanced Edition (Commercial)
    Protocol version: 10
    Connection: localhost via TCP/IP
    Server characterset: utf8
    Db characterset: utf8
    Client characterset: gbk
    Conn. characterset: gbk
    TCP port: 3306
    Uptime: 7 min 53 sec

    Threads: 1 Questions: 21 Slow queries: 0 Opens: 70 Flush tables: 1 Open tables: 63 Queries per second avg: 0.044
    --------------

    mysql> select version()
    -> ;
    +-------------------------------------------+
    | version() |
    +-------------------------------------------+
    | 5.6.23-enterprise-commercial-advanced-log |
    +-------------------------------------------+
    1 row in set (0.00 sec)

    mysql> show global variables like 'port'
    -> ;
    +---------------+-------+
    | Variable_name | Value |
    +---------------+-------+
    | port | 3306 |
    +---------------+-------+
    1 row in set (0.00 sec)

    mysql>

  • 相关阅读:
    关于Windows版本的redis启动报错:Creating Server TCP listening socket 127.0.0.1:6379: bind: No error
    03 验证线程是数据共享的
    01 线程的两种创建方式
    33 线程的创建 验证线程之间数据共享 守护线程
    10 进程池的回调函数
    09 进程池的异步方法
    07 进程池的同步方法和异步方法
    08 进程池同步方法
    05 进程池map方法
    06 测试多进程的时间
  • 原文地址:https://www.cnblogs.com/rusking/p/5090378.html
Copyright © 2011-2022 走看看