Backup script for ISPConfig 3

Discussion in 'Tips/Tricks/Mods' started by datahellas, Mar 6, 2010.

  1. datahellas

    datahellas New Member

    I needed a backup script for ISPConfig 3. I found this one by go0ogl3 but it was not exactly what I needed. I needed to backup the databases and only the clients/clientX/webX/ directories for each web site on the server. So I created a shell script for backup (not restore) that it is very simple but works excellent (at least on my server).

    The script will take a daily backup and a weekly backup. The daily backup is being refreshed everyday while the weekly backup every Sunday. The weekly backup is the last daily backup taken (Saturday's backup).

    Link to the script:
    ISPConfig3 backup script


    Rename it to ispc3backup.sh and chmod to 777 before you use it.
    Open the file and set the variables in the very beginning (BACKUPDIR, CLIENTSDIR, DBUSER, DBPASS).
    Install a crontab like the following to run it daily:

    30 04 * * * /backup/ispc3backup.sh &> /dev/null

    The script will put backups into these dirs:
    BACKUPDIR/db/daily/
    BACKUPDIR/db/weekly/
    BACKUPDIR/webs/daily/
    BACKUPDIR/webs/weekly/


    I don't provide any support for this script. If you like it, use it.
    Greetings from the Elxis CMS Team.
     
    Last edited: Mar 6, 2010
  2. ikrudolf

    ikrudolf Member

    What's the correct procedure to restore the files?

    One question more. It asks for "TAR=`which tar` # name and location of tar". What should I use here? (I use Ubuntu 9.04)

    Rudolf.
     
    Last edited: Apr 11, 2010
  3. yoplait

    yoplait Member

    The "which tar" commande will say to the $TAR variable where is your tar command ... Don't bother about this (i think..)
     
  4. yanger

    yanger New Member

    changed `which tar` to /usr/bin/nice -3 /bin/tar so that it doesn't clobber the CPU load :] not that i think it really needs it, but depending on how heavy your server gets, this may be "nicer"..

    also, any way to backup postfix and ispconfig3 settings without going through the whole ispconfig3 configuration?
     
  5. helly88

    helly88 Member

    Does the script still work? I'm running Centos 5.x and ISPconfig 3
     
  6. tio289

    tio289 Member

  7. lobius

    lobius Member

    Okay… Dumb question time:

    Do I have to make those directories? Do I have to make them writable?

    Would it be wiser to use chown root:root instead of chmod 777?

     

Share This Page