Business, suitecrm, Technology, Tutorial, Ubuntu

How to Back Up your SuiteCRM Stuff on Ubuntu Server

Been a big fan and user of SuiteCRM for years. Never really did learn how to properly back up from my own server so yeah. Time to do it!

Backing up your SuiteCRM MYSQL Database

This is not for saving the files (ie. the custom settings you have made to SuiteCRM over the years and all the PDF templates, workflows, etc). This is just a raw datadump of the database. Be sure also to back up the suitecrm app files as a separate step (to be documented)

  1. ssh into the server with the usual ssh username@123.123.123.123
  2. cd to a location where you would like to back things up. I’ll just do the home directory for mine:
    cd ~
  3. Create a directory into which your backup will go. I will do example in home directory with directory name ‘suitecrm_backups’:
    mkdir suitecrm_backups
  4. CD into this new directory:
    cd suitecrm_backups
  5. Perform this command inserting the appropriate data:
    mysqldump -u admin_user -p suitecrm_DB_name > suitecrm_backup_yymmdd.sql

If you happen to forget the name of your database, you can log into mysql with your user/pw and use this command to show all databases. Login mysql -u admin_user -p and then show the databases with show databases;

  1. After the quality dump, look inside directory to make sure it’s all there and looking good:
    ls -al | grep suitecrm_backups
  2. Great! Now you’ll have to go and get that file off your server and you can skip to the ‘Retrieving Your Backed-up Files’ section below to do that now if you’d like.

Special thanks to this blog

Backing up your SuiteCRM Files

Now that you have your mysql database is backed up, create a file on your server where the soon-to-be backed-up SuiteCRM-specific files will go. It must be writable by the SuiteCRM user so I put mine right in the SuiteCRM folder in var/www/html/suitecrm’, although not sure if that’s a good idea. I’m just not smart enough to know but it did work. I’m pretty sure this folder would not make it through an upgrade, though, so we’d have to back up just before the upgrade and then re-create it after, I’m guesssing.

  1. Navigate to a good place: cd / var/www/html/suitecrm
  2. Make the backup directory: mkdir suite_backups
  3. Give directory correct permissions:
    sudo chown -R www-data:www-data /var/www/html/suitecrm/suite_backups
    sudo chmod -R 755 /var/www/html/suitecrm/suite_backups
  4. In the Suitecrm user interface, go to ‘Admin / Backups’
  5. Enter the path to the directory you just made in step 2 in the ‘directory’ field. Mine looks like this with the ‘var’: /var/www/html/suitecrm/suite_backups
  6. Enter the name of the file you want to call the zip file (ie. suitecrm_backup_yymmdd.zip) NOTE it seems that the system does not append the .zip so you have to make sure to manually enter it in this field.
  7. Confirm your settings. If it’s good you will be able to press ‘Run Backups’ button otherwise you’ll be told what is wrong.
  8. Press “Run Backups”
  9. If everything worked well it will tell you it was done correctly and sitting in the folder.
  10. Check to make sure it’s there with ls -al
  11. All good? Go ahead and download it using the cool sftp tool in the “Retrieving Your Backed-up Files” section below.

Retrieving Your Backed-up Files

  1. Open new terminal window on your local machine if you are like me and already logged into your suite machine in the original window above.
  2. In your new terminal window, navigate to where you want the backup files to end up. If you do nothing, they will end up in your HOme directory, but this is the one slightly weird thing to me. You can’t really change this later so do it now for simplicity, or at least note all your stuff will end up in your home directory.
  3. Log into the server in nearly identical way as ssh: sftp user@123.123.123.123 and enter password when prompted
  4. Navigate to your file using your familiar cd and ls commands. So easy. In fact, just like ubuntu terminal navigation…
  5. When you track down your desired file, do a get filename.zip and wait. You should see some ‘fetching’ comments and then it will end. Check to make sure you have it.

Hope this all helps. Thanks to the team at SuiteCRM.

Tagged , , ,

1 thought on “How to Back Up your SuiteCRM Stuff on Ubuntu Server

  1. Thanks for the article. I use WHM/ CPanel on a VPS. Is it the same, its linux server I believe? I currently run backups of the entire WHM and each CPanel a couple times a week. It produces a tar files of all the DB / SQL files, server files etc. I can do a restore if need be with that. Its kind of a headache though. Recently had an issue and did just that. Daily backups would be better, but eats up the server space. Just need a better solution.
    Saw your post: https://community.suitecrm.com/t/how-to-do-a-backup-tutorial/30746

    Did you Consider the plugin from that guy from the Outright store? Name was Ashish. What about that free one?

Leave a Reply

Your email address will not be published. Required fields are marked *