我在 Arch Linux (Manjaro) 上运行 MariaDB (v 10.3.13)。它在过去几个月中正常工作,但现在出现了一些问题。当我尝试重新启动计算机时,它卡在
A stop job is running for MariaDB 10.3.13 database server
它应该花费的时间每分钟增加一次,直到它最终超时(大约 20 分钟后)。
当我尝试重新启动/停止它时,手动停止 MariaDB 也会卡住
sudo systemctl stop/restart mariadb
然后跑sudo systemctl status mariadb
节目
/usr/bin/mysqld (initiated by: unknown): Normal shutdown
Event Scheduler: Purging the queue. 0 events
InnoDB: FTS optimize thread exiting.
InnoDB: Starting shutdown...
InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
InnoDB: Buffer pool(s) dump completed at 190402 20:31:01
InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
每分钟都会添加另一行InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
。
有没有办法重置 MariaDB?或者获取更多信息的方法是什么问题?
PS:我最近通过包管理器安装了一些更新,之后我第一次注意到这个问题。
更新:
当我卸载、重新启动并重新安装 MariaDB 时,我可以毫无问题地停止/重新启动 MariaDB,并且关机也没有问题。但是再次启动后,我又回到了上述问题。
经过几个小时的斗争,我终于解决了这个问题。
罪魁祸首是
timedatectl set-local-rtc 1
Win10 双启动的时间设置 ( )。由于最近的时间更改,时钟被弄乱了。(状态日志条目在
sudo systemctl status mariadb
未来 1h)环境
并重新启动解决了它。
您还可以
TimeoutSec=300
从 mysql 启动服务配置文件更改并减少超时值(5 分钟)到较低的超时值:注意: 这不是此问题的修复或解决方案。它只是减少服务终止超时值。您应该考虑根据在您的操作系统和服务上导致此问题的情况或错误找到正确的解决方案,并在问题解决后将超时恢复为默认建议值。