markdown WordPress片段:使用WP CLI检查数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown WordPress片段:使用WP CLI检查数据库相关的知识,希望对你有一定的参考价值。

# Check the DB of WordPress

Check using the number of tables.

```shell
#/bin/bash

while [ true ]
do
    # Number of actual tables in the database.
    TABLES_QTY=$(wp db tables --allow-root 2>/dev/null | wc -l)
    # Expected number of tables.
    EXPECTED_QTY=12

    if [ $TABLES_QTY == $EXPECTED_QTY ]; then
        break
    fi
done

echo 'DB is ready.'
```

Check the status of the DB.

```shell
#/bin/bash

while [ true ]
do
	DB_STATUS=$(wp db check --allow-root 2>&1| grep "Success: Database checked." | wc -l)

	if [ $DB_STATUS == 1 ]; then
		break
    fi
    
    echo 'DB is ready.'
done
```

以上是关于markdown WordPress片段:使用WP CLI检查数据库的主要内容,如果未能解决你的问题,请参考以下文章

markdown 在WordPress中使用jQuery代码片段

markdown 使用WP-CLI在服务器上存储WordPress文件和数据库。

markdown 自定义 - WP作业管理器WordPress插件

markdown 自定义 - WP作业管理器WordPress插件

php Wordpress functions.php片段使用Yoast的插件将Google Analytics跟踪添加到wp_nav_menu

Wordpress阻止访问wp admin€“wpsnipp.com网站你博客的Wordpress代码片段