L LurkerLou Active member Jan 15, 2014 #1 When backing up the database would I want to select "Complete Inserts," and/or "Extended Inserts?" These are the options I currently use to backup the database. Do they all look correct?
When backing up the database would I want to select "Complete Inserts," and/or "Extended Inserts?" These are the options I currently use to backup the database. Do they all look correct?
ForestForTrees Well-known member Jan 15, 2014 #2 Dunno, but this worked well for me: http://xenforo.com/community/resources/how-to-backup-and-restore-your-forum-linux-windows.359/ Upvote 0 Downvote
Dunno, but this worked well for me: http://xenforo.com/community/resources/how-to-backup-and-restore-your-forum-linux-windows.359/
P Paul B XenForo moderator Staff member Jan 15, 2014 #3 When doing it on localhost via phpMyAdmin I just leave it at the defaults. When doing it via SSH I use this: Code: mysqldump -u<user> -p<password> --single-transaction --skip-lock-tables <db-name> > /path/to/backup/<db-name>_$(date +%d.%m.%y).sql Upvote 0 Downvote
When doing it on localhost via phpMyAdmin I just leave it at the defaults. When doing it via SSH I use this: Code: mysqldump -u<user> -p<password> --single-transaction --skip-lock-tables <db-name> > /path/to/backup/<db-name>_$(date +%d.%m.%y).sql
AndyB Well-known member Jan 15, 2014 #4 I suggest you don't use phpMyAdmin to backup your server. Use mysqldump as it's the only reliable method IMHO. Upvote 0 Downvote
I suggest you don't use phpMyAdmin to backup your server. Use mysqldump as it's the only reliable method IMHO.
A Andy.N Well-known member Jan 30, 2014 #6 RoldanLT said: Sypex is the best Click to expand... which version are you using? Are they working with 1.3.0? Upvote 0 Downvote
RoldanLT said: Sypex is the best Click to expand... which version are you using? Are they working with 1.3.0?
R rdn Well-known member Jan 30, 2014 #7 Andy.N said: which version are you using? Are they working with 1.3.0? Click to expand... Just using the recent version v2.0.11, I don't have any idea about 1.3.0 Upvote 0 Downvote
Andy.N said: which version are you using? Are they working with 1.3.0? Click to expand... Just using the recent version v2.0.11, I don't have any idea about 1.3.0
A Andy.N Well-known member Jan 30, 2014 #8 RoldanLT said: Just using the recent version v2.0.11, I don't have any idea about 1.3.0 Click to expand... I mean XF 1.3.0 beta. Are they working fine? How are you backing up? daily to the server and ftp it somewhere else? Upvote 0 Downvote
RoldanLT said: Just using the recent version v2.0.11, I don't have any idea about 1.3.0 Click to expand... I mean XF 1.3.0 beta. Are they working fine? How are you backing up? daily to the server and ftp it somewhere else?
R rdn Well-known member Jan 30, 2014 #9 Andy.N said: I mean XF 1.3.0 beta. Are they working fine? How are you backing up? daily to the server and ftp it somewhere else? Click to expand... Yes I'm using XF 1.3.0 My Database size is almost 2GB (1.8GB to be specific) Yes it works fine. I'm backing up it manually, you may create a cron to backup your database using another server, with this: http://sypex.net/en/products/dumper/docs/ in unix systems: /usr/local/bin/php /absolute_path_to_dumper/index.php -j=my_job Click to expand... Upvote 0 Downvote
Andy.N said: I mean XF 1.3.0 beta. Are they working fine? How are you backing up? daily to the server and ftp it somewhere else? Click to expand... Yes I'm using XF 1.3.0 My Database size is almost 2GB (1.8GB to be specific) Yes it works fine. I'm backing up it manually, you may create a cron to backup your database using another server, with this: http://sypex.net/en/products/dumper/docs/ in unix systems: /usr/local/bin/php /absolute_path_to_dumper/index.php -j=my_job Click to expand...