sh 将Joomla数据库转储到sql文件。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 将Joomla数据库转储到sql文件。相关的知识,希望对你有一定的参考价值。

#!/bin/sh

# jdbdump -- Dump a Joomla database to sql file.
# This scripts supports Joomla versions 1.0 - 3.3
# Copyright 2014 Rene Kreijveld - email@renekreijveld.nl
# This program is free software; you may redistribute it and/or modify it.
# Warning! This script needs the file joomlafunctions. This has to be installed in the same directory as this script.
#

# General variables
VERSION=2.0

# Determine path of script
MYPATH=$( cd $(dirname $0) ; pwd -P )

# Include general functions
. ${MYPATH}/joomlafunctions

echo "jdbdump verion ${VERSION}, written by René Kreijveld"
echo "This is a Joomla! $versr.$versd site. Starting database dump..."

# Dump the database to a .sql file
if mysqldump --skip-opt --add-drop-table --add-locks --create-options --disable-keys --lock-tables --quick --set-charset --host=$host --user=$dbuser --password=$password --socket=$MYSOCK $database > $database.sql; then
	echo "$database.sql created."
	ls -l $database.sql
	exit 0
else
	echo "Error creating database dump."
	exit 1
fi

以上是关于sh 将Joomla数据库转储到sql文件。的主要内容,如果未能解决你的问题,请参考以下文章

sh 在您的Magento根目录中运行此单行程序,以将已安装的数据库转储到上面的目录,其文件名与dbname [.sql]相同

sh 将MySQL数据库克隆到同一服务器上的新数据库,而不使用转储文件。这比使用mysqldump要快得多。

sh 导入未使用--opt或--extended-insert转储的单个MySQL .sql文件(如来自VaultPress转储。显示一些* very * basic

Jetbrains Datagrip 2017.1.3,在将数据转储到 sql 插入文件时强制导出列

Django:将SQL数据转储到xml文件中

sh pg_restore将本地数据库转储到Docker中