[SOLVED] rsnapshot never finishes a backup (PEBCAK)

I've set up rsnapshot and configured everything, but for whatever reason it either won't make files, or it stops making them about a minute after starting.
I have a separate hard drive which I set to mount and unmount just before and just after taking a backup.
Here is my config file:
# rsnapshot.conf - rsnapshot configuration file #
# PLEASE BE AWARE OF THE FOLLOWING RULES: #
# This file requires tabs between elements #
# Directories require a trailing slash: #
# right: /home/ #
# wrong: /home #
# CONFIG FILE VERSION #
config_version 1.2
# SNAPSHOT ROOT DIRECTORY #
# All snapshots will be stored under this root directory.
snapshot_root /mnt/backUp
# If no_create_root is enabled, rsnapshot will not automatically create the
# snapshot_root directory. This is particularly useful if you are backing
# up to removable media, such as a FireWire or USB drive.
no_create_root 1
# EXTERNAL PROGRAM DEPENDENCIES #
# LINUX USERS: Be sure to uncomment "cmd_cp". This gives you extra features.
# EVERYONE ELSE: Leave "cmd_cp" commented out for compatibility.
# See the README file or the man page for more details.
cmd_cp /usr/bin/cp
# uncomment this to use the rm program instead of the built-in perl routine.
cmd_rm /usr/bin/rm
# rsync must be enabled for anything to work. This is the only command that
# must be enabled.
cmd_rsync /usr/bin/rsync
# Uncomment this to enable remote ssh backups over rsync.
#cmd_ssh /usr/bin/ssh
# Comment this out to disable syslog support.
cmd_logger /usr/bin/logger
# Uncomment this to specify the path to "du" for disk usage checks.
# If you have an older version of "du", you may also want to check the
# "du_args" parameter below.
cmd_du /usr/bin/du
# Uncomment this to specify the path to rsnapshot-diff.
cmd_rsnapshot_diff /usr/bin/rsnapshot-diff
# Specify the path to a script (and any optional arguments) to run right
# before rsnapshot syncs files
cmd_preexec /usr/local/bin/preBackup
# Specify the path to a script (and any optional arguments) to run right
# after rsnapshot syncs files
cmd_postexec /usr/local/bin/postBackup
# BACKUP INTERVALS #
# Must be unique and in ascending order #
# i.e. hourly, daily, weekly, etc. #
retain weekly 4
retain monthly 12
# GLOBAL OPTIONS #
# All are optional, with sensible defaults #
# Verbose level, 1 through 5.
# 1 Quiet Print fatal errors only
# 2 Default Print errors and warnings only
# 3 Verbose Show equivalent shell commands being executed
# 4 Extra Verbose Show extra verbose information
# 5 Debug mode Everything
verbose 3
# Same as "verbose" above, but controls the amount of data sent to the
# logfile, if one is being used. The default is 3.
loglevel 4
# If you enable this, data will be written to the file you specify. The
# amount of data written is controlled by the "loglevel" parameter.
logfile /var/log/rsnapshot
# If enabled, rsnapshot will write a lockfile to prevent two instances
# from running simultaneously (and messing up the snapshot_root).
# If you enable this, make sure the lockfile directory is not world
# writable. Otherwise anyone can prevent the program from running.
lockfile /var/run/rsnapshot.pid
# Default rsync args. All rsync commands have at least these options set.
#rsync_short_args -a
#rsync_long_args --delete --numeric-ids --relative --delete-excluded
# ssh has no args passed by default, but you can specify some here.
#ssh_args -p 22
# Default arguments for the "du" program (for disk space reporting).
# The GNU version of "du" is preferred. See the man page for more details.
# If your version of "du" doesn't support the -h flag, try -k flag instead.
du_args -csh
# If this is enabled, rsync won't span filesystem partitions within a
# backup point. This essentially passes the -x option to rsync.
# The default is 0 (off).
#one_fs 0
# The include and exclude parameters, if enabled, simply get passed directly
# to rsync. If you have multiple include/exclude patterns, put each one on a
# separate line. Please look up the --include and --exclude options in the
# rsync man page for more details on how to specify file name patterns.
#include ???
#include ???
#exclude ???
#exclude ???
# The include_file and exclude_file parameters, if enabled, simply get
# passed directly to rsync. Please look up the --include-from and
# --exclude-from options in the rsync man page for more details.
#include_file /path/to/include/file
#exclude_file /path/to/exclude/file
# If your version of rsync supports --link-dest, consider enable this.
# This is the best way to support special files (FIFOs, etc) cross-platform.
# The default is 0 (off).
#link_dest 0
# When sync_first is enabled, it changes the default behaviour of rsnapshot.
# Normally, when rsnapshot is called with its lowest interval
# (i.e.: "rsnapshot hourly"), it will sync files AND rotate the lowest
# intervals. With sync_first enabled, "rsnapshot sync" handles the file sync,
# and all interval calls simply rotate files. See the man page for more
# details. The default is 0 (off).
#sync_first 0
# If enabled, rsnapshot will move the oldest directory for each interval
# to [interval_name].delete, then it will remove the lockfile and delete
# that directory just before it exits. The default is 0 (off).
#use_lazy_deletes 0
# Number of rsync re-tries. If you experience any network problems or
# network card issues that tend to cause ssh to crap-out with
# "Corrupted MAC on input" errors, for example, set this to a non-zero
# value to have the rsync operation re-tried
#rsync_numtries 0
### BACKUP POINTS / SCRIPTS ###
# LOCALHOST
backup /home/ imperator/
backup /etc/ imperator/
backup /usr/local/ imperator/
#backup /var/log/rsnapshot localhost/
#backup /etc/passwd localhost/
#backup /home/foo/My Documents/ localhost/
#backup /foo/bar/ localhost/ one_fs=1, rsync_short_args=-urltvpog
#backup_script /usr/local/bin/backup_pgsql.sh localhost/postgres/
# EXAMPLE.COM
#backup_script /bin/date "+ backup of example.com started at %c" unused1
#backup [email protected]:/home/ example.com/ +rsync_long_args=--bwlimit=16,exclude=core
#backup [email protected]:/etc/ example.com/ exclude=mtab,exclude=core
#backup_script ssh [email protected] "mysqldump -A > /var/db/dump/mysql.sql" unused2
#backup [email protected]:/var/db/dump/ example.com/
#backup_script /bin/date "+ backup of example.com ended at %c" unused9
# CVS.SOURCEFORGE.NET
#backup_script /usr/local/bin/backup_rsnapshot_cvsroot.sh rsnapshot.cvs.sourceforge.net/
# RSYNC.SAMBA.ORG
#backup rsync://rsync.samba.org/rsyncftp/ rsync.samba.org/rsyncftp/
/usr/local/bin/preBackup:
#!/usr/bin/bash
mount /mnt/backUp
/usr/local/bin/postBackup:
#!/usr/bin/bash
umount /mnt/backUp
fstab: (I know for certain it will always be sdb1)
# Mountpoint for backup drive
/dev/sdb1 /mnt/backUp ntfs noauto,noexec,rw,owner,sync,nosuid,nodev,relatime,nofail 0 2
Here's an example run:
[root@imperator ~]# rsnapshot weekly
echo 1785 > /var/run/rsnapshot.pid
/usr/local/bin/preBackup
mkdir -m 0755 -p /mnt/backUp/weekly.0/
/usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home \
/mnt/backUp/weekly.0/imperator/
mount:
/dev/sdb1 on /mnt/backUp type fuseblk (rw,nosuid,nodev,noexec,relatime,sync,user_id=0,group_id=0,allow_other,blksize=4096)
ps au | grep rsync
root 1791 0.0 0.5 58736 40848 pts/2 S+ 05:13 0:00 /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home /mnt/backUp/weekly.0/imperator/
root 1792 0.0 0.4 54060 37688 pts/2 S+ 05:13 0:00 /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home /mnt/backUp/weekly.0/imperator/
root 1793 0.0 0.4 58548 39976 pts/2 S+ 05:13 0:02 /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home /mnt/backUp/weekly.0/imperator/
dornith 1956 0.0 0.0 10708 1092 pts/0 S+ 06:15 0:00 grep rsync
After a few seconds:
[tom@imperator ~]$ ls -R /mnt/backUp
/mnt/backUp:
weekly.0
/mnt/backUp/weekly.0:
imperator
/mnt/backUp/weekly.0/imperator:
home
/mnt/backUp/weekly.0/imperator/home:
lost+found dornith wine
/mnt/backUp/weekly.0/imperator/home/lost+found:
/mnt/backUp/weekly.0/imperator/home/dornith:
addressbook development misc My Games runasadmin.vdf school SecureKey_4160871593.spk steam-runtime-sdk_2013-09-05 tmp toDo.txt
/mnt/backUp/weekly.0/imperator/home/dornith/addressbook:
/mnt/backUp/weekly.0/imperator/home/dornith/development:
/mnt/backUp/weekly.0/imperator/home/dornith/misc:
/mnt/backUp/weekly.0/imperator/home/dornith/My Games:
/mnt/backUp/weekly.0/imperator/home/dornith/school:
/mnt/backUp/weekly.0/imperator/home/dornith/steam-runtime-sdk_2013-09-05:
/mnt/backUp/weekly.0/imperator/home/dornith/tmp:
/mnt/backUp/weekly.0/imperator/home/wine:
After ten minutes:
[tom@imperator ~]$ ls -R /mnt/backUp
/mnt/backUp:
weekly.0
/mnt/backUp/weekly.0:
imperator
/mnt/backUp/weekly.0/imperator:
home
/mnt/backUp/weekly.0/imperator/home:
lost+found dornith wine
/mnt/backUp/weekly.0/imperator/home/lost+found:
/mnt/backUp/weekly.0/imperator/home/dornith:
addressbook development misc My Games runasadmin.vdf school SecureKey_4160871593.spk steam-runtime-sdk_2013-09-05 tmp toDo.txt
/mnt/backUp/weekly.0/imperator/home/dornith/addressbook:
/mnt/backUp/weekly.0/imperator/home/dornith/development:
/mnt/backUp/weekly.0/imperator/home/dornith/misc:
/mnt/backUp/weekly.0/imperator/home/dornith/My Games:
/mnt/backUp/weekly.0/imperator/home/dornith/school:
/mnt/backUp/weekly.0/imperator/home/dornith/steam-runtime-sdk_2013-09-05:
/mnt/backUp/weekly.0/imperator/home/dornith/tmp:
/mnt/backUp/weekly.0/imperator/home/wine:
After about an hour:
[tom@imperator ~]$ ls -R /mnt/backUp
/mnt/backUp:
weekly.0
/mnt/backUp/weekly.0:
imperator
/mnt/backUp/weekly.0/imperator:
home
/mnt/backUp/weekly.0/imperator/home:
lost+found dornith wine
/mnt/backUp/weekly.0/imperator/home/lost+found:
/mnt/backUp/weekly.0/imperator/home/dornith:
addressbook development misc My Games runasadmin.vdf school SecureKey_4160871593.spk steam-runtime-sdk_2013-09-05 tmp toDo.txt
/mnt/backUp/weekly.0/imperator/home/dornith/addressbook:
/mnt/backUp/weekly.0/imperator/home/dornith/development:
/mnt/backUp/weekly.0/imperator/home/dornith/misc:
/mnt/backUp/weekly.0/imperator/home/dornith/My Games:
/mnt/backUp/weekly.0/imperator/home/dornith/school:
/mnt/backUp/weekly.0/imperator/home/dornith/steam-runtime-sdk_2013-09-05:
/mnt/backUp/weekly.0/imperator/home/dornith/tmp:
/mnt/backUp/weekly.0/imperator/home/wine:
Last edited by Dornith (2014-05-20 18:47:42)

rune0077 wrote:Does the logfile not show any progress, errors, warnings, etc?
Not really, the only error it shows is when I kill it after about 4 hours:
cat /var/log/rsnapshot.1
[19/May/2014:05:13:31] /usr/bin/rsnapshot weekly: started
[19/May/2014:05:13:31] Setting locale to POSIX "C"
[19/May/2014:05:13:31] echo 1785 > /var/run/rsnapshot.pid
[19/May/2014:05:13:31] /usr/local/bin/preBackup
[19/May/2014:05:13:31] mkdir -m 0755 -p /mnt/backUp/weekly.0/
[19/May/2014:05:13:31] /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /home /mnt/backUp/weekly.0/imperator/
[19/May/2014:09:37:33] /usr/bin/rsnapshot weekly: ERROR: /usr/bin/rsync returned 20 while processing /home/
[19/May/2014:09:37:35] /usr/bin/rsync -a --delete --numeric-ids --relative --delete-excluded /etc /mnt/backUp/weekly.0/imperator/
[19/May/2014:09:37:38] /usr/bin/rsnapshot weekly: ERROR: /usr/bin/rsync returned 20 while processing /etc/
[19/May/2014:09:37:40] /usr/bin/rsnapshot weekly: ERROR: rsnapshot was sent INT signal... cleaning up
[19/May/2014:09:37:40] rm -f /var/run/rsnapshot.pid
Edit: Oh my, I'm an idiot.  I just upgraded both the log levels, and sure enough it was listing a whole bung ch files being copied.   They were all in hidden folders.  I now see that ls -RA /mnt/backUp yields the results I was expecting.
Last edited by Dornith (2014-05-20 18:46:32)

