Changes between Version 30 and Version 31 of LiveServer


Ignore:
Timestamp:
07/30/10 14:41:21 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LiveServer

    v30 v31  
    77 
    88The migration from the [http://atrium.transitiontoday.org/dev/book/live-server old live server] to the new one is being tracked on ticket #97. 
     9 
     10== Backups == 
     11 
     12=== Mysql === 
     13 
     14The gaia script for backing up the Mysql databases is /root/sbin/mysql_backup_daily.sh and it contains: 
     15 
     16{{{ 
     17#!/bin/sh 
     18BACKUP=/var/backups/mysql_backup.`date +%a`.sql.gz 
     19/usr/local/bin/mysqldump -h localhost -u root -pXXX --all-databases | /usr/bin/gzip -c > $BACKUP 
     20 
     21# backup to the development server, kiwi.webarch.net see ~/.ssh/config 
     22scp $BACKUP kiwi:new-live-data/var/backups/ 
     23}}} 
     24 
     25And /root/.ssh/config contains: 
     26 
     27{{{ 
     28Host kiwi 
     29  User live 
     30  Hostname kiwi.webarch.net 
     31}}} 
     32 
     33And the backups are written to /home/live/new-live-data/var/backups on wiki.webarch.net 
     34 
    935== Cron == 
    1036