MySQL, チューニング, Linux

MySQL 5.6 ファイルディスクリプタ カーネルチューニング CentOS7

MySQL5.6 ファイルディスクリプタチューニング CentOS7

 

[Warning] Buffered warning: Could not increase number of max_open_files to more than 1024 (request: 10140)
[Warning] Buffered warning: Changed limits: max_connections: 214 (requested 2048)

MySQLの設定反映後はログをチェックします。

このエラーに対応します。

これはファイルディスクリプタの制限値にひっかかっています。

 

# vi /etc/security/limits.conf
 
mysql hard nofile 65535
mysql soft nofile 65535

 

 

 

# vi /usr/lib/systemd/system/mysqld.service
 
[Service]
 
※最終行に以下を追加

LimitNOFILE=65535

 

# systemctl daemon-reload

 

# systemctl start mysqld
# systemctl enable mysqld

 

# reboot now

 

# tail -n 2000 /var/log/mysqld.log

WARNING, ERRORがなければおしまいです。

 

 

 

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)