Calling fswebcam through apache / python script -


मैं अपनी अजगर स्क्रिप्ट में निम्न कमांड चला रहा हूं:

  res = subprocess.Popen (("Fswebcam", "-r 640x480", "हड़पने। Jpeg"], शेल = झूठी, stdout = subprocess.PIPE, cwd = "/ var / www / pics"); आउटपुट = रेस्प। म्यूजिक () [0];   

स्क्रिप्ट को मैन्युअल रूप से कॉल करते समय ठीक चलता है।

लेकिन जब एपाचे के माध्यम से स्क्रिप्ट चल रहा है, मुझे कोई त्रुटि संदेश नहीं मिलता है, लेकिन कोई छवि / var / www में नहीं दिखाई देती है / Pics निर्देशिका इस निर्देशिका को www-data: www-data को असाइन किया गया है और उसे लिखने की अनुमति है।

मुझे नहीं पता कि मुझे यह काम करने के लिए क्या याद आ रही है।

अंत में इस मुद्दे को मिला, www-data उपयोगकर्ता को fswebcam चलाने की अनुमति नहीं थी, इसलिए मैंने /etc/sudoers.d में एक कनिग्युरेशन फ़ाइल जोड़ा। उपयोगकर्ता www-data द्वारा fswebcam तक पहुंच की अनुमति के लिए निर्देशिका।

यहां मेरी फाइल की सामग्री है:

डिफ़ॉल्ट: www-data! Requiretty

% Www-data ALL = NOPASSWD: / usr / bin / fswebcam

मुझे अपने अजगर स्क्रिप्ट में "sudo" को कमांड के बीगिनिंग के रूप में जोड़कर fswebcam को कॉल को संशोधित करना पड़ा।

res = subprocess.Popen (["sudo", "fswebcam", "-r 640x480", "पकड़ो। Jpeg"], शेल = गलत, stdout = subprocess.PIPE, cwd = "/ Var / www / pics");

Comments

Popular posts from this blog

jasper reports - How to center align barcode using jasperreports and barcode4j -

Verilog Error: output or inout port "Q" must be connected to a structural net expression -

c# - ASP.NET MVC - Attaching an entity of type 'MODELNAME' failed because another entity of the same type already has the same primary key value -