Ubuntu16.04
ここでトルネードプログラムを開始します
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, options
define("port",default=8000, help="run on the given port", type=int)classIndexHandler(tornado.web.RequestHandler):
def get(self):
self.write("hello")if __name__ =="__main__":
tornado.options.parse_command_line()
app = tornado.web.Application(handlers=[(r"/", IndexHandler)])
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
Pythonを起動するコマンドをシェルスクリプトに記述します
#! /bin/bash
nohup python3 /home/trunk/work/test/py-test/master/14.restart_built.py &
**スクリプトは、オープン実行権限を取得する必要がありますsudo chmod 777 xxx.sh **
sudo vim /etc/profile
シェルスクリプトパスを追加
... /home/Desktop/selfstarting/ubuntu_start.sh
Ubuntuを再起動してTornadoプログラムを開始します