1、MySQLshow status like '%connect%';

Connections,试图连接到(不管是否成功)MySQL服务器的连接数。
   Max_used_connections,服务器启动后已经同时使用的连接的最大数量。
   Threads_connected,当前的连接数。

2、mysql> show variables like '%connect%';

max_connections,最大连接数。

3、修改max_connections

在配置文件(my.cnf或my.ini)在最下面,天加一句:
   max_connections=32000
   然后,用命令重启:/etc/init.d/mysqld restart
   虽然这里写的32000,实际MySQL服务器允许的最大连接数16384;
   添加了最大允许连接数,对系统消耗增加不大。

4、mysql> show processlist;
显示当前正在执行的MySQL连接。

mysql> show status like '%connect%';
+-----------------------------------------------+-------+
| Variable_name | Value |
+-----------------------------------------------+-------+
| Aborted_connects | 2 |
| Connection_errors_accept | 0 |
| Connection_errors_internal | 0 |
| Connection_errors_max_connections | 0 |
| Connection_errors_peer_address | 0 |
| Connection_errors_select | 0 |
| Connection_errors_tcpwrap | 0 |
| Connections | 445 |
| Max_used_connections | 61 |
| Performance_schema_session_connect_attrs_lost | 0 |
| Ssl_client_connects | 0 |
| Ssl_connect_renegotiates | 0 |
| Ssl_finished_connects | 0 |
| Threads_connected | 57 |
+-----------------------------------------------+-------+
14 rows in set (0.00 sec) mysql> show variables like '%connect%';
+-----------------------------------------------+-----------------+
| Variable_name | Value |
+-----------------------------------------------+-----------------+
| character_set_connection | utf8 |
| collation_connection | utf8_general_ci |
| connect_timeout | 10 |
| disconnect_on_expired_password | ON |
| init_connect | |
| max_connect_errors | 100 |
| max_connections | 151 |
| max_user_connections | 0 |
| performance_schema_session_connect_attrs_size | 512 |
+-----------------------------------------------+-----------------+
9 rows in set (0.00 sec) mysql> show processlist;
+-----+------+---------------------+------+---------+------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+-----+------+---------------------+------+---------+------+-------+------------------+
| 315 | srea | 192.168.0.206:58566 | srea | Sleep | 3370 | | NULL |
| 316 | srea | 192.168.0.206:58567 | srea | Sleep | 3370 | | NULL |
| 317 | srea | 192.168.0.206:58568 | srea | Sleep | 3370 | | NULL |
| 318 | srea | 192.168.0.206:58569 | srea | Sleep | 3370 | | NULL |
| 319 | srea | 192.168.0.206:58570 | srea | Sleep | 3370 | | NULL |
| 320 | srea | 192.168.0.206:58572 | srea | Sleep | 3370 | | NULL |
| 321 | srea | 192.168.0.206:58575 | srea | Sleep | 3370 | | NULL |
| 322 | srea | 192.168.0.206:58576 | srea | Sleep | 3370 | | NULL |
| 323 | srea | 192.168.0.206:58577 | srea | Sleep | 3370 | | NULL |
| 324 | srea | 192.168.0.206:58578 | srea | Sleep | 3370 | | NULL |
| 325 | srea | 192.168.0.206:58579 | srea | Sleep | 3370 | | NULL |
| 326 | srea | 192.168.0.206:58581 | srea | Sleep | 3370 | | NULL |
| 327 | srea | 192.168.0.206:58582 | srea | Sleep | 3370 | | NULL |
| 328 | srea | 192.168.0.206:58583 | srea | Sleep | 3370 | | NULL |
| 329 | srea | 192.168.0.206:58586 | srea | Sleep | 3370 | | NULL |
| 330 | srea | 192.168.0.206:58587 | srea | Sleep | 3370 | | NULL |
| 331 | srea | 192.168.0.206:58589 | srea | Sleep | 3370 | | NULL |
| 332 | srea | 192.168.0.206:58590 | srea | Sleep | 3370 | | NULL |
| 334 | srea | 192.168.0.206:59012 | srea | Sleep | 2920 | | NULL |
| 335 | srea | 192.168.0.206:59342 | srea | Sleep | 2487 | | NULL |
| 336 | srea | 192.168.0.206:59343 | srea | Sleep | 2545 | | NULL |
| 337 | srea | 192.168.0.206:59344 | srea | Sleep | 2545 | | NULL |
| 338 | srea | 192.168.0.206:59345 | srea | Sleep | 2545 | | NULL |
| 339 | srea | 192.168.0.206:59346 | srea | Sleep | 2545 | | NULL |
| 340 | srea | 192.168.0.206:59347 | srea | Sleep | 2545 | | NULL |
| 341 | srea | 192.168.0.206:59348 | srea | Sleep | 2545 | | NULL |
| 342 | srea | 192.168.0.206:59349 | srea | Sleep | 2544 | | NULL |
| 343 | srea | 192.168.0.206:59350 | srea | Sleep | 2544 | | NULL |
| 344 | srea | 192.168.0.206:59351 | srea | Sleep | 2544 | | NULL |
| 345 | srea | 192.168.0.206:59352 | srea | Sleep | 2544 | | NULL |
| 346 | srea | 192.168.0.206:59353 | srea | Sleep | 2544 | | NULL |
| 347 | srea | 192.168.0.206:59354 | srea | Sleep | 2544 | | NULL |
| 348 | srea | 192.168.0.206:59355 | srea | Sleep | 2544 | | NULL |
| 349 | srea | 192.168.0.206:59356 | srea | Sleep | 2544 | | NULL |
| 350 | srea | 192.168.0.206:59357 | srea | Sleep | 2544 | | NULL |
| 351 | srea | 192.168.0.206:59358 | srea | Sleep | 2544 | | NULL |
| 353 | srea | 192.168.0.206:59341 | srea | Sleep | 2503 | | NULL |
| 354 | srea | 192.168.0.206:59340 | srea | Sleep | 2486 | | NULL |
| 418 | srea | 192.168.0.206:52115 | srea | Sleep | 643 | | NULL |
| 419 | srea | 192.168.0.206:52140 | srea | Sleep | 717 | | NULL |
| 420 | srea | 192.168.0.206:52145 | srea | Sleep | 717 | | NULL |
| 421 | srea | 192.168.0.206:52148 | srea | Sleep | 717 | | NULL |
| 422 | srea | 192.168.0.206:52151 | srea | Sleep | 717 | | NULL |
| 423 | srea | 192.168.0.206:52154 | srea | Sleep | 717 | | NULL |
| 424 | srea | 192.168.0.206:52157 | srea | Sleep | 717 | | NULL |
| 425 | srea | 192.168.0.206:52159 | srea | Sleep | 716 | | NULL |
| 426 | srea | 192.168.0.206:52160 | srea | Sleep | 716 | | NULL |
| 427 | srea | 192.168.0.206:52161 | srea | Sleep | 716 | | NULL |
| 428 | srea | 192.168.0.206:52164 | srea | Sleep | 716 | | NULL |
| 429 | srea | 192.168.0.206:52167 | srea | Sleep | 716 | | NULL |
| 430 | srea | 192.168.0.206:52169 | srea | Sleep | 716 | | NULL |
| 431 | srea | 192.168.0.206:52172 | srea | Sleep | 716 | | NULL |
| 432 | srea | 192.168.0.206:52175 | srea | Sleep | 716 | | NULL |
| 433 | srea | 192.168.0.206:52179 | srea | Sleep | 716 | | NULL |
| 436 | srea | 192.168.0.206:52114 | srea | Sleep | 668 | | NULL |
| 437 | srea | 192.168.0.206:52112 | srea | Sleep | 641 | | NULL |
| 444 | root | localhost | NULL | Query | 0 | init | show processlist |
+-----+------+---------------------+------+---------+------+-------+------------------+
57 rows in set (0.00 sec)

  

MySQL,查看连接数和状态等的更多相关文章

  1. Mysql 查看连接数,状态,最大并发数

    MySQL: ERROR 1040: Too many connections”的异常情况,造成这种情况的一种原因是访问量过高,MySQL服务器抗不住,这个时候就要考虑增加从服务器分散读压力:另一种原 ...

  2. mysql查看连接数和状态,设置连接数和超时时间

    1.mysql> show status like '%connect%'; Connections,试图连接到(不管是否成功)MySQL服务器的连接数.   Max_used_connecti ...

  3. MySql状态查看方法 MySql如何查看连接数和状态?

    原文:MySql状态查看方法 MySql如何查看连接数和状态? 如果是root帐号,你能看到所有用户的当前连接.如果是其它普通帐号,只能看到自己占用的连接 怎么进入mysql命令行呢? mysql的安 ...

  4. Mysql 查看连接数,状态 最大并发数(赞)

    Mysql 查看连接数,状态 最大并发数(赞)   -- show variables like '%max_connections%'; 查看最大连接数 set global max_connect ...

  5. MySQL查看连接数

    MySQL查看连接数 1.查看部分连接数(数目较多时) show processlist; 2.查看所有连接数(数目较多时) show full processlist;

  6. mysql查看连接数排查问题

    #mysql查看连接数SHOW VARIABLES LIKE '%max_connections%'; # max_connections 最大连接数 SHOW VARIABLES LIKE '%co ...

  7. Mysql查看连接数相关信息

    MySQL查看连接数相关信息在 数据库:INFORMATION_SCHEMA 表:PROCESSLIST 表结构如下: mysql> desc PROCESSLIST; +---------+- ...

  8. MySQL如何查看连接数和状态

    查看连接数 命令:show processlist 如果要是root账号,能够看见当前所有用户的连接.如果是普通账号,只能看到自己占用的连接数.   show processlist只能是列出前100 ...

  9. Mysql 查看连接数,状态 最大并发数 && 怎么设置才合理

    show status like '%max_connections%'; ##mysql最大连接数 set global max_connections=1000 ##重新设置 show varia ...

  10. Mysql 查看连接数,状态 最大并发数

    show status like '%max_connections%'; ##mysql最大连接数set global max_connections=1000 ##重新设置show variabl ...

