Debianサーバーで実行されている小さなPythonスクリプトに少し問題があります。
最初に何をすべきか:
-サーバーからリストを取得する->動作中
-実際の文字列リストに変換する->動作中
-ファイルに書き込む->何もしない...
すでにPythonインターフェース(>>>)で同じコードを使用しようとしましたが、すべてが適切に書き込まれます。
ファイルはすでに作成されており、chmod777がインストールされています。
偶然ではないかどうかをチェックしても、ファイルをロックするそのsciptの別のインスタンスが実行されていますが、何も実行されていません...
起動時にファイルが書き込まれないのに、インターフェイスで書き込まれる理由を誰かが知っていますか?
そして今、これがスクリプト自体です:
#!/usr/bin/env python
import urllib
import sys
import time
import re
exitNodes = []
readableNodes = []
class BlockTor():
def getListFromWeb(myself):
url = "https://www.dan.me.uk/torlist/"
#url = "file:///E:/test.txt"
try:
for line in urllib.request.urlopen(url):
exitNodes.append(str(line, encoding='utf8'))
for node in exitNodes:
readableNodes.append(re.sub('\\n', '', node))
#print(exitNodes)
#sys.exit()
except:
try:
f = open("/var/log/torblocker.log", "a")
#f = open("E:\\logfile.log", "a")
f.write("[" + time.strftime("%a, %d %b %Y %H:%M") + "] Error while loading new tornodes")
f.close()
except:
print("Can't write log")
pass
sys.exit()
pass
def buildList(myself):
f = open("/etc/apache2/torlist/tor-ip.conf", "w")
#f = open ("E:\\test-ips.conf", "w")
f.write('<RequireAll>\n')
f.write(' Require all granted\n')
for line in readableNodes:
f.write(' Require not ip ' + line + '\n')
f.write('</RequireAll>')
f.close()
try:
f = open("/var/log/torblocker.log", "a")
#f = open("E:\\logfile.log", "a")
f.write("[" + time.strftime("%a, %d %b %Y %H:%M") + "] Sucessfully updated tor blacklist")
f.close()
except:
pass
def torhandler(myself):
BlockTor.getListFromWeb(myself)
BlockTor.buildList(myself)
if __name__ == "__main__":
asdf = BlockTor()
BlockTor.torhandler(asdf)
編集:
言及するのを忘れた-テストしたい場合は注意してください:このサーバーは30分ごとに1つのリクエストのみを許可します