1

I had a basic code where it stores a hash in a file.

store \%hash 'file';
retrieve ('file');

The difference is, the file is transferred to a different machine through SCP and retrieved there. While retrieval, I get this error "Magic number checking on storable file failed". I tried "nstore" too, but that too failed with the same error.

Is SCP the culprit in corrupting file or something? I looked at the file it looks same to me though! Is there anything i need to take care specifically? Anything else as a suggestion?

4
  • 4
    Are you using the same version of Storable on both machines? Sep 16, 2014 at 19:10
  • Have you checked that the file is being transferred correctly?
    – salva
    Sep 17, 2014 at 7:53
  • Also, have both machines the same architecture? I am not sure you could read a Storable file created on an 64bits machine in a 32bits one or vice-versa.
    – salva
    Sep 17, 2014 at 7:56
  • One last thing, the Storable docs have some information about the format of the magic header. You can use a hex-editor to check the file that fails to load.
    – salva
    Sep 17, 2014 at 7:59

1 Answer 1

1

two things need to be checked:

  1. When the retrieve is done, the file should be owned by same user as the user who is running the retrieval code. Even if the current uid has read permissions for that file, different uid creates problem. So copy file under the retrieval user or use chown.
  2. check Storable versions in both machines. Though storable is backward compatible.

EDIT::

  1. The ownership was not causing the failure. Copying to different file worked for me though. So suspecting the locking issue in my code (not the ownership). I had a inotify for that directory. That might be the culprit, as pretrieve() in Storable.pm failed.
4
  • So the issue was caused by another user owning the file? Sep 16, 2014 at 21:28
  • yes. though there was read permission for the file (like vi works), retrieve() failed. Sep 16, 2014 at 21:29
  • 1
    Can't reproduce. I don't get an error when a different user owns the file as long as the user running the script has read access. Without read access, I get can't open /path/to/file: Permission denied. What version of Storable are you using? Sep 16, 2014 at 21:37
  • yes i couldn't too in a normal case. So investigated a bit in my actual code and updated the answer. Thanks anyways! Sep 16, 2014 at 22:19

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.