In my project I upload audiofiles to GridFS using CarrierWave gem. After uploading file is saved to GridFS properly but in my application I am unable to get it from GridFS with MongoFiles Tool or with GridFS-nginx module.

mongofiles get audiotracks/4dfb70d6bcd73f3488000002/data

command leads to this error:

assertion: 13325 couldn't open file: audiotracks/4dfb70d6bcd73f3488000002/data

The only way to get file is to use rails console and it works fine:

cc = Mongo::GridFileSystem.new(Mongo::Connection.new.db("test")).open('audiotracks/4dfb70d6bcd73f3488000002/data', 'r')

cc.read

So if you have encountered problem like this or have some ideas - plz let me know.

link|improve this question

56% accept rate
feedback

1 Answer

Assertion 13325 happens when GridFS can't write the file. For me, the GridFS filename wasn't a valid OS filename. For your case you might need to check file permissions to make sure that the file is writable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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