Where are files actually stored?

Hi,

I have a Debian10 server setup running all three GenieACS 1.2 services (nbi, cwmp and fs) and another Debian10 server running the MongoDB.

Everything is working like a charm, but I’m trying to find out where the files I upload with the API are located.

i.e.: if I upload a file named “config.rsc” with
curl -i ‘https://acs:7557/files/config.rsc’ -X PUT -d @config.rsc -H myheaders…

Where is it stored ? I tried running
$ find / -name config.rsc
without success

Thanks for any help on that!

The files are stored in mongodb, precisely in the fs.files and fs.chunks collections.

1 Like

Thank you very much! That’s what I was looking for