Similar Messages

  • Time machine never finishes a backup on macbook air

    Hello
    After setting up my Goflex NAS couple of days ago ,my macbookair and macbook pro both showed goflex external for time machine option and asked me if i want to do my time machine backup on that external drive which i answered yes  and they both started to do the time machine backup on that drive.As for the macbook pro 15 which is on osx lion ,everything went fine and the backups did as smooth as possible on the schuduale.for macbook air was totally different .it is running on osx lion also .but it will not ever finish up any backups .the only time that it did finish the backup was the first time ,but even for that one ,when i open the time machine window from system pref. it shows the oldest backup none and the latest backup none. i just left it on automatic backup .it will automatically start the backup but never finishes the backup process and i have  to shut down the computer in order to stop the bad process.does anybody has a solution for this.
    thanks in advance.
    mike

    In addition to jochen2d you can try this, albeit, requiring much more effort.
    Live partition your external HD and make a 2nd partition of about 10-12 GB, call it installer. Then eject the hard drive.
    Plug in your DVD drive, put in the installation disc. Fire up Disk Utility and make a new image with the DVD as your source material. Once this is done you'll have a disk image on your Desktop (or wherever you decided to save it). You'll then to scan the image for restore.
    Once this is done, eject the disc and then unplug the external drive.
    Plug the USB drive back in, and open up Disk Utility again (if you closed it).
    Select the install partition you created and then click on the restore tab. Your source is the .dmg of the installation disc you created and your target is the install partition you created.
    When this is done you can now run the installer partition and have an exact replica of the DVD installation media with your backup accessible.
    Or as jochen2d recommended, you could go out and buy a $29 powered USB hub.

  • Backup exchange 2010 done, unloading medium... but never finish

    Hi all,
    I'm using Data Protector 07.00 to backup exchange 2010 (with DAG), everything was fine but then exchange full backup has done DP unloading medium then never finish, other jobs will be backed up normal except the exchange will be failed on next start. I can't also abort/cancel the device after the DP unloading medium.
    please help me to solve.
    thanks,

    Hi,
    Apologies for digging up this relatively old post but I am getting the same error message as the OP, however the solution is irrelevant / doesn't work and I can't fathom it out.
    We have six Help Desk operatives - members of "Help Desk" and "View Only" RBAC. All Help Desk operatives  connect to a terminal server (2008 R2) where EMC and EMS is
    installed. The EMC works fine for all HD operatives, apart from one. When this operator clicks on anything under "Recipient Configuration" he gets the error described herein. It was fuly working until around early January 2014.
    We don't see any event log errors on the Terminal Server or on Exchange 2010 pertaining to this fault.
    Although he connectes to a terminal server, it is a one-off used for Exchange management only. It only uses local profiles. I have completely wiped his profile and seen the system build a new
    profile for him. As a test,
    I added him to "Organisation Management" RBAC group and the issue went away - he was able to enumerate all users, when removed from "Organisation Management" and the problem returns.
    When clicking on Recipient Configuration --> Mailbox, I see the PS cmdlet run is:
    Get-Recipient -PropertySet ConsoleLargeSet -ResultSize '1000' -SortBy DisplayName -RecipientType 'UserMailbox'
    He can connect to EMS and run this cmdlet without issue.
    I am at a loss as to where to go from here. Every Google results in checking the paths mentioned in KB2027063 (which are correct) or installing / reinstalling WinRM Extensions for IIS, which
    are fine, otherwise the issue would affect all users.
    Any help would be gratefully received
    Many thanks
    W.

  • Backup never finishes

    I am trying to use Backup for a custom backup to my iDisk (yes, I'm logged in to .Mac). I simply used the checkboxes to select all relevant document types (iTunes, Word docs, etc.) This is the first backup.
    Backup never finishes. The upload progress bar reaches the end, then the process starts all over again. I've left it on overnight, and it just keeps cycling through the whole process again and again.

    Hi Marakel, and welcome to the forums,
    Do you have enough space on your iDisk for all your stuff? An iTunes library alone might exceed the limit.
    Why don't delete that back up plan, and start with something much smaller, like the "personal data" option, and see if that works, then work create another plan for something bigger to work your way up. My guess is that Backup is hanging because of all the data you are asking it to backup, but I'm surprised it doesn't tell you you're exceeding your limit (if that is the problem) before it starts uploading.

  • Backup never finishes query

    I have a small business server 2011. On the console the backup keeps querying and never finishes while the other tabs [Security, Updates and Other Alerts] are Ok.
    If I try to backup, using the console it stacks at "Loading data. Please wait ..." and server backup, I get "Reading data;please wait..." message when tries to load the disk etc. In the event log all
    I see is event 753 & 754 in application source backup.
    What is causing this? How do I resolve this because I can't do backup?

    Hi,
    Regarding the current issue, have you tried to repair Windows Server Backup to see if it could resolve the issue?
    Repair Windows Server Backup
    http://technet.microsoft.com/en-us/library/gg697172.aspx
    In addition, maybe the SharePoint update stops the backup from working, please also refer to the article below for troubleshotting.
    You Must Manually Run PSCONFIG after Installing SharePoint 2010 Patches
    http://blogs.technet.com/b/sbs/archive/2011/05/24/you-must-manually-run-psconfig-after-installing-sharepoint-2010-patches.aspx
    Hope this helps.
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • TS4036 I have restored a backup into a new iPad but it did not downloaded all my photos. There is a message saying " downloading 515 of 1230" but it never finishes downloading. How can I get all my photod downloadeda.

    I have restored a backup into a new iPad but it did not downloaded all my photos. There is a message saying " downloading 515 of 1230" but it never finishes downloading. How can I get all my photod downloadeda.

    Sorry this solution is late but I just got off of the phone with Apple support and this worked. 
    Open iTunes
    Connect your iPhone and keep it connected during this entire process.
    In the iTunes menu at the very top (File, Edit, View) choose STORE> Sign in and sign into your iTunes account.
    Once this is complete look at the upper right corner of iTunes and you will see an iPhone and Store button, cick STORE.  Now you will be in the iTunes store where you see the advertisements of the various albums, songs etc.  Look on your upper left of the window for your itunes account name and in the black band next to your iTunes account name, you will see a House icon, then Music, Movies, TV Shows etc.
    Make sure the HOUSE icon is selected.
    Stay on this screen in iTunes and on the lower RIGHT, you will see an area that says- QUICK LINKS.  In that area click - Purchased
    After you do this you will be transported to another area of iTunes.  Here there will be a menu across the top- Music, Movies, TV Shows, Apps, Books are the choices. 
    Choose APPS and you will see the apps that you have purchased.  You will also see the apps that didn't download to your phone. 
    Find the apps that didn't download and click the cloud next to their name.  Doing this will download the chosen apps to the computer you are on. 
    Once you have downloaded the apps in question, in the upper right corner click LIBRARY.
    Now you should see the button that says iPhone because your phone is still plugged in.  Click the iPhone button and then click SYNC on the lower right to sync your iPhone.  
    The apps you downloaded will now be on your phone.
    Sorry for the long instructions but this is what works.

  • SL Server and Time Machine - Backups never finish - help.

    I am running Snow Leopard Server (10.6.4) on a Mini. I want to use Time Machine to back it up to an external hard drive. This setup worked forever, until I upgraded to Snow Leopard.
    Now, the backups start, but never finish. There is no consistency to this - sometimes it gets far into the backup, and other times if stops early. In other words, there is not one file that is causing this problem. The only consistent thing is, is never finishes.
    I’ve tried to use an old sparsebundle, and I’ve erased the HD completely to start over. I’ve excluded files, folders, and groups of folders, and it never completes.
    The alert I get usually says, “The backup was not performed because an error occurred while copying files to the backup disk. The problem may be temporary. Try again later to back up. If the problem persists, use Disk Utility to repair your backup disk.”
    Needless to say, I’ve followed these instructions - waited (six months now), used a Time Capsule instead, used another HD instead, repaired the HD, everything. It just doesn’t work.
    Anyone else have this problem? Any ideas on how to fix it?
    Thanks.

    I'm having the same problem. I can't use Time Machine at all on Snow Leopard Server on an Xserve. There are 2 1TB drives configured as a mirrored RAID set, and a 3rd internal 1TB drive set up to run as a Time Machine backup drive. I have not had any luck after almost a year of trying to get this to work, and I am finding no help on the Internet. I've seen the question asked, but it is never answered. Does ANYBODY out there have an clues as to why this keeps happening? Is it about permissions, since these files are being served from the sharepoint? If I exclude everything but one or two files, the process works, so it's not a hardware error, as far as I can tell. Can't I get TM to bypass any problem files and log them to a report? There are thousands of files. I can't exclude them one by one. I'm already very old.

  • Tar -x never finishes. [Solved]

    I'm a complete beginner to Arch. I've installed the system, and I'm trying to setup yaourt so I can install AUR packages more easily. The problem is, tar isn't working. I downloaded yaourt.tar.gz from the AUR, but when I type "tar -x yaourt.tar.gz" it simply shows the little underscore flashing like it does when it's waiting, and never finishes.
    I've tried multiple times, (By going into another session with Ctrl + Alt + F2, and using killall tar, when I go back to my old session it says "Terminated" and it's back to normal, but with no files extracted in the folder yaourt.tar.gz was in.)
    Anyone have any suggestions?
    EDIT: Nevermind, I should have looked before posting a thread here. Googled it, and saw that I should have been doing tar -zxvf
    Last edited by Grundoko (2010-12-09 23:50:42)

    Yeah, that works, I should have googled it first, as I just found the answer a couple minutes ago, and edited the thread as you were posting that.

  • My laptop goes to sleep during the Time Capsule backup process and never finished. What can I do?

    I have an older MacBook laptop that I want to backup on my new 2TB Time Capsule. I have set everything up just fine (apparently) and the backup process starts out fine. About an hour or so into the backup process, my laptop goes to sleep. The laptop is plugged into AC power so it is not a battery loss. I have set 'hot corners' so that my screen saver is disabled. Nothing seems to keep the laptop running until the Time Machine process completes. Any guidance appreciated. Thanks!

    You don't indicate what operating system the MacBook is using, but in general try the following:
    Open System Preferences (gear icon on the dock)
    Open Energy Saver
    Adjust Computer Sleep to read Never
    Adjust Screen Saver to read Never
    Run the backup
    When the backup is done, change the Energy Saver settings back to normal

  • IPhone5 and iPad3(iTunes 11.1.2) after syncing never finish syncing continuo stay in finishing syncing need help.

    iPhone5 and iPad3(iTunes 11.1.2) after syncing never finish syncing continuo stay in finishing syncing need help.

    Same issue here iTunes stuck on "Finishing Sync"
    Tried to leave it for 10 hours without any changes "Finishing Sync" still shows in iTunes
    The Setup:
    itunes 11.1.2.32 - install on Windows 7 Enterprise 32bit  - Service Pack 1 + all updates from windows update
    iPhone 4S - running  IOS 7.03(11B511)
    Additional information
    During the update to from IOS 7.02 to 7.03 the update process stopped and asked to restore the iPhone
    The restore deleted all data on my phone. Yes restore means delete all data including your photos.
    My backup did not work so now running IOS 7.03 with the "Finishing Sync" issue on iTunes
    Please let me know how to solve this issue

  • HT1657 I rented a movie a few hours ago and never finished it.  I can't view it on my Apple TV nor on my Computer.  When I go to rent it again it says you have already rented this movie, but I can't find it anywhere.  How do I watch the remainder of the r

    I rented a movie a few hours ago and never finished it.  I can't view it on my Apple TV nor on my Computer.  When I go to rent it again it says you have already rented this movie, but I can't find it anywhere.  How do I watch the remainder of the rental?

    I had the same issue with my apple tv 3rd generation. I rented Sinister and selected the "rent and watch now" option. Half way through the movie I accidentally pressed the menu button. When I looked for the rented movie on my apple tv I could not find it. Not even above the movie pannel where "purchased" and "top movies" comes up on the main menu. the apple tv suggests to go to settings>downloads but I don't have that option. I did go to settings> itunes store> check rentals but that didnt work either. It took too long to even check. Thank you because this SOLUTION worked great.
    SOLUTION: How to reset apple tv 3 3rd generation to view rented movies:on the apple tv remote: press and hold "menu" to go to the main menu. Select SETTINGS> GENERAL >RESET >RESET ALL SETTINGS. After the apple tv resets, input all your information again and your rented movies should be visible when you cruise above the "movies" section. THANK YOU!!
    Apple needs to solve this issue because honestly it took me 3 hours and a half to watch a movie that only lasted 2 BECAUSE I wast trying to solve the issue, reseting and all. blahh.

  • Cannot restore previous profile in ipad after updating to iOS 8, it never finishes

    iPad 64M, wireless, IOS 8
    I updated my ipad to IOS 8, which erased everything from it. At reboot, when asked to set it up as a new ipad or restore a previous profile, I selected previous profile and let it go.
    I have not been able to restore my ipad. It does the restore but i never finishes copying the apps. Very few things work.
    Is anyone getting the same problem?

    Hi Tripix,
    I understand it starts the restore from your previous backup but never finishes. 
    Here is an article for help with restoring from your backup.
    iOS: If you can't back up or restore from a backup in iTunes
    Depending on how much you are restoring, it can take quite a while.
    Best regards,
    Nubz

  • Having trouble with imports never finishing

    I am having trouble with imports that never finished. It is almost like the pictures are stuck on one image. the only way to get out of Iphoto is to force quit. The next time I open, there are a number of images that still need to be imported, but the import never finishes and seems to stop at the same image. When I go to close down I get the message that Photos are being imported to the library.
    Anyone have any suggestions.
    Thanks

    Photo:
    Welcome to the Apple Discussions. Check out your iPhoto library and make sure all photos are viewable and there. Force quitting when iPhoto is working can corrupt the database file, Library6.iPhoto. Make a backup copy of it and save in another folder.
    First make a backup copy of your iPhoto Library folder. Now download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field. Open iPhoto and see if it will work OK.
    If not, launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Lastly use iPhoto Library Manager to rebuild the library. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.
    Do you Twango?

  • Fetching but never finishing while trying to rebuild

    have tried to tried to rebuild my mailbox (mailbox was getting populated with multiple duplicate emails), but now, as I run "activity" it's fetching my mail--some 14000 messages, but it's getting hung up around half way through.
    and then just starting over.
    consequently, there are now NO emails in my inbox. help! how do I make sure the emails I'm trying to recover aren;t lost?
    and why the incessant loop of fetching, never finishing, and then repeating the cycle?
    mail-less in Dallas

    Audrey:
    Welcome to the Apple Discussions. You can useiPhoto Library Manager to easily open both of the two libraries on your HD to see if there is duplication or if there are some photos that are not in your primary (located in the Pictures folder) library. If there are some you need to get into the primary library the paid version of iPLM will let you copy rolls or albums between the two libraries and maintain the keywords and comments as shown here.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Sync never finishes

    OK, so I am syncing my new iPhone 6, and doing a hard, connected sync. But the sync never finishes. When I left it last night it was on "Syncing Artwork" and I left the sync running overnight, and it was still not done this morning.
    Based on the fact that I can't get the system to stop asking me for old passwords, the problem where it keeps saying on my home screen that it says it is "Restoring from iCould Backup" for the whole week and a half that I have owned this new phone, and now this, I am seriously thinking of switching platforms.
    HELP!

    Never mind, figured it out. My "ipod photo cache" from my former library was included in my pictures file when I transferred my files to my new computer. I think this was confusing itunes. I deleted the old photo cache and synced again - this appears to have fixed the problem.

