- Right click My Computer
- Select Manage
- Select Services and Applications -> Services
- Right-click the Eclipse Forms Server service and select Restart
Author: paul.deluca
Can ABS CrashPlan be configured to run at a specific time?
There are two methods of scheduling when CrashPlan runs:
“Always”
This is default setting. CrashPlan will always run, and will back up at the interval specified under Settings -> Backup tab -> Backup frequency and versioning.
The benefit to running CrashPlan “always” is that the backup will capture data throughout the day, therefore reducing the amount of data lost if a restore is necessary.
The downside to running CrashPlan “always” is that there is a potential for contention with the snapshot script, because both tools use different types of scheduling logic:
- The snapshot script is kicked off from crontab at regular intervals based on a static timeline (ex 12:00 AM, 3:00 AM, 6:00 AM, etc.).
- The CrashPlan backups are independently kicked off at regular intervals based on a dynamic timeline (ex 3 hours after the last backup to a particular destination completed).
Since the snapshots are kicked off at a regular interval via crontab, it’s possible that the snapshot could “refresh” itself (ie new snapshots are created) or “expire” (ie fill to capacity) during the CrashPlan backup process, thus invalidating the backup. The longer the CrashPlan backup(s) take, the higher the likelihood of the snapshot becoming invalid during the backup process. To prevent the snapshot script from running during an active CrashPlan backup, the snapshot script automatically stops the CrashPlan service during its operation. Upon completion of the snapshot creation process, the CrashPlan service is started, and the backup schedule is resumed.
An example configuration that has proven to work for many customers is the following:
- Set CrashPlan to run every 12 hours. The 12-hour interval between backups has shown to allow sufficient time for both local and remote backups to complete in a variety of configurations.
- Set the snapshot script to run at 12:00 AM and 12:00 PM. This ensures that a “point-in-time” representation of your data is available for restore at least twice daily.
“Between specified times”
There is an optional setting that can be configured under Settings -> General tab -> Crashplan will run: -> Between specified times.
The benefit to running CrashPlan “between specified times” is that it allows for the concrete definition of a window of time during which the backup should run. This is useful if there are bandwidth or performance constraints to running CrashPlan backups during business hours. The window should be made large enough to allow the completion of backups to each individual backup destination. The snapshot script should be scheduled to directly before the CrashPlan backup window, and the snapshot volume(s) must be large enough to remain active through the end of the backup window.
The downside to running CrashPlan “between specified times” is that the recovery points for data restoration are often reduced in conjunction with the available backup window. Despite this, the CashPlan agent still has many advantages over a traditional daily tape backup, including increased ease of administrator, archive reliability, security and the ability to backup to multiple destinations.
If you choose to modify the time during which CrashPlan operates, please ensure that the Eclipse snapshot backup script is scheduled via crontab to run prior to the CrashPlan backup window. For more information, see: How do filesystem snapshots work on Linux?
How do I perform a manual ABS CrashPlan backup?
View a step-by-step screencast of this process:
- Stop the CrashPlan service:
service crashplan stop
- Run the snapshot backup script to create new snapshots of the Eclipse filesystems
/bin/save
- Start the CrashPlan service:
service crashplan start
- To verify the back is running, log into the server’s GUI as root using VNC, DRAC or the local console
- Use the CrashPlanDesktop shortcut, or press to open the run dialog box and run the command:
CrashPlanDesktop
- If the backup is not currently running, click “Play” button next to the backup job to manually start the backup job.
- If the backup button is grayed out because the backup service is not currently scheduled to operate, you’ll need to temporary change the schedule to “Always” in the CrashPlan settings menu.
Related:
Screencast:
How do I verify the amount of data being backed up by CrashPlan?
Launch the CrashPlan desktop client and open the History tab. Scroll down and look for the most recent the “Completed backup” entries. Here’s an example:
I 09/29/10 03:17PM Completed backup to ABS Online Backup in 12.2 hours: 21,565 files (77.92 GB) backed up, 2.19 GB encrypted and sent @ 15.90 KB/s (Effective rate: 7025.81 KB/s)
In this example:
- The backup completed at 3:17 PM on 9/29/10
- The backup destination was “ABS Online Backup”
- The backup process took 12.2 hours
- There were 21,565 files backed up which had a total size of 77.92 GB
- There was 2.19 GB of change data compressed, encrypted and sent to the backup destination
- The average “real” transfer rate was 15.9 KB/s
- The average “effective” transfer rate was 7025.81 KB/s
For more detailed information, see the CrashPlan PRO documentation.
Expand Linux Filesystem
If you need to expand or add space to a filesystem under Linux, please follow the procedure outlined below, replacing the directory and filesystem names with your own:
Verify the current filesystem usage and device path:
df -h /u2/eclipse
Verify that the volume group for sufficient space:
vgs datavg
Set the new logical volume size:
lvextend -L 80G /dev/datavg/eclipse
Resize the filesystem:
resize2fs /dev/datavg/eclipse
Verify the updated filesystem utilization:
df -h /u2/eclipse
Here’s an example:
[root@eclipse ~]# df -h /u2/eclipse Filesystem Size Used Avail Use% Mounted on /dev/mapper/datavg-eclipse 20G 18G 835M 96% /u2/eclipse [root@eclipse ~]# vgs datavg VG #PV #LV #SN Attr VSize VFree datavg 1 5 0 wz--n- 474.22G 406.22G [root@eclipse ~]# lvextend -L 40G /dev/datavg/eclipse Extending logical volume eclipse to 40.00 GB Logical volume eclipse successfully resized [root@eclipse ~]# resize2fs /dev/datavg/eclipse resize2fs 1.39 (29-May-2006) Filesystem at /dev/datavg/eclipse is mounted on /u2/eclipse; on-line resizing required Performing an on-line resize of /dev/datavg/eclipse to 10485760 (4k) blocks. The filesystem on /dev/datavg/eclipse is now 10485760 blocks long. [root@eclipse ~]# df -h /u2/eclipse Filesystem Size Used Avail Use% Mounted on /dev/mapper/datavg-eclipse 39G 18G 20G 48% /u2/eclipse
If the LVM snapshot filesystems are mounted, please follow the procedure outlined below.
First, unmount the snap filesystems (and any “child” filesystems, such as /u2/eclipse/ereports under /u2/eclipse):
umount /snap/20110909.1043/u2/eclipse/
Remove the snap logical volumes (which you can identify with the “lvs” command):
lvremove /dev/datavg/lvol1
Set the new logical volume size:
lvextend -L 250G /dev/datavg/eclipse
Resize the filesystem:
resize2fs /dev/datavg/eclipse
If you are unable to unmount or lvremove a snapshot, verify that there are no processes holding the volume open.