[python] crontab을 통해 Python 스크립트 실행

Linux crontab을 사용하여 Python 스크립트를 실행하려고합니다 . 이 스크립트를 10 분마다 실행하고 싶습니다.

나는 많은 해결책을 찾았지만 그들 중 어느 것도 작동하지 않았습니다. 예 : /etc/cron.d 에서 anacron을 편집 하거나 crontab -e. 이 줄을 파일 끝에 넣었지만 아무것도 변경하지 않습니다. 서비스를 다시 시작해야합니까?

*/2 * * * * /usr/bin/python /home/souza/Documets/Listener/listener.py

이를 구성하려면 어떤 파일을 편집해야합니까?


다음은 스크립트입니다.

#!/usr/bin/python
# -*- coding: iso-8859-15 -*-

import json
import os
import pycurl
import sys
import cStringIO

if __name__ == "__main__":

    name_server_standart = "Server created by script %d"
    json_file_standart = "{ \"server\" : {  \"name\" : \"%s\", \"imageRef\" : \"%s\", \"flavorRef\" : \"%s\" } }"

    curl_auth_token = pycurl.Curl()

    gettoken = cStringIO.StringIO()

    curl_auth_token.setopt(pycurl.URL, "http://192.168.100.241:8774/v1.1")
    curl_auth_token.setopt(pycurl.POST, 1)
    curl_auth_token.setopt(pycurl.HTTPHEADER, ["X-Auth-User: cpca",
                          "X-Auth-Key: 438ac2d9-689f-4c50-9d00-c2883cfd38d0"])

    curl_auth_token.setopt(pycurl.HEADERFUNCTION, gettoken.write)
    curl_auth_token.perform()
    chg = gettoken.getvalue()

    auth_token = chg[chg.find("X-Auth-Token: ")+len("X-Auth-Token: ") : chg.find("X-Server-Management-Url:")-1]

    token = "X-Auth-Token: {0}".format(auth_token)
    curl_auth_token.close()

    #----------------------------

    getter = cStringIO.StringIO()
    curl_hab_image = pycurl.Curl()
    curl_hab_image.setopt(pycurl.URL, "http://192.168.100.241:8774/v1.1/nuvemcpca/images/7")
    curl_hab_image.setopt(pycurl.HTTPGET, 1) #tirei essa linha e funcionou, nao sei porque
    curl_hab_image.setopt(pycurl.HTTPHEADER, [token])

    curl_hab_image.setopt(pycurl.WRITEFUNCTION, getter.write)
    #curl_list.setopt(pycurl.VERBOSE, 1)
    curl_hab_image.perform()
    curl_hab_image.close()

    getter = cStringIO.StringIO()

    curl_list = pycurl.Curl()
    curl_list.setopt(pycurl.URL, "http://192.168.100.241:8774/v1.1/nuvemcpca/servers/detail")
    curl_list.setopt(pycurl.HTTPGET, 1) #tirei essa linha e funcionou, nao sei porque
    curl_list.setopt(pycurl.HTTPHEADER, [token])

    curl_list.setopt(pycurl.WRITEFUNCTION, getter.write)
    #curl_list.setopt(pycurl.VERBOSE, 1)
    curl_list.perform()
    curl_list.close()

    #----------------------------

    resp = getter.getvalue()

    con = int(resp.count("status"))

    s = json.loads(resp)

    lst = []

    for i in range(con):
        lst.append(s['servers'][i]['status'])

    for j in range(len(lst)):
        actual = lst.pop()
        print actual

        if actual != "ACTIVE" and actual != "BUILD" and actual != "REBOOT" and actual != "RESIZE":

            print "Entra no If"

            f = file('counter', 'r+w')

            num = 0
            for line in f:
                num = line

            content = int(num)+1

            ins = str(content)

            f.seek(0)
            f.write(ins)
            f.truncate()
            f.close()

            print "Contador"

            json_file = file('json_file_create_server.json','r+w')

            name_server_final = name_server_standart % content
            path_to_image = "http://192.168.100.241:8774/v1.1/nuvemcpca/images/7"
            path_to_flavor = "http://192.168.100.241:8774/v1.1/nuvemcpca/flavors/1"

            new_json_file_content = json_file_standart % (name_server_final, path_to_image, path_to_flavor)

            json_file.seek(0)
            json_file.write(new_json_file_content)
            json_file.truncate()
            json_file.close()

            print "Json File"

            fil = file("json_file_create_server.json")
            siz = os.path.getsize("json_file_create_server.json")

            cont_size = "Content-Length: %d" % siz
            cont_type = "Content-Type: application/json"
            accept = "Accept: application/json"

            c_create_servers = pycurl.Curl()

            logger = cStringIO.StringIO()

            c_create_servers.setopt(pycurl.URL, "http://192.168.100.241:8774/v1.1/nuvemcpca/servers")

            c_create_servers.setopt(pycurl.HTTPHEADER, [token, cont_type, accept, cont_size])

            c_create_servers.setopt(pycurl.POST, 1)

            c_create_servers.setopt(pycurl.INFILE, fil)

            c_create_servers.setopt(pycurl.INFILESIZE, siz)

            c_create_servers.setopt(pycurl.WRITEFUNCTION, logger.write)

            print "Teste perform"

            c_create_servers.perform()

            print logger.getvalue()

            c_create_servers.close()



답변

여기crontab -e 에서 튜토리얼을 사용 하고 따르십시오 .

빈도를 지정하는 방법에 대한 지침은 3 번 지점을 참조하십시오.

요구 사항에 따라 효과적으로 다음과 같아야합니다.

*/10 * * * * /usr/bin/python script.py


답변

다음으로 foo.py시작 하는 파일에 스크립트를 넣으십시오.

#!/usr/bin/python

그런 다음 사용하여 해당 스크립트에 실행 권한을 부여하십시오.

chmod a+x foo.py

foo.py파일 의 전체 경로를crontab .

shebang을 처리하는 execve (2) 문서를 참조하십시오 .


답변

당신이 언급했듯이 그것은 아무것도 변경하지 않습니다 .

먼저 아래와 같이 crontab 실행에서 표준 입력표준 오류 를 모두 리디렉션해야 합니다.

*/2 * * * * /usr/bin/python /home/souza/Documets/Listener/listener.py > /tmp/listener.log 2>&1

그런 다음 파일 /tmp/listener.log을보고 스크립트가 예상대로 실행되었는지 확인할 수 있습니다 .

둘째, 변경 사항 이 의미하는 바 는 프로그램에서 만든 파일을 보는 입니다.

f = file('counter', 'r+w')
json_file = file('json_file_create_server.json', 'r+w')

위의 crontab 작업 /home/souza/Documets/Listener은 cron 작업이이 디렉토리에서 실행되지 않고 프로그램에서 상대 경로를 사용하므로 디렉토리에 이러한 파일을 생성 하지 않습니다. 따라서이 파일을 directory에 만들려면 /home/souza/Documets/Listener다음 cron 작업이 트릭을 수행합니다.

*/2 * * * * cd /home/souza/Documets/Listener && /usr/bin/python listener.py > /tmp/listener.log 2>&1

작업 디렉토리로 변경하고 거기에서 스크립트를 실행하면 그 자리에서 생성 된 파일을 볼 수 있습니다.


답변