This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

backup to FTP every night -sdcard
#1
Hi,
just a question.

I was questionning about doing backup everyday to our ftp of our customer.
Can it be a SDcard killer?

Here some part of our script with archive creation and cleaning file.

Code:
-- prepare files for backup
os.execute('sh /lib/genohm-scada/web/general/backup.sh')


-- create archive
os.execute('cd /lib/genohm-scada/storage && tar -c -z -f ' .. dst .. ' ./')

......
......

-- cleanup
os.execute('cd /home/ftp && rm -rf backup-*')
--os.execute('cd /home/ftp && rm -rf backup_*') --Line 42 is incorrect. It leads to old backups not being removed.
--os.execute('cd /lib/genohm-scada/storage && rm -rf user userlib.luas blockly.luas initscript.lua helpers.js genohm-scada.config filter*')
-----------
FRANCE SMARTHOME & SMARTBUILDING INTEGRATION
SE ECO EXPERT
Reply
#2
Your script is outdated, use this: https://kb.logicmachine.net/scripting/ba...email-ftp/
Reply
#3
ok.
your so quick :-))

So with this scipt no problem to backup everyday

because there is still a temp file created, no ?
path = 'backups/LM-' .. os.date('%Y-%m-%d') .. '.zip'

or backups/ are in memory ?

EDIT:
my mistake path are remote folder
-----------
FRANCE SMARTHOME & SMARTBUILDING INTEGRATION
SE ECO EXPERT
Reply
#4
(20.11.2024, 08:40)admin Wrote: Your script is outdated, use this: https://kb.logicmachine.net/scripting/ba...email-ftp/

Hello Admin
Is it possible to set a master password to the .zip exported file?
Best Regards,
Reply
#5
Replace:
Code:
data = webrequest('general', 'backup')

With:
Code:
data = webrequest('general', 'backup', {
  password = '123456'
})
Reply
#6
many thanks admin
Best Regards,
Reply
#7
Hello Dears
I create a scheduled script for automatic backup.
But I find the recent backup created  with 0kb size!
why could this issue happened while I didn't get any error result.
Best Regards,
Reply
#8
Log what webrequest and ftp.put return:
Code:
webrequest = require('webrequest')
data, err = webrequest('general', 'backup', { password = '123456' })
log(type(data) == 'string' and #data or 'error', err)

res, err = ftp.put({
  host = host,
  user = user,
  password = pass,
  argument = path,
  source = ltn12.source.string(data)
})
log(res, err)
Reply
#9
Hello Admin,
Both return same result
Code:
* arg: 1
  * number: 11578924
* arg: 2
  * nil

Please note that this issue happened once not always, but I want to be notified if the backup generated with 0KB.
I will try and If I succeed reproducing the case I will send you the log result
Best Regards,
Reply
#10
Hello Admin,
I tried several times to replicate the issue but unfortunately I couldn't.
could I use the this line of code if err for notification if this issue happened again 
Code:
type(data) == 'string' and #data or 'error', err
Best Regards,
Reply
#11
Use this for error logging:
Code:
if type(data) ~= 'string' then
  log('backup failed', err)
elseif #data == 0 then
  log('empty backup', err)
end
Reply


Forum Jump: