[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がなければおしまいです。