jaime.pinto wrote:How did you use the rsync command (the exact syntax)?
Did you stop all the scalix services first, including the database?
Did you rename the "compromised" /var/opt/scalix first?
Sorry to take so long to get back. Had to wait on the technician.
Here is what I
did....
This is the
backup....
service scalix
stop
service
scalix-postgres
stop
service
scalix-tomcat stop
rm
-Rf /home/scalixbackup
mkdir /home/scalixbackup
rsync -av
--delete /var/opt/scalix /home/scalixbackup
# restart scalix
services
service
scalix-tomcat
start
service
scalix-postgress
start
service scalix
start
exit 0
and this is the
restore...
#!/bin/sh
## Backup Scalix
for Netstream
service scalix
stop
service
scalix-postgres
stop
service
scalix-tomcat stop
rm
-Rf /var/opt/scalix.old
mv /var/opt/scalix /var/opt/scalix.old
rsync -av
--delete /home/scalixbackup /var/opt/scalix
# restart scalix
services
service
scalix-tomcat
start
service
scalix-postgress
start
service scalix
start
Scalix will not restart...
Any ideas?