Voraussetzungen:
Quelle: Medien-Server: 192.168.1.241 Ziel: FTP-Server: 192.168.1.200
Zielsetzung:
Ich möchte von meinem Medienserver die Dateien in z.B. /NFS auf meinen FTP-Server zur Datensicherung spiegeln. Das soll dann automatisiert einmal pro Woche von alleine erfolgen. Dazu legt man dann einen Cronjob an.
Befehl zum Spiegeln der Daten.
rsync -vraze 'ssh -p 444'Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! :/rsync/ /rsync
Erklärung: Vorne: Quelle (entfernter Server mit ssh auf Port 444) Hinten: Ziel (lokaler Ordner) Problem beim Testen ist die Paßwortabfrage, ziemlich hinderlich wenn ich das automatisieren will. Was machen? Befehl mit Übergabe SSH PW:
sshpass -p "PW" rsync -vraze 'ssh -p 444'Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! :/rsync/ /rsync
vorher muss sshpass installiert werden. Das kann man mit
apt-get install sshpass
installieren. Erklärung:
sshpass -p "PW" rsync -vraze 'ssh -p 444'Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! :/rsync/ /rsync
Mit dem / werden die Files in das Verzeichnis /rsync kopiert. Ohne den / wird der Ursprungsordner in /rsync gespeichert. *** Da bin ich mir nicht so 100% sicher ob das richtig ist, bei meinen Versuchen war das Ergebnis so ***
Cronjob anlegen auf dem FTP-Server!
Datei anlegen mit
cd / nano backup.sh
Hier der das Script:
#!/bin/bash # Datensicherung von .241 nach /rsync sshpass -p "PW" rsync -vraze 'ssh -p 444'Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! :/rsync/ /rsync
Datei abspeichern mit STRG+x Datei ausführbar machen:
chmod +x /pfad/zu/mein_Skript
Ein Problem was mir noch aufgefallen ist, beim Anlgen vom cronjob startete der Editor vi. Den mag ich aber leider gar nicht, so suchte ich kurz nach einem Befehl das zu ändern. Temporär geht das mit dem folgenden Befehl, wie man das dauerhaft einstellt muss ich mir noch ansehen. Editor für crontab wählen:
export EDITOR=/usr/bin/nano
Crontab editieren:
crontab -e
# Edit this file to introduce tasks to be run by cron. # # Each task to run has to be defined through a single line # indicating with different fields when the task will be run # and what command to run for the task # # To define the time you can provide concrete values for # minute (m), hour (h), day of month (dom), month (mon), # and day of week (dow) or use '*' in these fields (for 'any').# # Notice that tasks will be started based on the cron's system # daemon's notion of time and timezones. # # Output of the crontab jobs (including errors) is sent through # email to the user the crontab file belongs to (unless redirected). # # For example, you can run a backup of all your user accounts # at 5 a.m every week with: # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ # # For more information see the manual pages of crontab(5) and cron(8) # # m h dom mon dow command 01 21 * * 5 /backup.sh
Erklärung: Um 21:01, am Freitag wird das Script backup.sh ausgeführt! Ob der cronjob läuft, kann man in /var/log kontrollieren. In der Datei syslog stehen die Meldungen des cronjobs drin. Bsp.:
Oct 26 04:00:01 ftpserver /USR/SBIN/CRON[2200]: (root) CMD (/backup.sh)
Anmerkung: