facebook twitter hatena line email

Mysql/設定

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:15時点における127.0.0.1 (トーク)による版 (ページの作成:「==設定ファイル== /etc/my.cnf ==最大接続数変更== default mysql> show variables like 'max_connections%'; +-----------------+-------+ | Variable_name | V...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

設定ファイル

/etc/my.cnf

最大接続数変更

default

mysql> show variables like 'max_connections%';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 151   |

変更

$ /etc/my.cnf
[mysqld]
max_connections=500
mysql> show variables like 'max_connections%';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 500   |