1

私のNGINX構成:

server {
  server_name 127.0.0.1;
  listen 4450;
  location ~* ^/.*$ {
  include uwsgi_params;
    uwsgi_pass unix:/tmp/esrvadmin.sock;
  }
}

uWSGIの起動:

uwsgi --uid root -s /tmp/esrvadmin.sock --chown-socket nobody:root \
  --file /var/www/sitios/manten/srv.py \
  --processes 2 --callable app --pidfile /var/run/edesarrollos/esrvadmin.pid

フラスココードを使用したPython:

import os, subprocess
from flask import Flask, abort, request
app = Flask(__name__)

DETO_DIR = '/var/www/sitios/manten/detos'

@app.route('/detonate')
def index():
  #return str(subprocess.check_output(['ls','-l']))
  token = request.args.get('token','')
  if token != '':
     # Si no existe el directorio de detonatores, se crea
     if not os.path.exists(DETO_DIR):
       os.mkdir(DETO_DIR)
     if os.path.isfile(DETO_DIR+"/"+token):
       try:
         os.system(open(DETO_DIR+"/"+token).read())
       except Exception as ex:
         return str(ex)
       return "Reiniciado Correctamente"
     else:
       abort(404) 
  else:
    abort(404)

if __name__ == "__main__":
    app.run(debug=True,host='0.0.0.0')

メインモードでは、os.system( "something args")内で何でも実行し、 "service something start"を実行しても、HTTP応答を受信できます。また、サブプロセス関数を試してみましたが、うまくいきませんでした。

しかし、NGINX-uWSGIから実行すると、永遠に待機しているhttpリクエストが表示されます。もちろん、応答はありませんが、ジョブは実行されます(サービスの開始)。

私が見つけたログの最良のエラーの説明:

2013/01/28 03:38:24 [error] 3978#0: *3 upstream timed out (110: Connection timed out) 
while reading response header from upstream, client: 
127.0.0.1, server: 127.0.0.1, request: "GET
/detonate?token=start-    
a81260812b643d8672ccf9570033109f200595779e0a352e630a75760328e2d375025ef349e
3d599f368092abb63511f-23611e81194b04d5d0a6d0f02baf7fb9
HTTP/1.1", upstream: "uwsgi://unix:/tmp/esrvadmin.sock:", host: "127.0.0.1:4450"

何が起こっているのかについて何か考えはありますか?

4

1 に答える 1

2

ここを読んでください:http://uwsgi-docs.readthedocs.org/en/latest/ThingsToKnow.html(--close-on-execの部分)そしてお願いします、お願いします、rootとしてuWSGIを実行しないでください!

于 2013-01-28T10:35:47.483 に答える