Why am I facing permission errors when my python script tries to load MP4 files after downloading them if necessary. Kindly suggest some remedy as soon as possible. I will be really grateful to you.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Greetings!
It is important that the files be readable by the user that is running the application. I can’t tell you exactly how to tell what that user is, but I can give you an idea how to find it. Let’s take the service “syslogd” on my server and find out what user it runs as:
So in my case, syslogd is run by the user “syslog” on the system. If the syslogd service needed to access a file, the easiest method would be to set ownership of that file. Let’s say that file is “/var/www/html/video.mp4” for my example. I would run this:
Hopefully that can help to apply the theory to your situation.
Jarland