Reoback Problem
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Reoback Problem
Habe Reoback nach dem HowTo von 1&1 erstellt, wenn ich nun aber Reoback TEste kommt diese meldung ;
Running backup on pxxxxxxxxx.pureserver.info.
Backup number 3 of 14 (backup days x 2)
Performing incremental backup on local system
Last full backup: Wed Jan 29 08:52:55 2003
Archiving in progress...
Dirk
Running backup on pxxxxxxxxx.pureserver.info.
Backup number 3 of 14 (backup days x 2)
Performing incremental backup on local system
Last full backup: Wed Jan 29 08:52:55 2003
Archiving in progress...
Dirk
Last edited by distanzcheck on 2003-01-30 22:48, edited 1 time in total.
-
captaincrunch
- Userprojekt

- Posts: 7066
- Joined: 2002-10-09 14:30
- Location: Dorsten
- Contact:
Re: Reoback Problem
Das ganze findet bestimmte Files nicht, z.B. hier :
bash: Running: command not found
Geh mal das Script durch, und such die die Pfadnamen sämtlicher darin angegebenen Dateien raus, und trag die an die richtigen Stellen ein.
bash: Running: command not found
Geh mal das Script durch, und such die die Pfadnamen sämtlicher darin angegebenen Dateien raus, und trag die an die richtigen Stellen ein.
DebianHowTo
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
welche conf datei meinst du nun speziell ???
Soll ich meine conf mal posten ?
Dirk
Soll ich meine conf mal posten ?
Dirk
-
captaincrunch
- Userprojekt

