CentOS 7 で LAMP スタックを実行しています。SCL は有効になっていますが、PHP と Apache のみが使用しています。テスト マシンで MariaDB を正常に切り替えることができなかったため、本番環境での切り替えは試みていません。
最近、データベースのクラッシュが頻繁に発生しています。クラッシュや破損は慢性的な問題ですが、今回は wiki がオフラインになってしまいました。wiki テーブルと MariaDB データベースを修復し、問題は解決したと考えました (次回まで)。しかし、再起動後にログファイルに次の内容が記録されました。
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
これはかなり一般的な問題であり、議論されてきましたうんざりするほどただし、クリーンなシャットダウン/再起動ではこの問題は発生しないはずです。(修正をお願いします)。
実験として、sudo su -
に続いてを実行しましたshutdown -r now
。ログには次の内容が記録されました。
# 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'
systemd がデータベースを適切にシャットダウンしていないようです。(修正をお願いします)。
CentOS と Systemd のバグ トラッカーを検索しましたが、関連する問題は見つかりませんでした。他の誰かがこの問題を経験していて、解決手順を提供できることを願っています。
MariaDB のシャットダウンの問題を修正するにはどうすればよいですか?
シャットダウン中に何が起こっているのかを把握するために私が得たのはここまでです。私は 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
その後:
# 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
答え1
「ibdata ファイル内のログ シーケンス番号が一致しません」というメッセージは、頻繁に発生するものではありません。これは、systemd の問題ではないと思われます。完全な mysqldump を取得して、これをクリーンなインスタンスに復元し、innodb の不一致を解消します。
注: systemctl show mariadb.service
systemd の設定を表示するより良い方法です。