Maybe you are looking for

  • Can I reinstall "Documents and data" in iOS 8 after switching off it?

    I have not upgraded to iCloud Drive yet because I use an old Mac with Mavericks. I've switched off the "Documents and data" option in Settings/iCloud, but when I've wanted to switch on it, that option has dissapeared. I don't want to upgrade to iClou

  • Resultset return takes long time

    I have a query which will generate about 1500 rows back, when I try to process the record I find out that it takes about 1seconds to get the first 10 rows back, then 2 minutes to get the next 100 rows back, to get all the rows back, it took about mor

  • How can I change the email I set my mail to?

    When I got my iPhone I set my mail to my Gmail account and have now changed the account I used most often to another Gmail account. How can I change Mail so that it receives emails from the second Gmail account and not the first?

  • Indesign CS5 crashing on launch if another CS5 app is open

    This actually seems to be affecting the entire CS5 suite installed on a Windows XP computer. If one CS5 app is open eg. Indesign, when trying to open another eg. Illustrator, the app crashes with a memory write error. It happens with any combination

  • Reports ASYNCHRONUS

    Hi I tried to run reports using Forms, I set the settings in Report node for report1 as follows. (1)EXECUTION MODE ==BATCH (2) COMMUNICATION MODE==ASYNCHRONUS. When I try to run report1 multiple times before completing the first one, I'm getting STAT