Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 Good day, Salem. My apologies for taking so long to reply to your suggestion. I refactored my code to read the contents of the tar.bz2 file and then pass them as a file-like object to the 'put_object' and also to change the content type for the file transfer to "application/octet-stream". The first was sent through to object storage … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem I don't understand why you need to extract all the files from the compressed `tar.bz2` just to upload to a backup. Also, line 69 is now meaningless having just posted only a snippet of the code. Before the error, what was the last `logger.info` message? How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 …obj1 = 'object_netbox_2024-03-16.psql.gz' container = 'netbox-backups' try: resp_headers = swift_conn.head_object(container, obj1) print("…obj2 = 'object_netbox_media_2024-03-16.tar.bz2' container = 'netbox-backups' try: resp_headers = swift_conn.head_object(container, obj2) print("… Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c -f foo.tar.bz2 foo_1.txt foo_2.txt… Rsync Encrypted Backups Hardware and Software Linux and Unix by bsimms86 … box serving as a network repository for daily workstation backups for our HQ office. Throughout the day the Win7…, two places). Cobian has an option for encrypting the backups, which is great, but rsyncing encrypted files doesn't …handle this sort of situation? Does anyone store numerous encrypted backups offsite? If so, how do you get them there… need help w/ CRON job for backups Hardware and Software Linux and Unix by jeffstev … MYSQL databases for phpBB2 that I need to do daily backups of - my last host crashed and burned and I lost… *EVERYTHING*, even tho they swore they were doing backups of everything. The moral of that story is "Never… trust anyone to do backups for you..." anyway, I keep hearing about "oh… Systems Backups As Easy As ABC... Hardware and Software Microsoft Windows by rtginc … of having a system backup for a security purpose.System Backups is the best way to have our data even in… save it from major damage in that cases too data backups helps a lot to restore your important data after rebooting… one another effective and hitech way to have you data backups.These are paid services provide by some sites specially working… Re: Rsync Encrypted Backups Hardware and Software Linux and Unix by bsimms86 …. Good suggestion, though--it should work great for linux server backups. Re: Rsync Encrypted Backups Hardware and Software Linux and Unix by mike_2000_17 … should not have any access to the other samba directories (backups for other users). Then, you have, on the samba server… Can you save your data backups from the wrath of ransomware? Hardware and Software Information Security by happygeek …that backup, backup, backup was the best mitigation. Data backups are, of course, an important part of any business… continuity strategy. However, what happens when your backups are also encrypted by ransomware? There are variants out… ransom demands until they have been successfully encrypting backups in the background for a few weeks and … Re: Problems restoring mysql database backups Programming Databases by Aigini … have been using the automysqlbackup.sh.2.5 to create backups daily using the crontab.] But the error returned was : [QUOTE…. So I assume that the problem is in the database backups itself. Is it because the backup script is not good… enough or what is causing the problem with the backups? Are the database… Re: need help w/ CRON job for backups Hardware and Software Linux and Unix by jeffstev … and would rather not have to remember to do manual backups. I have shell access to the db directory and have… Re: need help w/ CRON job for backups Hardware and Software Linux and Unix by papayiya … and would rather not have to remember to do manual backups. I have shell access to the db directory and have… MySQL Database Backups Programming Databases by bobby08 … don't know how to make automatic database backups. I would love to make backups every 3 days or so. Perhaps 3… Re: MySQL Database Backups Programming Databases by sn4rf3r … don't know how to make automatic database backups. I would love to make backups every 3 days or so. Perhaps 3… Re: Systems Backups As Easy As ABC... Hardware and Software Microsoft Windows by DimaYasny Tape backups are the way to go. modern tapes are as large as hard drives, and cost less. wish it was different though, I don't enjoy working with tape libraries at all Multiple backups in a single file Programming Databases by SorinX … have a single file with multiple backups in it. Is there a way to separate backups within this file and to extract… Re: Multiple backups in a single file Programming Databases by danmartin1969 … have a single file with multiple backups in it. Is there a way to separate backups within this file and to extract… Re: Multiple backups in a single file Programming Databases by SorinX … but I have already resolved that issue for the future backups. I have created an automated task that puts all… backups into an archive and adds the date to the name … Re: Problems restoring mysql database backups Programming Databases by Aigini …. I know this because I am unable to restore the backups using neither the command line nor phpMyAdmin. I am returned… restore. Pls give me a solution to repair the corrupted backups. Tqs. Disk vs Tape backups Hardware and Software Hardware by Squires …=http://www.windowsecurity.com/articles/Disk-Based-Backup.html]Disk Backups[/URL] I've never had to extensive backing up myself… Re: Disk vs Tape backups Hardware and Software Hardware by Thong_Ispector I use both hard drives and dvd's. Because HD's are a mechanical device I use them for daily backups but still do regular DVD burns. Nero 6 does great multi DVD backup sets DvD Backups not Recognized Hardware and Software Hardware by Duki … an engineering company as the ITT. We have to maintain backups incase of some sort of issue so that we can… Power backups Hardware and Software Hardware by dewabo … two computers and both of them are on aN APC Backups pack. They allow me enough time to turn off the… Re: Power backups Hardware and Software Hardware by dcc The "Backups" is called a UPS, Uninterruptible Power Supply. Care to tell us how you determined the proper Volt-Amp size you needed for your computer? mysql backups.. help me i u know... Programming Databases by sankar62 what r the types of mysql backups..>?.. please explain.. what is meant by [COLOR="Red"][B]point in backup[/B][/COLOR]??? Re: mysql backups.. help me i u know... Programming Databases by varmadba we don't have all those full,differential type of backups in Mysql you can use Mysqldump utility or Mysql Administrator to get DB backup some other backup ways : Backup Bin Log (if bin logging is enabled) Backup Mysql Data Folder etc point in recovery is the ability to recover database to any specific point of time Problems restoring mysql database backups Programming Databases by Aigini … command : [QUOTE]mysql -h localhost -u root -proot123 info < /backups/daily/cyberview_db_2809/cyberview_db_2809_2009-10-27_17h30m.Tuesday.sql[/QUOTE] but there… multi generation daily file backups Programming Software Development by Jeramy … month by 15 since I only need 2 weeks of backups if [ "$day" > "15" ]; then day… Re: multi generation daily file backups Programming Software Development by Beat_Slayer Your code will only run on linux. It looks more like a bash script then a python code. I just don't get if they are multiple files to copy and if it is to copy every day or id it only 15 of all the backups that there exist.