我有一个运行 CentOS 7 的 Linode VPS 和一些旧版本的 Web 相关服务(因为我编写的代码还没有准备好用于新版本 - 我计划使用新的一切和更新的代码构建一个新的 VPS,但是那需要时间)。
最近,VPS 迁移到了新硬件。重新启动后,MariaDB 10.2 将不会重新启动。经过两天的绞尽脑汁,我通过删除并重新安装 mariadb-server 让它工作起来,再加上仔细的文件管理让它识别我的 InnoDB 数据文件。
MariaDB 10.2 已结束生命周期,自 2022 年 5 月起不再受支持,因此不再位于http://yum.mariadb.org中,因此我必须安装 10.4(我只将 中的一位数字MariaDB.repo
从更改baseurl=http://yum.mariadb.org/10.2/centos7-amd64
为baseurl=http://yum.mariadb.org/10.4/centos7-amd64
)。
据我所知,一切都运行良好。但是,每当我尝试让 Monit 再次开始监视该服务时,它都会拒绝,并且我收到两封通知电子邮件,内容为“Checksum failed Service mariadb_bin”和“Checksum failed Service mariadb_init”。
我用的是最权威的镜子吧?那么为什么会出现校验和问题呢?
这是 MariaDB 的 Monit 文件:
## Mariadb monitoring.
## Test the mariadb service.
check process mariadb with pidfile /run/mariadb/mariadb.pid
group database
start program = "/usr/bin/systemctl start mariadb"
stop program = "/usr/bin/systemctl stop mariadb"
restart program = "/usr/bin/systemctl restart mariadb"
if failed port 3306 protocol mysql then restart
if 3 restarts within 5 cycles then timeout
# This process check depends on checking the binary if the mariadb
# daemon and the init script.
depends on mariadb_bin
depends on mariadb_init
alert [my email address] only on {timeout}
## Test the process binary.
check file mariadb_bin with path /usr/bin/mysqld_safe
group database
if failed checksum then unmonitor
if failed permission 755 then unmonitor
if failed uid root then unmonitor
if failed gid root then unmonitor
## Test the init scripts.
check file mariadb_init with path /usr/lib/systemd/system/mariadb.service
group database
if failed checksum then unmonitor
if failed permission 644 then unmonitor
if failed uid root then unmonitor
if failed gid root then unmonitor
所以显然 Monit 说 的校验和mariadb_bin
与 的校验/usr/bin/mysqld_safe
和不匹配,并且 的校验和与 的校验mariadb_init
和不匹配/usr/lib/systemd/system/mariadb.service
,尽管我不知道什么是“组数据库”。