ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. backup
    Log in to post
    • All categories
    • OksanaO

      StarWind Success Story: Algenol Biotech augments reliability in a backup process

      Starwind
      • starwind vtl hyper-v backup • • Oksana
      1
      1
      Votes
      1
      Posts
      297
      Views

      No one has replied

    • JaredBuschJ

      Solved Cleanup script help

      IT Discussion
      • scripting backup • • JaredBusch
      7
      1
      Votes
      7
      Posts
      415
      Views

      JaredBuschJ

      ok this is what I came up with.

      #!/bin/bash # Send everything to logs and screen. exec 1> >(logger -s -t $(basename $0)) 2>&1 # Variables and descriptions of their use. # Array of dates found in the filename of the backup files. arrDates=() # Number of full backup sets to keep. keep=4 # How many full backup sets have been found. found=0 # Bas path to the backup files, minus the last folder. base="/home/jbusch/" # Full path to the backup files, populated by the script. path="" # This script requires that the final folder name be passed as a paramter. # This is because it is designed to be ran independently for each subfolder. # ex: ./file_cleanup.sh Hartford # ex: ./file_cleanup.sh Seymour #check for the path to be passed if [ ! -z "$1" ] then # Create the full path to be checked based on the passed parameter. path=$base$1 else exit 127 fi printf "Executing cleanup of backup files located in $path.\n" # Loop through all of the files in the path and parse out an array of the file dates from the file names. # All backups are named `backup-0000001-YYYYMMDD-XXXX*`. cd $path for f in backup-* do # The date is from character 15 for 8 characters. arrDates=("${arrDates[@]}" "${f:15:8}") done cd ~ # Sort in reverse order and only show unique dates. arrDates=($(printf '%s\n' "${arrDates[@]}" | sort -ru)) # Loop through the array of dates and check for there to be 4 files for each date. for checkdate in "${arrDates[@]}" do count=$(find "$path"/backup-0000001-"$checkdate"-* -type f -printf '.' | wc -c) if [ $count -eq 4 ] && [ $found -lt $keep ] then found=$((found+1)) printf "Checking $checkdate, we found $count files. We are keeping this date, currently we have $found dates saved.\n" elif [ $count -gt 0 ] && [ ! $count -eq 4 ] then printf "Incorrect number of files '('$count')' found, removing invalid backup dated $checkdate.\n" rm $path/backup-*-$checkdate-* elif [ $count -gt 0 ] && [ $found -eq $keep ] then printf "We have already found $keep full sets of backup files. Removing backup files dated $checkdate.\n" rm $path/backup-*-$checkdate-* else printf "The date $checkdate returned $count files. This is an unhandled scenario, doing nothing.\n" fi done

      output look like this

      [jbusch@dt-jared FTPTest]$ ./file_cleanup.sh FTPTest <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200107, we found 4 files. We are keeping this date, currently we have 1 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200105, we found 4 files. We are keeping this date, currently we have 2 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200104, we found 4 files. We are keeping this date, currently we have 3 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: Checking 20200103, we found 4 files. We are keeping this date, currently we have 4 dates saved. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20200102. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20191230. <13>Jan 7 16:51:59 file_cleanup.sh: We have already found 4 full sets of backup files. Removing backup files dated 20191228.
    • OksanaO

      StarWind Command Center Changing the Game in HCI Management

      Starwind
      • hyperconverged infrastructure hyperconverged starwind backup hci • • Oksana
      1
      1
      Votes
      1
      Posts
      358
      Views

      No one has replied

    • scottalanmillerS

      One Time, Non-Image, Windows Backup Client

      IT Discussion
      • backup disaster recovery windows server 2016 • • scottalanmiller
      89
      1
      Votes
      89
      Posts
      7.3k
      Views

      scottalanmillerS

      @Emad-R said in One Time, Non-Image, Windows Backup Client:

      @scottalanmiller said in One Time, Non-Image, Windows Backup Client:

      @Emad-R said in One Time, Non-Image, Windows Backup Client:

      better to use it on another VM close to that VM

      No other VM. If we open the only other VM, ESXi can't work. So that tool, I'd expect, couldn't actually run.

      Oh you can run it from any where, as long as you can ping the ESXi or reach it. but i prefer a VM cause its faster

      I see. That was a problem for us because we couldn't transfer off of the server, their network wasn't fast enough 😞

    • DustinB3403D

      How do you get your departments to quantify what they actually need for their jobs

      IT Discussion
      • departments planning scheduling storage servers backup backup and disaster recovery • • DustinB3403
      82
      1
      Votes
      82
      Posts
      7.9k
      Views

      scottalanmillerS

      @pmoncho said in How do you get your departments to quantify what they actually need for their jobs:

      Your more than welcome to dive into https://issurvivor.com/ and search his archives

      His only mention of MSP is from Nov, 2000 when he discovered the term. And he talks about ASPs as well. I had started my first of both, over a hear before he heard the terms 🙂

      https://issurvivor.com/2000/11/20/trend-overload-first-appeared-in-infoworld/

      It really was a new term at the time. But he acts like the concept was new. It was very tried and true in the 1990s. It's an ancient article, just funny that in late 2000 he was thinking that MSPs were some hot, new thing, lol.

    • FATeknollogeeF

      UNMS backup question

      IT Discussion
      • unms edgerouter backup configuration management edgeos • • FATeknollogee
      7
      0
      Votes
      7
      Posts
      1.2k
      Views

      JaredBuschJ

      @FATeknollogee said in UNMS backup question:

      @JaredBusch said in UNMS backup question:

      If you want to restore an individual unit, that process is already built into the system so what are you trying to get exported?

      I'm just asking for info purposes in case of a future restore.

      You can download a specific device backup from within UNMS. When you do so, it asks you if you want one for restoring to the same system or a different system (because of the UNMS key negotiation).

    • OksanaO

      StarWind Success Story: CIPTI solves its backup problem

      Starwind
      • hyperv backup vsan shared storage • • Oksana
      2
      1
      Votes
      2
      Posts
      329
      Views

      B

      That resource library is really light on content. How did StarWind Virtual SAN solve their manual backup problem?

      "High performance and data high availability (HA) were not the only benefits for the company, meaning StarWind support t hat continues to solve the problems with ease."

      Is having to contact support for problems with the VSAN another benefit?

      It might as well say:
      Problem: Company needs to make a stew.
      Solution: Company bought a pot.

    • 1

      Veeam with NetApp?

      IT Discussion
      • netapp veeam backup storage raid 4 raid-dp • • 1337
      9
      1
      Votes
      9
      Posts
      823
      Views

      scottalanmillerS

      @StorageNinja said in Veeam with NetApp?:

      Netapp E-Series is the same as the old Dell MD36xxx or the LSI enginio code base (IBM also sold a similar low-end modular array). These things were wicked fast/cost-effective at streaming workloads (got used for Lustre clusters a lot as the DAS on the nodes). Dell's abandoned reselling them for Seagate (Dothill) but they still around

      Not wicked fast compared to building your own. And the staggering lack of internal support if anything goes wrong is a big deal... storage is one of those things you want to have work, especially at these price ranges. Having been a NetApp customer, I know that their support is helpless when it comes to trying to do high performance, their crap just falls over and so do their engineers.

    • DustinB3403D

      Solved Using Rclone from a server to backup multiple volumes from different SSH hosts

      IT Discussion
      • rclone b2 backup automation users • • DustinB3403
      20
      2
      Votes
      20
      Posts
      1.3k
      Views

      DustinB3403D

      Worth noting on this that while sync works, copy is the much safer option.

      So

      rclone copy source:/path dest:/path is what I'll likely end up using. In any case, the resulting solution still works.

      Still need to tweak OSX a bit as it seems to kill the SSH session after some time for sporadic reasons - still testing but I may end up having to add ServerAliveInterval 120 to /etc/ssh/ssh_config to resolve that issue.

    • J

      Duplicati Retention Policy, which do YOU choose?

      IT Discussion
      • duplicati backup retention • • JasGot
      6
      1
      Votes
      6
      Posts
      1.1k
      Views

      scottalanmillerS

      @IRJ said in Duplicati Retention Policy, which do YOU choose?:

      @JasGot said in Duplicati Retention Policy, which do YOU choose?:

      The options are:
      Keep all backups
      Delete Backups older than
      Keep a Specific number of backups
      Smart backup retention
      Custom

      Which do you use and why? I am interested in your choice and why you choose it.

      Generally NO longer than legally required. Unless the legal requirement is something really lax. You generally dont want to keep data for longer than 7 years in any circumstance where there is no legal requirement, because you can become legally obligated to share data in a court case or something of that sort.

      Exactly. Desired retention is more like 6 months. Only legal requirements make us go longer.

    • OksanaO

      Need an upgrade? Ask StarWind!

      Starwind
      • hca vsan starwind backup hardware • • Oksana
      1
      2
      Votes
      1
      Posts
      217
      Views

      No one has replied

    • OksanaO

      Staying ahead of the pack: Improve your IT environment

      Starwind
      • high availability fault tolerance disaster recovery backup • • Oksana
      1
      1
      Votes
      1
      Posts
      301
      Views

      No one has replied

    • brandon220B

      Backup Target for Linux

      IT Discussion
      • fedora fedora 30 linux backup nas readynas disaster recovery rsync • • brandon220
      15
      1
      Votes
      15
      Posts
      1.2k
      Views

      travisdh1T

      I've been using Duplicati where I need a standalone backup of a thing. Web based management interface makes it super simple to manage.

    • steveS

      Backup and Recovery - CompTIA Network+ N10-007 Prof. Messer

      Training
      • network+ certification comptia prof messer backup disaster recovery dr youtube video training it training it career • • steve
      1
      1
      Votes
      1
      Posts
      532
      Views

      No one has replied

    • OksanaO

      Watch StarWind video and improve backup strategy with cloud object storage

      Starwind
      • backup software public cloud • • Oksana
      1
      1
      Votes
      1
      Posts
      325
      Views

      No one has replied

    • OksanaO

      Scale-Out Backup Repository (SOBR) with two tiers – Fact or fiction?

      Starwind
      • veeam backup microsoft azure • • Oksana
      1
      1
      Votes
      1
      Posts
      202
      Views

      No one has replied

    • OksanaO

      StarWind Success Story: Daikin optimizes its IT infrastructure by 70%

      Starwind
      • starwind high availability storage backup hyper-v • • Oksana
      1
      1
      Votes
      1
      Posts
      221
      Views

      No one has replied

    • OksanaO

      StarWind Success Story: Neuron Computer Services freed of costly manual backups

      Starwind
      • backup cloud storage starwind • • Oksana
      1
      1
      Votes
      1
      Posts
      294
      Views

      No one has replied

    • OksanaO

      VeeamON 2019: Insight on the status of tape libraries today from StarWind

      Starwind
      • cloud veeamon starwind backup • • Oksana
      1
      1
      Votes
      1
      Posts
      335
      Views

      No one has replied

    • OksanaO

      How to store backups in the simplest & cost-effective way? Watch StarWind video

      News
      • wasabi cloud storage 3-2-1 backup rule starwind backup • • Oksana
      1
      2
      Votes
      1
      Posts
      360
      Views

      No one has replied

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 14
    • 15
    • 6 / 15