- Posts: 7066
- Joined: 2002-10-09 14:30
- Location: Dorsten
- Contact:
Re: Reoback Problem
Das hat mit deiner conf wohl wenig zu tun (ich muss hier raten, da ich das Programm nicht kenne).
Ich gehe davon aus, dass Reoback ein einfaches Shell-Script ist, in dem die Pfade zu bestimmten Binaries fest eingetragen sind, und dass diese Pfade nicht passen, und er darum die "file not found"-Fehler rauswirft.
Ich gehe davon aus, dass Reoback ein einfaches Shell-Script ist, in dem die Pfade zu bestimmten Binaries fest eingetragen sind, und dass diese Pfade nicht passen, und er darum die "file not found"-Fehler rauswirft.
DebianHowTo
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
echo "[q]sa[ln0=aln256%Pln256/snlbx]sb729901041524823122snlbxq"|dc
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
habe glaube ich nen fehler gefunden teste es garade, jedenfall passiert nun schonmal mehr!
Dirk
Dirk
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
reicht das in der reobackup.conf ???
############################################################################
# REOBack - files.conf
# $Id: files.conf,v 1.9 2002/03/23 15:24:35 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
############################################################################
#
# This is a list of random files or directories that need to be
# archived as one big tar file. These files will also be selectively
# picked depending on a FULL or incremental backup.
# Comments must start with a "#" as shown
############################################################################
# The following is an example with comments, below it is again without
# 'File:' followed by the name of the tar file that will be created
# Note that we don't include a path as that is added in the settings.conf
File: TestFile1
# Simply list all directories to be recursively backed up (1 per line)
/boot
/etc
/home
/mysqldata
/usr/local
/root
/var
# 'Skip:' followed by any subdirectories you want not to be included
# from the above backup directory
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Note: You can use Perl regular expressions (wild cards) for Skip: For
# example, to skip all files and directories in your home directory that
# start with a dot, you can use:
#
# Skip: /home/myself/..*
#
# Wondering what '..*' does? The leading backslash, '/', tells REOBack
# (actually Perl) to treat the next dot, '.', as a literal dot. The
# third dot tells Perl to match any character, and the asterisk, '*',
# tells Perl to perform the match zero or more times.
# For files to be completely recursively backed up, don't use the 'Skip'
# option. Simple, huh?
/etc
/home/frank
# Note we are starting a new backup file, but don't need to mark the close
# of the previous one
File: TestFile2
/var/www/html
# Note we can also include seperate files, not just directories
/var/www/docs/hugedoc.txt
# Now, here is the full contents without the comments
File: TestFile1
/home/sforge
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
/etc
/home/frank
File: TestFile2
/var/www/html
/var/www/docs/hugedoc.txt
# That's it, no need to mark the close of the file either.
# Be sure to remove, or comment out all these sample lines before runnin############################################################################
# REOBack - files.conf
# $Id: files.conf,v 1.9 2002/03/23 15:24:35 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
############################################################################
#
# This is a list of random files or directories that need to be
# archived as one big tar file. These files will also be selectively
# picked depending on a FULL or incremental backup.
# Comments must start with a "#" as shown
############################################################################
# The following is an example with comments, below it is again without
# 'File:' followed by the name of the tar file that will be created
# Note that we don't include a path as that is added in the settings.conf
File: TestFile1
# Simply list all directories to be recursively backed up (1 per line)
/boot /etc /home /mysqldata /usr/local /root /var
# 'Skip:' followed by any subdirectories you want not to be included
# from the above backup directory
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Note: You can use Perl regular expressions (wild cards) for Skip: For
# example, to skip all files and directories in your home directory that
# start with a dot, you can use:
#
# Skip: /home/myself/..*
#
# Wondering what '..*' does? The leading backslash, '/', tells REOBack
# (actually Perl) to treat the next dot, '.', as a literal dot. The
# third dot tells Perl to match any character, and the asterisk, '*',
# tells Perl to perform the match zero or more times.
# For files to be completely recursively backed up, don't use the 'Skip'
# option. Simple, huh?
/etc
/home/frank
# Note we are starting a new backup file, but don't need to mark the close
# of the previous one
File: TestFile2
/var/www/html
# Note we can also include seperate files, not just directories
/var/www/docs/hugedoc.txt
# Now, here is the full contents without the comments
File: TestFile1
/home/sforge
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
/etc
/home/frank
File: TestFile2
/var/www/html
/var/www/docs/hugedoc.txt
# That's it, no need to mark the close of the file either.
# Be sure to remove, or comment out all these sample lines before running
und settings.conf
############################################################################
# REOBack - settings.conf
# $Id: settings.conf,v 1.8 2002/03/23 21:49:50 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
#
############################################################################
#
# This is the configuration file for REOBack. Note that the default
# configuration file is "settings.cfg". However, you can create your own
# configuration file and pass it as a parameter to the backup program.
# i.e. "./reoback.pl <configfile>"
# Used only as an identifier for this backup. Normally the hostname.
host = p.pureserver.info
# This is the number of days you want to keep backups. Note that the
# actual number of archives kept is "backupdays" times 2. That way, when
# it comes time for auto deletion, you always have a history of
# "backupdays" worth of information.
backupdays = 7
# Definitions of files/directories to backup. See README for format of
# this file.
files = /etc/reoback/files.conf
# Directory to store temporary files generated by REOBack.
tmpdir = /var/lib/reoback/tmp/
# Directory to store data files generated by REOBack. Files created
# here are files used to keep track of FULL/INCREMENTAL backups.
datadir = /var/lib/reoback/data/
# Location of where to keep local backups. Also use as a temporary
# storage of archives for transfer. Keep trailing slash!
localbackup = /var/lib/reoback/backups/
# 1 = Keep local backups, 0 = Do not keep local backups
keeplocalcopy = 1
# 1 = Transfer to remote location, 0 = Do not transfer
remotebackup = 0
# Type of remote backup. FTP or NFS
rbackuptype = FTP
# Only needed if above is set to NFS. Keep trailing slash!
localmount = /mnt/server/
# Required if "remotebackup" is set.
remotehost = HOSTNAMEHERE
# Path to keep backups on remote host. Keep trailing slash!
remotepath = /path here/
#######################################################
# REQUIRED IF TYPE OR REMOTE BACKUP IS FTP.
#######
# Remote user on remote host.
ftpuser = xxxxxxx
# Password for remote xxxx
ftppasswd = xxxxx
######################################################
Oder sollte ich da was ändern ???
Dirk
############################################################################
# REOBack - files.conf
# $Id: files.conf,v 1.9 2002/03/23 15:24:35 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
############################################################################
#
# This is a list of random files or directories that need to be
# archived as one big tar file. These files will also be selectively
# picked depending on a FULL or incremental backup.
# Comments must start with a "#" as shown
############################################################################
# The following is an example with comments, below it is again without
# 'File:' followed by the name of the tar file that will be created
# Note that we don't include a path as that is added in the settings.conf
File: TestFile1
# Simply list all directories to be recursively backed up (1 per line)
/boot
/etc
/home
/mysqldata
/usr/local
/root
/var
# 'Skip:' followed by any subdirectories you want not to be included
# from the above backup directory
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Note: You can use Perl regular expressions (wild cards) for Skip: For
# example, to skip all files and directories in your home directory that
# start with a dot, you can use:
#
# Skip: /home/myself/..*
#
# Wondering what '..*' does? The leading backslash, '/', tells REOBack
# (actually Perl) to treat the next dot, '.', as a literal dot. The
# third dot tells Perl to match any character, and the asterisk, '*',
# tells Perl to perform the match zero or more times.
# For files to be completely recursively backed up, don't use the 'Skip'
# option. Simple, huh?
/etc
/home/frank
# Note we are starting a new backup file, but don't need to mark the close
# of the previous one
File: TestFile2
/var/www/html
# Note we can also include seperate files, not just directories
/var/www/docs/hugedoc.txt
# Now, here is the full contents without the comments
File: TestFile1
/home/sforge
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
/etc
/home/frank
File: TestFile2
/var/www/html
/var/www/docs/hugedoc.txt
# That's it, no need to mark the close of the file either.
# Be sure to remove, or comment out all these sample lines before runnin############################################################################
# REOBack - files.conf
# $Id: files.conf,v 1.9 2002/03/23 15:24:35 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
############################################################################
#
# This is a list of random files or directories that need to be
# archived as one big tar file. These files will also be selectively
# picked depending on a FULL or incremental backup.
# Comments must start with a "#" as shown
############################################################################
# The following is an example with comments, below it is again without
# 'File:' followed by the name of the tar file that will be created
# Note that we don't include a path as that is added in the settings.conf
File: TestFile1
# Simply list all directories to be recursively backed up (1 per line)
/boot /etc /home /mysqldata /usr/local /root /var
# 'Skip:' followed by any subdirectories you want not to be included
# from the above backup directory
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Note: You can use Perl regular expressions (wild cards) for Skip: For
# example, to skip all files and directories in your home directory that
# start with a dot, you can use:
#
# Skip: /home/myself/..*
#
# Wondering what '..*' does? The leading backslash, '/', tells REOBack
# (actually Perl) to treat the next dot, '.', as a literal dot. The
# third dot tells Perl to match any character, and the asterisk, '*',
# tells Perl to perform the match zero or more times.
# For files to be completely recursively backed up, don't use the 'Skip'
# option. Simple, huh?
/etc
/home/frank
# Note we are starting a new backup file, but don't need to mark the close
# of the previous one
File: TestFile2
/var/www/html
# Note we can also include seperate files, not just directories
/var/www/docs/hugedoc.txt
# Now, here is the full contents without the comments
File: TestFile1
/home/sforge
Skip: /home/sforge/backups
Skip: /home/sforge/reoback/data
/etc
/home/frank
File: TestFile2
/var/www/html
/var/www/docs/hugedoc.txt
# That's it, no need to mark the close of the file either.
# Be sure to remove, or comment out all these sample lines before running
und settings.conf
############################################################################
# REOBack - settings.conf
# $Id: settings.conf,v 1.8 2002/03/23 21:49:50 techno91 Exp $
############################################################################
#
# REOBack Simple Backup Solution
# http://sourceforge.net/projects/reoback/
#
# Copyright (c) 2001 Randy Oyarzabal (techno91@users.sourceforge.net)
#
# Other developers and contributors:
# Richard Griswold
# Nate Steffenhagen (frankspikoli@users.sourceforge.net)
#
############################################################################
#
# This is the configuration file for REOBack. Note that the default
# configuration file is "settings.cfg". However, you can create your own
# configuration file and pass it as a parameter to the backup program.
# i.e. "./reoback.pl <configfile>"
# Used only as an identifier for this backup. Normally the hostname.
host = p.pureserver.info
# This is the number of days you want to keep backups. Note that the
# actual number of archives kept is "backupdays" times 2. That way, when
# it comes time for auto deletion, you always have a history of
# "backupdays" worth of information.
backupdays = 7
# Definitions of files/directories to backup. See README for format of
# this file.
files = /etc/reoback/files.conf
# Directory to store temporary files generated by REOBack.
tmpdir = /var/lib/reoback/tmp/
# Directory to store data files generated by REOBack. Files created
# here are files used to keep track of FULL/INCREMENTAL backups.
datadir = /var/lib/reoback/data/
# Location of where to keep local backups. Also use as a temporary
# storage of archives for transfer. Keep trailing slash!
localbackup = /var/lib/reoback/backups/
# 1 = Keep local backups, 0 = Do not keep local backups
keeplocalcopy = 1
# 1 = Transfer to remote location, 0 = Do not transfer
remotebackup = 0
# Type of remote backup. FTP or NFS
rbackuptype = FTP
# Only needed if above is set to NFS. Keep trailing slash!
localmount = /mnt/server/
# Required if "remotebackup" is set.
remotehost = HOSTNAMEHERE
# Path to keep backups on remote host. Keep trailing slash!
remotepath = /path here/
#######################################################
# REQUIRED IF TYPE OR REMOTE BACKUP IS FTP.
#######
# Remote user on remote host.
ftpuser = xxxxxxx
# Password for remote xxxx
ftppasswd = xxxxx
######################################################
Oder sollte ich da was ändern ???
Dirk
Last edited by distanzcheck on 2003-01-30 22:52, edited 1 time in total.
-
Anonymous
Re: Reoback Problem
Hallo distanzcheck,
da solltest du einiges ändern... :P .
zunächst wäre es ganz ratsam, die config-files nach der faq von puretec zu bearbeiten und den ganzen vorgegebenen kram zu löschen. der verweist nämlich auf verzeichnisse, die du sicherlich NICHT hast...
nun kannst du noch die verzeichnisse dazupacken, die zusätzlich gesichert werden sollen.
ausserdem gibts eine homepage zu reoback:
http://reoback.penguinsoup.org/
da gibts auch reichlich infos, readme und installationshilfe. (man sollte nur der englischen sprache mächtig sein. (das sollte aber ja bei rootserver-nutzern eh grundvoraussetzung sein
))
ciao
callum
da solltest du einiges ändern... :P .
zunächst wäre es ganz ratsam, die config-files nach der faq von puretec zu bearbeiten und den ganzen vorgegebenen kram zu löschen. der verweist nämlich auf verzeichnisse, die du sicherlich NICHT hast...
nun kannst du noch die verzeichnisse dazupacken, die zusätzlich gesichert werden sollen.
ausserdem gibts eine homepage zu reoback:
http://reoback.penguinsoup.org/
da gibts auch reichlich infos, readme und installationshilfe. (man sollte nur der englischen sprache mächtig sein. (das sollte aber ja bei rootserver-nutzern eh grundvoraussetzung sein
ciao
callum
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
so habe das nun mal gemacht
meine files.conf
meine settings.conf
so alles richtig ??? oder besser noch mehr ändern und wenn ja was ?
Dirk
meine files.conf
Code: Select all
# Name des Backups
File: Backup
# Verzeichnisse und Dateien die rekursiv gesichert werden sollen
/home/www
/boot
/etc
/home
/mysqldata
/usr/local
/root
/var
# ein weiteres separates Backup
File: var
/var
# Verzeichnisse und Dateien die NICHT gesichert werden sollen
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Backup der Mysql Datenbanken
File: mysql
/var/lib/mysql
# der Link zum eigentlichen Mysql-Socket
/tmp/mysql.sock
# Der Socket und die Datei mit der Process ID m|ssen nicht gesichert werden.
Skip: /var/lib/mysql/mysql.sock
Skip: /var/lib/mysql/mysqld.pidCode: Select all
# tragen Sie hier Ihren Servernamen ein
host = pxxxxxxxx.pureserver.info
# die Anzahl der Tage, die Backups gespeichert werden.
backupdays = 7
# Konfigurationsdatei f|r die zu sichernden Dateien und Verzeichnisse
files = /etc/reoback/files.conf
# Verzeichnis f|r temporre Dateien
tmpdir = /var/lib/reoback/tmp/
# Verzeichnis f|r REOBack Daten. Die Dateien werden bentigt um die
# bersicht |ber die inkrementellen und kompletten Sicherungen zu behalten.
datadir = /var/lib/reoback/data/
# lokales Verzeichnis f|r die Sicherungsdateien.
localbackup = /var/lib/reoback/backups/
# Sollen die Sicherungen lokal auf der Festplatte gespeichert werden?
keeplocalcopy = 1
# Sollen die Sicherungen auf den Backup-Server kopiert werden?
remotebackup = 1
# Methode |ber die der Bacukp-Server erreichbar ist (NFS oder FTP)
# Der 1&1 Backup-Server ist nur per FTP erreichbar.
rbackuptype = FTP
# lokales Verzeichnis in das der Backup-Server gemoutet wird (nur NFS)
localmount = /mnt/server/
# Backup-Server Hostname
remotehost = backupXY.pureserver.info
# Pfad auf dem Backup-Server
remotepath = /reoback/
# FTP Benutzer auf dem Backup-Server
ftpuser = BENUTZER
# Passwort des FTP Benutzers
ftppasswd = PASSWORT
Dirk
-
Anonymous
Re: Reoback Problem
hast du einen backup-account?
wenn nicht, solltest du noch die 1 bei remotebackup in 0 ändern.
ausserdem sicherst du das verzeichnis /var zweimal, einmal komplett und einmal mit den skips.
da solltest du schon wissen, was du willst...
ciao
callum
wenn nicht, solltest du noch die 1 bei remotebackup in 0 ändern.
ausserdem sicherst du das verzeichnis /var zweimal, einmal komplett und einmal mit den skips.
da solltest du schon wissen, was du willst...
ciao
callum
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
oki, habe ich mal geändert, sind nun alle wichtigen daten gesichert ???
Was muß ich machen das reoback (wegen dem testen) von vorne anfängt ???
Dirk
Was muß ich machen das reoback (wegen dem testen) von vorne anfängt ???
Dirk
-
Anonymous
Re: Reoback Problem
dir verzeichnisse /var/lib/reoback/backups und /var/lib/reoback/data leeren. (leeren, NICHT löschen!)
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
oki, dann sehe ich ja morgen ob es funktioniert!
Dirk
Dirk
-
Anonymous
Re: Reoback Problem
wieso morgen :?: :?: :?:
gib einfach folgendes mal ein:
dann startet das backup sofort und du siehst ob es funktioniert...
warum liest du die faq von puretec nicht komplett durch :?: :?: :?:
gib einfach folgendes mal ein:
Code: Select all
reoback.pl /etc/reoback/settings.conf
warum liest du die faq von puretec nicht komplett durch :?: :?: :?:
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
hmmm
[codeUse of uninitialized value in concatenation (.) at /usr/bin/reoback.pl line 82.
[/code]
Dirk
[codeUse of uninitialized value in concatenation (.) at /usr/bin/reoback.pl line 82.
[/code]
Dirk
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
na hoffe ich doch
Dirk
Code: Select all
# Name des Backups
File: Backup
# Verzeichnisse und Dateien die rekursiv gesichert werden sollen
/home/www
/boot
/etc
/home
/mysqldata
/usr/local
/root
# ein weiteres separates Backup
File: var
/var
# Verzeichnisse und Dateien die NICHT gesichert werden sollen
Skip: /var/run/*
Skip: /var/lib/mysql/*
# Backup der Mysql Datenbanken
File: mysql
/var/lib/mysql
# der Link zum eigentlichen Mysql-Socket
/tmp/mysql.sock
# Der Socket und die Datei mit der Process ID m|ssen nicht gesichert werden.
Skip: /var/lib/mysql/mysql.sock
Skip: /var/lib/mysql/mysqld.pidCode: Select all
# tragen Sie hier Ihren Servernamen ein
host = pxxxxxxxx.pureserver.info
# die Anzahl der Tage, die Backups gespeichert werden.
backupdays = 7
# Konfigurationsdatei f|r die zu sichernden Dateien und Verzeichnisse
files = /etc/reoback/files.conf
# Verzeichnis f|r temporre Dateien
tmpdir = /var/lib/reoback/tmp/
# Verzeichnis f|r REOBack Daten. Die Dateien werden bentigt um die
# bersicht |ber die inkrementellen und kompletten Sicherungen zu behalten.
datadir = /var/lib/reoback/data/
# lokales Verzeichnis f|r die Sicherungsdateien.
localbackup = /var/lib/reoback/backups/
# Sollen die Sicherungen lokal auf der Festplatte gespeichert werden?
keeplocalcopy = 1
# Sollen die Sicherungen auf den Backup-Server kopiert werden?
remotebackup = 0
# Methode |ber die der Bacukp-Server erreichbar ist (NFS oder FTP)
# Der 1&1 Backup-Server ist nur per FTP erreichbar.
rbackuptype = FTP
# lokales Verzeichnis in das der Backup-Server gemoutet wird (nur NFS)
#localmount = /mnt/server/
# Backup-Server Hostname
remotehost = backupXY.pureserver.info
# Pfad auf dem Backup-Server
remotepath = /reoback/
# FTP Benutzer auf dem Backup-Server
ftpuser = BENUTZER
# Passwort des FTP Benutzers
ftppasswd = PASSWORT
-
Anonymous
Re: Reoback Problem
tja, einen fehler kann ich so offensichtlich nicht erkennen...
in zeile 82 von reoback.pl geht es um den nfs-path. der ist aber eigentlich bei einem lokalen backup nicht notwendig...
ersetze mal die settings.conf durch folgende:
der rest vom text bezieht sich ja nur auf das remote-backup.
setze oben bei den x deinen host ein.
wenn alle stricke reissen, installiere reoback nochmals neu und passe die configs entsprechend an.
viel erfolg!
in zeile 82 von reoback.pl geht es um den nfs-path. der ist aber eigentlich bei einem lokalen backup nicht notwendig...
ersetze mal die settings.conf durch folgende:
Code: Select all
# Used only as an identifier for this backup. Normally the hostname.
host = pxxxxxxxx.pureserver.de
# This is the number of days you want to keep backups. Note that the
# actual number of archives kept is "backupdays" times 2. That way, when
# it comes time for auto deletion, you always have a history of
# "backupdays" worth of information.
backupdays = 7
# Definitions of files/directories to backup. See README for format of
# this file.
files = /etc/reoback/files.conf
# Directory to store temporary files generated by REOBack.
tmpdir = /var/lib/reoback/tmp/
# Directory to store data files generated by REOBack. Files created
# here are files used to keep track of FULL/INCREMENTAL backups.
datadir = /var/lib/reoback/data/
# Location of where to keep local backups. Also use as a temporary
# storage of archives for transfer. Keep trailing slash!
localbackup = /var/lib/reoback/backups/
# 1 = Keep local backups, 0 = Do not keep local backups
keeplocalcopy = 1
# 1 = Transfer to remote location, 0 = Do not transfer
remotebackup = 0
# Type of remote backup. FTP or NFS
rbackuptype = FTP
# Only needed if above is set to NFS. Keep trailing slash!
localmount = /mnt/server/
# Required if "remotebackup" is set.
remotehost = HOSTNAMEHERE
# Path to keep backups on remote host. Keep trailing slash!
remotepath = /path here/setze oben bei den x deinen host ein.
wenn alle stricke reissen, installiere reoback nochmals neu und passe die configs entsprechend an.
viel erfolg!
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
hmm war wohl ein # zuwenig bei diesem ntfs
aber jetzt steht da seit 5 minuten
Dirk
aber jetzt steht da seit 5 minuten
Code: Select all
reoback.pl /etc/reoback/settings.conf-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
danach !!!
Nch Enter drücken !!
Nch Enter drücken !!
-
Anonymous
Re: Reoback Problem
vielleicht solltest du dich doch erstmal mit der bedienung von linux beschäftigen, bevor du hier eine komplettanleitung in der bedienung eines perl-scripts abverlangst...
nichts für ungut, aber habe jetzt keine zeit mehr.
ciao
callum
nichts für ungut, aber habe jetzt keine zeit mehr.
ciao
callum
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
so backup wurde angelegt. Wenn ich mich aber nun mit Putty als root einlogge und auf das reoback backups verzeichniss gehe bringt mir mc eine fehlermeldung, klicke ich dann nochmal lande ich indem verzeichniss wo die tar´s sind.
Dirk
Dirk
-
Matthias Diehl
- Posts: 315
- Joined: 2002-09-24 13:26
Re: Reoback Problem
Wenn Du Dir die Fehlermeldung von mc mal durchliest wirst Du merken, das ihm eine Datei zu gross ist. mc kann galube ich nur mit Dateien bis maximal 2 GB umgehen. Ein ls wird Dir aber zeigen das die Dateien da sind. Die kannst Du dann nur nicht mit mc verarbeiten.
-
Anonymous
Re: Reoback Problem
genau.
und deswegen macht es auch sinn, das backup auf mehrere dateien zu verteilen.
z.b. home, etc , mysql, usw.
das wird übersichtlicher und einfacher zu handeln.
und deswegen macht es auch sinn, das backup auf mehrere dateien zu verteilen.
z.b. home, etc , mysql, usw.
das wird übersichtlicher und einfacher zu handeln.
-
distanzcheck
- Posts: 531
- Joined: 2003-01-09 08:58
- Location: NRW
Re: Reoback Problem
gute idee, denke ich mal. Nur wie sollten dann die files.conf am besten aussehen ???
Dirk
Dirk