随机推荐

  1. vmrun命令

    VMWare提供了vmrun与VIX API两种手段使用户可以通过程序对虚拟机进行控制. 在官方文档中给出了详细的说明和示例代码.           vmrun:http://www.vmware. ...

  2. 《FPGA全程进阶---实战演练》第四章之实验平台软硬件使用简介

    本章主要是讲解读者在进行FPGA逻辑设计之前的准备工作,需要下载Quartus II软件和 Modelsim 软件,一个是用来进行FPGA逻辑设计,一个是用来对逻辑进行理论分析与验证. 1.1 qua ...

  3. 【Centos】systemd入门教程

    systemd使用教程 常用指令 运行一个服务: systemctl start <服务名> 关闭一个服务: systemctl stop <服务名> 重启一个服务: syst ...

  4. iOS开发OC基础:Xcode中常见英文总结,OC常见英文错误

    在开发的过程中难免会遇到很多的错误,可是当看到系统给出的英文时,又不知道是什么意思.所以这篇文章总结了Xcode中常见的一些英文单词及词组,可以帮助初学的人快速了解给出的提示.多练习,就肯定能基本掌握 ...

  5. Java如何格式化月份?

    在Java中,如何以MMMM格式格式化时间? 这个示例使用SimpleDateFormat('MMMM')构造函数和SimpleDateFormat类的sdf.format(date)方法来格式化月份 ...

  6. JAR 文件格式提供了许多优势和功能

    JAR 文件格式提供了许多优势和功能,其中很多是传统的压缩格式如 ZIP 或者 RAR 所没有提供的.它们包括: 安全性 可以对 JAR 文件内容加上数字化签名.这样,能够识别签名的工具就可以有选择地 ...

  7. Linux Shell 基本语法

    一. Linux基本命令 1.1.  cp命令 该命令的功能是将给出的文件或目录拷贝到另一文件或目录中,功能十分强大. 语法: cp [选项] 源文件或目录 目标文件或目录 1.2. mv命令 用户可 ...

  8. php写文件操作

    function writeLog($file, $msg, $mode='a+') { $fp = fopen($file, $mode); if(flock($fp, LOCK_EX)) { fw ...

  9. 分享8款令人惊叹的HTML5 Canvas动画特效

    HTML5的确可以制作出非常绚丽的网页动画效果,尤其是利用HTML5 Canvas特性和HTML5 3D特性,我们更加可以欣赏到超酷的动画特效.今天我从html5tricks网站上整理了8款令人惊叹的 ...

  10. 解决 PathVariable annotation was empty on param 0.

    今天在写网关关于远程调用Feign的时候报的一个错误,PathVariable注解为空.仔细看了一下代码发现问题出在用@PathVariable注解的时候 @PathVariable Integer ...