|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Jul 2006
Location: SplitInfinity.com
Posts: 3,637
|
MySQL Backup - How you do it?
Just tried it with PhpMyAdmin but it seems like the database is a way to big. 300mb++ So the browser times out. Aint got shell access, so is there any other remote tool who can handle this?
|
|
|
|
|
|
#2 |
|
Confirmed IT Professional
Industry Role:
Join Date: Nov 2005
Location: Hollywood, CA
Posts: 3,744
|
easiest way i've found if you have a large database is code your own. you can code one relatively quick with php + mysql commands.
![]()
__________________
The Best Affiliate Software, Ever. |
|
|
|
|
|
#3 |
|
Confirmed User
Join Date: Feb 2002
Location: Las Vegas
Posts: 6,504
|
phpmyadmin should have an export option, 300mb should be fine
if u can get shell access use mysqldump
__________________
112.020.756 |
|
|
|
|
|
#4 |
|
Permanently Gone
Industry Role:
Join Date: Mar 2004
Posts: 10,019
|
That's VERY odd that it times out on 300MB. I exported a 2TB database onto a Webair server, and it was fine.
Lucky I did, too, because the farm (well, only 5 servers, so mini-cluster) at Candid Hosting shit the bed shortly thereafter. Cost me thousands and thousands in downtime and lost data for some of the other sites, but luckily, they gave me .. uh .. $130 back, I think. *grumble* |
|
|
|
|
|
#5 |
|
So Fucking What
Industry Role:
Join Date: Sep 2005
Location: 128579
Posts: 631
|
|
|
|
|
|
|
#6 | |
|
Confirmed User
Join Date: Sep 2003
Posts: 8,713
|
Quote:
__________________
![]() TrafficCashGold Paying Webmasters Since 1996! Awesome Conversions! Fast Weekly Payments! Over 125 Tours! |
|
|
|
|
|
|
#7 |
|
Confirmed User
Join Date: Jun 2005
Location: Irvine, CA
Posts: 2,442
|
if you have shell access, just do mysqldump -u[username] -p -D [databasename] > [databasename].sql
so like mysqldump -uroot -p -D gfy > gfy.sql then it'll ask for root's pass, enter it it'll write a file called gfy.sql, that will include all the commands to recreate the db. gzip it up to make it smaller if u want
__________________
254342256
|
|
|
|
|
|
#8 | |
|
Permanently Gone
Industry Role:
Join Date: Mar 2004
Posts: 10,019
|
Quote:
|
|
|
|
|