久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      怎么查詢mysql的最大連接數(shù)

      在mysql中,可以利用“show variables like '%max_connections%';”命令查詢mysql的最大連接數(shù);show命令用于提供多種形式獲取數(shù)據(jù)庫信息,“max_connections”用于表示最大連接數(shù)。

      怎么查詢mysql的最大連接數(shù)

      本教程操作環(huán)境:windows10系統(tǒng)、mysql8.0.22版本、Dell G3電腦。

      怎么查詢mysql的最大連接數(shù)

      查詢命令為:

      show variables like '%max_connections%';

      MySQL 默認(rèn)的最大連接數(shù)為 100,可以在 mysql 客戶端使用上述命令查看

      此命令將得到類似以下的輸出結(jié)果:

      +----------------------+-------+ | Variable_name | Value | +----------------------+-------+ | max_connections | 1000 | | max_user_connections | 1000 | +----------------------+-------+

      要對(duì) mysql 的最大連接數(shù)進(jìn)行修改,只需要在 my.cnf 配置文件里面修改 max_connections 的值,然后重啟 mysql 就行。如果 my.ini 文件中沒有找到 max_connections 條目,可自行添加以下條目

      max-connections = 1000 max_user_connections = 1000

      重啟Mysql即可!

      示例如下:

      怎么查詢mysql的最大連接數(shù)

      怎么查詢mysql的最大連接數(shù)

      推薦學(xué)習(xí):mysql視頻教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)