Toggle navigation Home Store Browse All ----- Webhosting Domains Quotation (Webdesign Services) eMail Hosting SEO- Search Engine Optimisation GRAPHIC DESIGN Dedicated/ VPS Webhosting BULKSMS Mobi Applications Website Maintenance Register a New Domain Transfer Domains to Us Announcements Knowledgebase Network Status Affiliates Contact Us Account Login Register ----- Forgot Password? Categories 9 CGI Scripts 34 Databases 28 Dedicated Servers 1 DNS 15 Domains 5 eCommerce 79 eMails 27 FTP 1 General Issues 1 MX Records 1 Nameservers 28 Other 104 Scripting 254 Web Hosting Control Panel 9 Web Resources 8 Web Stats & Logs 11 Web Tools 8 Website Help and Diagnostics 4 Windows Hosting Categories CGI Scripts (9) Databases (34) Dedicated Servers (28) DNS (1) Domains (15) eCommerce (5) eMails (79) FTP (27) General Issues (1) MX Records (1) Nameservers (1) Other (28) Scripting (104) Web Hosting Control Panel (254) Web Resources (9) Web Stats & Logs (8) Web Tools (11) Website Help and Diagnostics (8) Windows Hosting (4) [SQL3.01] How do I backup my MySQL database? Backing up your MySQL database can be done in several ways1. Using the backup tool from the Web Tools section.2. Using phpMyAdmin web interface.3. Using command line through shell access.4. Using MySQL Workbench.(1) Using our backup toolLog into your Hosting cPanel v7.5 Control Panel and click on Web Tools. Click to configure MySQL Databases and click 'Now' under backup database. Save this file to your local machine.(2) Using phpMyAdminLog into your Hosting cPanel v7.5 Control Panel and click on "MySQL Databases". Click on the "Manage" button for the database that you wish to back up, this will start PhpMyAdmin. From here, go to the "Export" page, then complete the following steps:1. Select all tables.2. Select "Structure and data".3. Select "Add drop table" .4. Select "Enclose table and field names with backquotes" .5. Select "Save as file".6. Click the "Go" button.You will be prompted to save the dump file on your computer.(3) Using MySQL command line toolsTo use MySQL command line tools, you will need SSH access to be enabled on your hosting account. You can perform backup using the following command:mysqldump -h servername -u username -p --add-drop-table --create-options --skip-add-locks -e --set-charset --disable-keys -Q databasename > databasedump.sqlTo backup and compress your dump file:mysqldump -h servername -u username -p --add-drop-table --create-options -e --set-charset --skip-add-locks --disable-keys -Q databasename | gzip > databasedump.sql.gzThe commands above will create the dump file in your current directory. You can download this backup file using scp or ftp for your archival purposes. If you perform this command in the public_html directory (or if you move the file into the public_html directory), you will be able to download this file from the web.(4) You can download MySQL Workbench from http://wb.mysql.com/ - this will allow you to connect to the MySQL process on the server directly and create a local backup of the data. Was this answer helpful? Yes No Print this Article Also Read [SQL3.12] How can I connect to a MySQL database through .NET? All Windows shared servers have the Connector/Net 6.0 connector, MySQL's fully managed ADO.Net... [SQL3.10] How do I connect to another database on another server from my PHP script? A connection is made to a database with the usual... [SQL3.08] Is there a graphical interface available for MySQL? MySQL Workbench is a GUI for MySQL - it can be downloaded from http://wb.mysql.com/ . It provides... [SQL3.03] How can I upload my MySQL database? There are numerous ways to upload a MySQL database, we would strongly recommend trying methods 2... [SQL3.09] Common server software requirements All standard Apache modules are installed on the web servers, including mod_rewrite. In addition,... Support My Support Tickets Announcements Knowledgebase Downloads Network Status Open Ticket × Close Title Loading...