Results 1 to 4 of 4

Thread: backup of my VPS

  1. #1
    Join Date
    Jul 2014
    Beans
    340

    Question backup of my VPS

    Hi all,

    How do I perform backup of my VPS ?
    I got VPS with 3 GB space, only 477M left, so I can't archivate all data at VPS.
    What else I can do to perform it?

  2. #2
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: backup of my VPS

    Does your provider offer a backup service?

    Otherwise you should copy anything irreplaceable over to a machine at your home or office. Take a look at: https://help.ubuntu.com/community/rsync
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  3. #3
    Join Date
    Jul 2014
    Beans
    340

    Re: backup of my VPS

    SeijiSensei

    >>> Does your provider offer a backup service?

    Nope

    >>> Otherwise you should copy anything irreplaceable over to a machine at your home or office.

    Yep, trying to do it now in mc using shell-connection.

    >>>Take a look at: https://help.ubuntu.com/community/rsync

    I tried it, but as far as I can see, it allows to copy local data into remote ssh server. I have ssh and public IP address at VPS, but I do not have public IP address at home/office. So it doesn't work for me.

    So I stick to mc+shell-connection now.

    Thanks for your reply.

  4. #4
    Join Date
    Aug 2009
    Location
    Makati City, Philippines
    Beans
    2,269
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: backup of my VPS

    Quote Originally Posted by marchello_lippi2 View Post
    SeijiSensei


    >>>Take a look at: https://help.ubuntu.com/community/rsync

    I tried it, but as far as I can see, it allows to copy local data into remote ssh server. I have ssh and public IP address at VPS, but I do not have public IP address at home/office. So it doesn't work for me.

    Thanks for your reply.
    rsync also allows you to copy from remote server to your local machine.

    Syntax for rsync is: rsync [-options] <source> <destination>

    If you need to from your remote server to your local machine, then just follow the syntax like something below:
    Code:
    rsync -avh --progress username@serverpublicIP:/folder/to/copy /mylocal/folder/backupfolder/

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •