WIKI使用導(dǎo)航
站長百科導(dǎo)航
站長專題
- 網(wǎng)站推廣
- 網(wǎng)站程序
- 網(wǎng)站賺錢
- 虛擬主機(jī)
- cPanel
- 網(wǎng)址導(dǎo)航專題
- 云計算
- 微博營銷
- 虛擬主機(jī)管理系統(tǒng)
- 開放平臺
- WIKI程序與應(yīng)用
- 美國十大主機(jī)
編輯“WordPress:Backing Up Your Database”
該編輯可以被撤銷。 請檢查下面的對比以核實(shí)您想要撤銷的內(nèi)容,然后發(fā)布下面的更改以完成撤銷。
最后版本 | 您的文本 | ||
第1行: | 第1行: | ||
'''It is strongly recommended that you backup your database at regular intervals and before an upgrade.''' | |||
? | |||
'''強(qiáng)烈建議定時備份,每次更新前也做一次備份。.''' | '''強(qiáng)烈建議定時備份,每次更新前也做一次備份。.''' | ||
[[WordPress:Restoring Your Database From Backup|Restoring your database from backup]] is then possible if something goes wrong. | |||
[[WordPress:Restoring Your Database From Backup|從你的備份中恢復(fù)數(shù)據(jù)庫]]可以在你遇到問題時使用。 | [[WordPress:Restoring Your Database From Backup|從你的備份中恢復(fù)數(shù)據(jù)庫]]可以在你遇到問題時使用。 | ||
== Using phpMyAdmin == | |||
[[WordPress:phpMyAdmin]] is the name of the program used to manipulate your database. | |||
Information below has been tried and tested using phpMyAdmin versions 2.5.3, 2.5.7-pl1, and 2.6.1-pl3 running on Unix. | |||
== 使用 phpMyAdmin == | == 使用 phpMyAdmin == | ||
第11行: | 第19行: | ||
下邊的信息已經(jīng)通過使用phpMyAdmin versions 2.5.3, 2.5.7-pl1,和2.6.1-pl3運(yùn)行在Unix系統(tǒng)上的測試。 | 下邊的信息已經(jīng)通過使用phpMyAdmin versions 2.5.3, 2.5.7-pl1,和2.6.1-pl3運(yùn)行在Unix系統(tǒng)上的測試。 | ||
=== Backup Process with phpMyAdmin === | |||
<ol>[[WordPress:Image:podz_backup_1.jpg|thumb|Image#1]] | |||
<li>Log into phpMyAdmin on your server</li> | |||
[[WordPress:Image:podz_backup_2.jpg|thumb|Image#2]] | |||
<li>From the main login screen, select 'Databases' (Image#1)</li> | |||
[[WordPress:Image:podz_backup_3.jpg|thumb|Image#3]] | |||
<li>Now click the name of your database - or your WordPress database if you have several databases. (Image#2)</li> | |||
[[WordPress:Image:podz_backup_4.jpg|thumb|Image#4]] | |||
<li>The next screen will show you all the tables inside your WordPress database.<br /> | |||
Ignore those, and click the 'Export' tab on the top set of tabs. (Image#3)</li> | |||
<li>Look at the left box at the top of the Export section. All the tables in the database you selected are in that box.(Image#4)</li> | |||
[[WordPress:Image:podz_backup_5.jpg|thumb|Image#5]] | |||
<ul> | |||
<li>If you have other programs that use the database, then choose only those tables that correspond to your wordpress install. They will be the ones with that start with "wp_" or whatever 'table_prefix' you specified in your 'wp-config.php' file.</li> | |||
<li>If you only have your WordPress blog installed, in the left column, click 'Select All'.</li> | |||
</ul> | |||
<li>Ensure that the SQL button is selected too. (Image#5)</li> | |||
<ul> | |||
<li>The SQL section</li> | |||
<li>Tick the following boxes: Structure, 'Add DROP TABLE', 'Add AUTO_INCREMENT' and 'Enclose table and field names with backquotes'</li></ul> | |||
<li>The DATA section</li> | |||
<ul>[[WordPress:Image:podz_backup_6.gif|thumb|Image#6]] | |||
<li>Leave the boxes inside this section unticked, but make sure to keep the checkbox next to the "DATA" heading checked.</li> | |||
</ul> | |||
<li>Tick the 'Save as file' option, and leave the template name alone.<br /> | |||
For now, select 'None' for compression.</li> | |||
<li>Now click 'Go' and you should be prompted for a file to download. Save the file to your computer. (Image#6)<br /> | |||
Depending on the database size, this may take a few moments.</li> | |||
<li>Once that download is complete, check the 'zipped' option, click 'Go', and download the next file.<br /> | |||
If you wanted, you could download a backup in each of the compression formats. Your choice.</li> | |||
<li>You have now backed up your database.</li> | |||
'''Remember''' - you have NOT backed up the files and folders - such as images - but all your posts and comments are now safe.</li> | |||
</ol> | |||
=== 使用phpMyAdmin的備份過程 === | === 使用phpMyAdmin的備份過程 === | ||
<ol>[[WordPress:Image:podz_backup_1.jpg|thumb|Image#1]] | <ol>[[WordPress:Image:podz_backup_1.jpg|thumb|Image#1]] | ||
第60行: | 第116行: | ||
'''記住''' – 你沒有備份文件和文件夾 – 如圖片- 但是所有你的文章和評論現(xiàn)在已經(jīng)是安全的了.</li> | '''記住''' – 你沒有備份文件和文件夾 – 如圖片- 但是所有你的文章和評論現(xiàn)在已經(jīng)是安全的了.</li> | ||
</ol> | </ol> | ||
== Using Straight MySQL Commands == | |||
phpMyAdmin can not handle large databases so using straight MySQL code will help. | |||
1. Change your directory to the directory you want to dump things to: | |||
<pre>user@linux:~> cd files/blog</pre> | |||
2. Use <code>mysqldump</code> to dump all database tables. To dump only certain tables from the database, give their names at the place shown by <code>(tablename tablename tablename)</code>, and omit the parentheses <code>( )</code> in any case. (For help, try: <code>man mysqldump</code>.): | |||
<pre>user@linux:~/files/blog> mysqldump --add-drop-table -h mysqlhostserver | |||
-u mysqlusername -p databasename (tablename tablename tablename) | bzip2 | |||
-c > blog.bak.sql.bz2 | |||
Enter password: (enter your mysql password) | |||
user@linux~/files/blog></pre> | |||
<pre> | |||
Example: | |||
mysqldump --add-drop-table -h db01.example.net -u dbocodex -p dbwp | bzip2 -c > blog.bak.sql.bz2 | |||
Enter password: my-password | |||
user@linux~/files/blog> | |||
</pre> | |||
The <code>bzip2 -c</code> after the | (pipe) means the backup is compressed on the fly, and the <code>> blog.bak.sql.bz2</code> sends the <code>bzip</code> output to a file named <code>blog.bak.sql.bz2</code>.? It does in one line the same thing that these two commands do: | |||
<pre> | |||
mysqldump --add-drop-table -h db01.example.net -u dbocodex -p dbwp > blog.bak.sql | |||
bzip2 blog.bak.sql | |||
</pre> | |||
== 直接使用 MySQL 命令== | == 直接使用 MySQL 命令== | ||
第92行: | 第179行: | ||
</pre> | </pre> | ||
== Using MySQL Administrator == | |||
MySQL Administrator is a program for performing administrative | |||
operations, such as configuring your MySQL server, monitoring its | |||
status and performance, starting and stopping it, managing users and | |||
connections, performing backups, restoring backups and a number of | |||
other administrative tasks. | |||
You can perform most of those tasks using a command line interface | |||
such as that provided by [http://dev.mysql.com/doc/mysql/en/mysqladmin.html '''mysqladmin'''] or | |||
[http://dev.mysql.com/doc/mysql/en/mysql.html '''mysql'''], but MySQL Administrator is advantageous in the following respects: | |||
*Its graphical user interface makes it more intuitive to use. | |||
*It provides a better overview of the settings that are crucial for the performance, reliability, and security of your MySQL servers. | |||
*It displays performance indicators graphically, thus making it easier to determine and tune server settings. | |||
*It is available for Linux, Windows and MacOS X, and allows a remote client to backup the database across platforms. As long as you have access to the MySQL databases on the remote server, you can backup your data to wherever you have write access. | |||
*There is no limit to the size of the database to be backed up as there is with phpMyAdmin. | |||
MySQL Administrator is designed to work with MySQL servers versions 4.0 and above. | |||
== 使用 MySQL 管理員 == | == 使用 MySQL 管理員 == | ||
第110行: | 第218行: | ||
MySQL Administrator 是為MySQL servers 版本 4.0 及以上設(shè)計使用的。 | MySQL Administrator 是為MySQL servers 版本 4.0 及以上設(shè)計使用的。 | ||
=== | === Getting MySQL Admin === | ||
? | |||
MySQL Admin may be downloaded from [http://dev.mysql.com/downloads/administrator/1.0.html the MySQL.Com site]. Installation binaries and documentation may also be found there. | |||
? | |||
=== 得到MySQL 管理 === | |||
MySQL 管理可以從[http://dev.mysql.com/downloads/administrator/1.0.html the MySQL.Com site]下載. 安裝文件也可以從這里找到. | MySQL 管理可以從[http://dev.mysql.com/downloads/administrator/1.0.html the MySQL.Com site]下載. 安裝文件也可以從這里找到. | ||
=== Backing Up the Database === | |||
This assumes you have already installed MySQL Admin and set it up so that you can login to the MySQL Database Server either locally or remotely. Refer to the documentation that comes with the installation package of MySQL Admin for your platform for installation instructions. | |||
1. Open the MySQL Admin client and login as you had previously set up to do. | |||
2. From the icon menu on the left hand side of the client window select Backup. | |||
3. If you have not already created a Backup Project, do this now by clicking on the "New Project" button at the lower part of the window and type in a name for the Backup Project where prompted. | |||
4. Select one or more databases that you want to Backup (in the MySQL Admin client these are called a "Schema" (pl. "Schemata")). Add them to the Backup Content window on the right using the right-pointing arrow button. | |||
5. When you have selected the Schema(ta), you can save the Backup Project. Or you may simply choose to Backup Now using the button on the lower right of the window. | |||
6. A dialogue will come up asking you where to put the Backup. Enter the pathname or browse to the location using the dialogue. | |||
7. Assuming all is correct (and you have write permissions in the directory to which you are writing the Backup), the backup will complete shortly. | |||
=== 備份數(shù)據(jù)庫 === | === 備份數(shù)據(jù)庫 === | ||
第130行: | 第259行: | ||
7. 假設(shè)所有步驟都正確 (并且你在寫備份的目錄擁有寫入權(quán)限), 備份會很快完成. | 7. 假設(shè)所有步驟都正確 (并且你在寫備份的目錄擁有寫入權(quán)限), 備份會很快完成. | ||
=== Restoring From a Backup === | |||
1. Open the MySQL Admin client and login as you had previously set up to do. | |||
2. From the icon menu on the left hand side of the client window select Restore. | |||
3. Click the "Open Backup File" button on the lower right of the window. | |||
4. Type in or browse to the Schema(ta) backup file and select. Click "Open". | |||
5. The Target Schema(ta) will most likely be the "Original Location", or you may choose an alternate location using the drop-down menu. | |||
6. Click the "Start Restore" button on the lower right of the window. The database restore will commence. | |||
=== 從備份中恢復(fù) === | === 從備份中恢復(fù) === | ||
第144行: | 第287行: | ||
6. 點(diǎn)擊右窗口下方 "Start Restore" 按鈕。 數(shù)據(jù)庫恢復(fù)開始 | 6. 點(diǎn)擊右窗口下方 "Start Restore" 按鈕。 數(shù)據(jù)庫恢復(fù)開始 | ||
== Using WordPress Database Backup Plugin == | |||
[http://www.ilfilosofo.com/ Austin Matzko] maintains a [[WordPress:Plugins|WordPress plugin]] originally created by [http://www.skippy.net Skippy] called [http://www.ilfilosofo.com/blog/wp-db-backup WordPress Database Backup]. It was bundled with WordPress 2.0 but is no longer included with WordPress 2.1. | |||
== 使用WordPress 數(shù)據(jù)庫備份插件 == | == 使用WordPress 數(shù)據(jù)庫備份插件 == | ||
[http://www.ilfilosofo.com/ Austin Matzko] 維持了一個 [[WordPress:Plugins|WordPress 插件]] ,最初是[http://www.skippy.net Skippy]創(chuàng)建的,叫做 called [http://www.ilfilosofo.com/blog/wp-db-backup WordPress 數(shù)據(jù)庫備份]. 它與WordPress 2.0綁定,但是現(xiàn)在不包括在WordPress 2.1中了。 | [http://www.ilfilosofo.com/ Austin Matzko] 維持了一個 [[WordPress:Plugins|WordPress 插件]] ,最初是[http://www.skippy.net Skippy]創(chuàng)建的,叫做 called [http://www.ilfilosofo.com/blog/wp-db-backup WordPress 數(shù)據(jù)庫備份]. 它與WordPress 2.0綁定,但是現(xiàn)在不包括在WordPress 2.1中了。 | ||
===Install the Plugin=== | |||
# If you do download the plugin, follow the directions in the ''wp-db-backup.txt'' file to install the plugin correctly. | |||
===安裝插件=== | ===安裝插件=== | ||
# 如果你下載了這個插件,按照''wp-db-backup.txt'' 文件中的說明正確安裝插件. | # 如果你下載了這個插件,按照''wp-db-backup.txt'' 文件中的說明正確安裝插件. | ||
=== Activate the Plugin === | |||
# Make sure the <tt>wp-content</tt> folder is [[WordPress:Changing_File_Permissions|writeable]] by your server (change its CHMOD) | |||
# Go to your? [[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Plugins|Plugins]] > [[WordPress:Managing_Plugins|Plugins Panel]] and activate the plug-in | |||
=== 激活插件 === | === 激活插件 === | ||
# 確定<tt>wp-content</tt> 文件夾是通過你的服務(wù)器 [[WordPress:Changing_File_Permissions|可寫入的]] (更改 CHMOD) | # 確定<tt>wp-content</tt> 文件夾是通過你的服務(wù)器 [[WordPress:Changing_File_Permissions|可寫入的]] (更改 CHMOD) | ||
# 進(jìn)入[[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Plugins|Plugins]] > [[WordPress:Managing_Plugins|Plugins Panel]] 激活插件。 | # 進(jìn)入[[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Plugins|Plugins]] > [[WordPress:Managing_Plugins|Plugins Panel]] 激活插件。 | ||
===Backing up=== | |||
# Navigate to [[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Backup|Manage]] > [[WordPress:Manage_Backup_SubPanel|Backup Panel]] | |||
# Select any tables, in addition to the core WordPress tables, that should be backed-up.? Select the Backup Options; the backup can be saved on the server, downloaded, or emailed.? Finally, click on the Backup button to actually perform the backup.? If you have installed the [http://www.skippy.net/blog/category/wordpress/plugins/wp-cron/ WP-Cron plugin], you can schedule daily backups. | |||
===備份=== | ===備份=== | ||
# 進(jìn)入[[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Backup|Manage]] > [[WordPress:Manage_Backup_SubPanel|Backup Panel]] | # 進(jìn)入[[WordPress:Administration_Panels|Administration]] > [[WordPress:Administration_Panels#Backup|Manage]] > [[WordPress:Manage_Backup_SubPanel|Backup Panel]] | ||
# 選擇任何表格, 除了核心WordPress表格, 都應(yīng)該被備份.? | # 選擇任何表格, 除了核心WordPress表格, 都應(yīng)該被備份.? 選擇備 Backup操作; 備份會被保存到服務(wù)器上,下載或者被郵寄. 最后, 點(diǎn)擊Backup按鈕來執(zhí)行備份。如果你安裝了[http://www.skippy.net/blog/category/wordpress/plugins/wp-cron/ WP-Cron 插件], 你可以設(shè)置每日備份. | ||
? | |||
=== Restoring the Data=== | |||
The file created is a standard SQL file. If you want information about how to upload that file, look at [[WordPress:Restoring Your Database From Backup]]. | |||
=== 恢復(fù)數(shù)據(jù)=== | === 恢復(fù)數(shù)據(jù)=== | ||
創(chuàng)建的文件是標(biāo)準(zhǔn)的 SQL 文件. 如果你想知道如何上傳文件,參見[[WordPress:Restoring Your Database From Backup|從備份中恢復(fù)數(shù)據(jù)]]. | 創(chuàng)建的文件是標(biāo)準(zhǔn)的 SQL 文件. 如果你想知道如何上傳文件,參見[[WordPress:Restoring Your Database From Backup|從備份中恢復(fù)數(shù)據(jù)]]. | ||
== Using CocoaMySQL == | |||
[http://cocoamysql.sourceforge.net CocoaMySQL] is a free MySQL client for Mac OS X. | |||
Open your database from CocoaMySQL and choose <strong>File → Export → MySQL file…</strong>, and check these options: | |||
* Add drop table | |||
* Add create table | |||
* Add table content | |||
[[WordPress:Image:cocoamysql_export_dialog.png]] | |||
== 使用 CocoaMySQL == | == 使用 CocoaMySQL == | ||
第170行: | 第346行: | ||
[[WordPress:Image:cocoamysql_export_dialog.png]] | [[WordPress:Image:cocoamysql_export_dialog.png]] | ||
== Resources and Backup Plugins == | |||
* [[WordPress:Backup WPMU|Backup at its elementary level]] | |||
* [http://www.clearpointsystems.com/wp04/?page_id=18 How to backup and restore a WordPress database] | |||
* [[WordPress:Plugins/BackUpWordPress]] for automated backups. | |||
* [http://www.ilfilosofo.com/blog/wp-db-backup WordPress Database Backup Plugin] | |||
* [http://www.quickonlinetips.com/archives/2007/06/reduce-database-backup-size-delete-akismet-blocked-spam/ Reduce Database Backup Size: Delete Akismet Spam] | |||
== 資源和備份插件 == | == 資源和備份插件 == |