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.

E-mail backup file
#24
(08.11.2016, 22:32)baggins Wrote:
(19.10.2016, 17:58)PassivPluss Wrote: I get the following log
*String send mail
*nil
*string revcd alert fatal error

Another way to run this script would be to upload to ftp server. Smile

Hi PassivPluss,

This is an example (for LM4 firmware 20160714) of how to upload to a ftp server:
Code:
--Take a backup and ftp to NAS
-- name of backup file
src = 'backup-' .. os.date('%Y.%m.%d_%H-%M') .. '.tar.gz'
-- where to put backup file on LM
dst = '/home/ftp/' .. src

-- where to put the backup on NAS
target = '<ftpdir>' .. src

-- 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 .. ' ./')


-- load the ftp support
local ftp = require("socket.ftp")
local ltn12 = require("ltn12")

-- ftp to NAS
f, e = ftp.put{
 host = "<ip_address_of_ftp_server>",
 user = "<ftp_user>",
 password = "<ftp_user_pwd>",
 type = "i",
 argument = target,
 source = ltn12.source.file(io.open(dst, "rb"))
 
}
if (e) then
 log (e)
 log (f)
 alert("Could not ftp: ", e, "\n")
end
log("ftp_backup")
 



-- cleanup
os.execute('cd /home/ftp && rm -rf backup_*')
os.execute('cd /lib/genohm-scada/storage && rm -rf user userlib.luas blockly.luas initscript.lua helpers.js genohm-scada.config filter*')

thanks i use it for a small month for now.
it did worked for me for 12 days without problems. after these days, i only get a backup of 0 Bytes.
all is working again, i think there where to big pictures and my export was 25MB.

But after this i didn't saw there is an issue.
My question, is it possible to get an error when the backup is just 0 bytes or below 100kb?
Reply


Messages In This Thread
E-mail backup file - by JMM - 21.09.2016, 16:47
RE: E-mail backup file - by PassivPluss - 18.10.2016, 19:00
RE: E-mail backup file - by PassivPluss - 19.10.2016, 17:58
RE: E-mail backup file - by baggins - 08.11.2016, 22:32
RE: FTP backup file - by Dré - 04.01.2022, 16:07
RE: E-mail backup file - by Dré - 22.03.2022, 14:30
RE: E-mail backup file - by PassivPluss - 26.10.2016, 20:42
RE: E-mail backup file - by npinguin - 15.11.2016, 20:16
RE: E-mail backup file - by admin - 16.11.2016, 07:30
RE: E-mail backup file - by baggins - 16.11.2016, 08:55
RE: E-mail backup file - by admin - 16.11.2016, 09:11
RE: E-mail backup file - by npinguin - 16.11.2016, 18:51
RE: E-mail backup file - by admin - 17.11.2016, 07:21
RE: E-mail backup file - by JMM - 27.07.2017, 15:40
RE: E-mail backup file - by mlaudren - 27.07.2017, 21:55
RE: E-mail backup file - by DGrandes - 15.10.2018, 10:21
RE: E-mail backup file - by Daniel - 15.10.2018, 10:47
RE: E-mail backup file - by DGrandes - 16.10.2018, 07:37
RE: E-mail backup file - by admin - 16.10.2018, 10:26
RE: E-mail backup file - by DGrandes - 16.10.2018, 10:46
RE: E-mail backup file - by pioneersteffen - 31.10.2021, 10:44
RE: E-mail backup file - by Daniel - 01.11.2021, 08:36
RE: E-mail backup file - by pioneersteffen - 02.11.2021, 18:28
RE: E-mail backup file - by admin - 04.01.2022, 16:13
RE: E-mail backup file - by Dré - 04.01.2022, 16:45
RE: E-mail backup file - by icuzz - 09.02.2022, 16:21
RE: E-mail backup file - by admin - 10.02.2022, 08:15
RE: E-mail backup file - by icuzz - 10.02.2022, 12:38
RE: E-mail backup file - by admin - 22.03.2022, 14:31
RE: E-mail backup file - by Dré - 22.03.2022, 15:20
RE: E-mail backup file - by manos@dynamitec - 24.11.2022, 03:01
RE: E-mail backup file - by admin - 24.11.2022, 07:52
RE: E-mail backup file - by manos@dynamitec - 24.11.2022, 09:34
RE: E-mail backup file - by admin - 24.11.2022, 09:38
RE: E-mail backup file - by manos@dynamitec - 25.11.2022, 08:27
RE: E-mail backup file - by admin - 25.11.2022, 15:42
RE: E-mail backup file - by manos@dynamitec - 07.12.2022, 20:01
RE: E-mail backup file - by admin - 08.12.2022, 07:35
RE: E-mail backup file - by manos@dynamitec - 09.12.2022, 12:16

Forum Jump: