Estamos executando uma pilha LAMP no CentOS 7. Temos SCL habilitado, mas apenas PHP e Apache o estão usando. Não conseguimos fazer a transição do MariaDB com sucesso em uma máquina de teste, então nunca tentamos uma transição na produção.
Ultimamente, temos enfrentado falhas de banco de dados mais graves. As falhas e corrupções são um problema crônico, mas desta vez nosso wiki ficou offline. Reparamos as tabelas wiki e o banco de dados MariaDB e pensamos ter resolvido o problema (até a próxima vez). No entanto, notei o seguinte no arquivo de log após uma reinicialização:
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
InnoDB: Database was not shut down normally!
The log sequence number in ibdata files does not match
é um problema bastante comum e tem sido discutidoaté enjoar. Mas não devemos experimentar isso em um desligamento/reinicialização limpo. (correções por favor).
Como experimento, realizei um sudo su -
seguido por shutdown -r now
. Os registros então revelaram:
# tail /var/log/mariadb/mariadb.log
180901 23:01:26 Percona XtraDB (http://www.percona.com) 5.5.59-MariaDB-38.11 started; log sequence number 1478830786
180901 23:01:26 [Note] Plugin 'FEEDBACK' is disabled.
180901 23:01:26 [Note] Server socket created on IP: '0.0.0.0'.
180901 23:01:26 [Note] Event Scheduler: Loaded 0 events
180901 23:01:26 [Note] /usr/libexec/mysqld: ready for connections.
Version: '5.5.60-MariaDB' socket: '/var/lib/mysql/mysql.sock' port: 3306 MariaDB Server
180901 23:01:30 [ERROR] mysqld: Table './my_wiki/wikicryptopp_objectcache' is marked as crashed and should be repaired
180901 23:01:30 [Warning] Checking table: './my_wiki/wikicryptopp_objectcache'
180901 23:05:01 [ERROR] mysqld: Table './my_wiki/wikicryptopp_module_deps' is marked as crashed and should be repaired
180901 23:05:01 [Warning] Checking table: './my_wiki/wikicryptopp_module_deps'
Parece que o systemd não está desligando o banco de dados corretamente. (correções por favor).
Pesquisei nos rastreadores de bugs CentOS e Systemd, mas não encontrei um problema relacionado. Espero que outra pessoa tenha enfrentado os problemas e possa fornecer as etapas para resolvê-los.
Como faço para corrigir o problema de desligamento do MariaDB?
Isso foi o máximo que consegui ao descobrir o que está acontecendo durante o desligamento. Não sei se isso está correto (talvez não) porque não sou um cara do systemd.
[root@ftpit ~]# find /etc -name mariadb.service
/etc/systemd/system/multi-user.target.wants/mariadb.service
[root@ftpit ~]# find /etc -name mysql.service
[root@ftpit ~]# find /opt/rh -name mariadb.service
[root@ftpit ~]# find /opt/rh -name mysql.service
E então:
# cat /etc/systemd/system/multi-user.target.wants/mariadb.service
# It's not recommended to modify this file in-place, because it will be
# overwritten during package upgrades. If you want to customize, the
# best way is to create a file "/etc/systemd/system/mariadb.service",
# containing
# .include /lib/systemd/system/mariadb.service
# ...make your changes here...
# or create a file "/etc/systemd/system/mariadb.service.d/foo.conf",
# which doesn't need to include ".include" call and which will be parsed
# after the file mariadb.service itself is parsed.
#
# For more info about custom unit files, see systemd.unit(5) or
# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
# For example, if you want to increase mariadb's open-files-limit to 10000,
# you need to increase systemd's LimitNOFILE setting, so create a file named
# "/etc/systemd/system/mariadb.service.d/limits.conf" containing:
# [Service]
# LimitNOFILE=10000
# Note: /usr/lib/... is recommended in the .include line though /lib/...
# still works.
# Don't forget to reload systemd daemon after you change unit configuration:
# root> systemctl --system daemon-reload
[Unit]
Description=MariaDB database server
After=syslog.target
After=network.target
[Service]
Type=simple
User=mysql
Group=mysql
ExecStartPre=/usr/libexec/mariadb-prepare-db-dir %n
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
# per bug #547485
ExecStart=/usr/bin/mysqld_safe --basedir=/usr
ExecStartPost=/usr/libexec/mariadb-wait-ready $MAINPID
# Give a reasonable amount of time for the server to start up/shut down
TimeoutSec=300
# Place temp files in a secure directory, not /tmp
PrivateTmp=true
[Install]
WantedBy=multi-user.target
Responder1
“O número de sequência de log nos arquivos ibdata não corresponde” não deve ocorrer comumente. É improvável que seja um problema do sistema. Eu pegaria um mysqldump completo e o restauraria em uma instância limpa e deixaria isso esclarecer as discrepâncias do innodb.
nota: systemctl show mariadb.service
é a melhor maneira de mostrar a configuração do systemd.