Kylin OOM
MySQL
Troubleshooting
解决Kylin V10 下 MySQL 容器内存占用异常的问题,参考文档https://zhuanlan.zhihu.com/p/679582049?utm_medium=social&utm_psn=1837658450517184512&utm_source=wechat_session
ulimit -n 1048576 && ulimit -a >/dev/null && ulimit -n
#!/bin/bash
set -eo pipefail
shopt -s nullglob
---
## l...