ようやくブログサイトが復活しました。
長かったです。
DBが壊れたのが、復旧に手間取りました。
データベースの復旧手順は、別にまとめますが、取り敢えずブログの復旧手順は、下記の様な感じです。
ブログの復元手順
下記のサイトを参考に進めて行きます。
https://wap-log.com/restore-from-backup/
[MySQLデータベースの復元手順]
・/var/db/mysqlのディレクトリーを削除。
・/usr/local/etc/rc.d/mysql-server start
・/usr/local/etc/rc.d/mysql-server stop
・mysqld_safe –skip-grant-tables & で、起動。
・mysql -u root
mysql> use mysql;
mysql> update user set authentication_string=password(“1234qwer”) where user=’root’;
mysql> commit;
mysql> flush privileges;
mysql> quit
# /usr/local/etc/rc.d/mysql-server restart
・rootのパスワードを再設定
# mysql -u root -p
mysql> set password for root@localhost=password(‘passwordPASSWORD@999’);
・zenpakudbのユーザーの作成とデータベース作成
mysql> create user `zenpakudb`@`localhost` IDENTIFIED BY ‘123qwe’;
mysql> create database zenpakudb;
mysql> grant all privileges on zenpakudb.* to zenpakudb@localhost IDENTIFIED BY ‘123qwe’;
・ダンプファイルの復元
# mysql -u zenpakudb -p zenpakudb < ./STORE/zenpakudb_ALL.dump
・wordPressの新規インストール
# cd /usr/local/www
# rm -R wordpress
# tar xvfz /home/oka/W8/w.tar.gz #古いコンテンツを固めた物。
# mv wordpress wordpress.Blog
# tar xvfz /home/oka/W7/wordpress-5.8-ja.tar.gz
# chown -R www ./wordpress
# chgrp -R www ./wordpress
# cd wordpress
# mv wp-content wp-content.ORG
# mv ../wordpress.Blog/wp-content .
# cp -a ../wordpress.Blog/wp-config.php .