如何使用nohub在AWS EC2后端运行python代码?

时间:2018-04-13 12:48:26

标签: python amazon-ec2

我正在尝试在AWS EC2中运行Python代码vote.py来收集一些国家/地区的投票信息数据。但是,我目前的问题是,如果我停止与EC2的连接,那么该过程将被停止。因此,我遵循How to run a Python script in the background even after I logout SSH?中的指示。我目前的结果是:

[ec2-user@ip-172-31-40-248 task1]$ pwd
/home/ec2-user/task1
[ec2-user@ip-172-31-40-248 task1]$ nohup /home/ec2-user/task1/vote.py &
[1] 27248
[ec2-user@ip-172-31-40-248 task1]$ nohup: ignoring input and appending 
output to ‘nohup.out’
Connection reset by 52.47.192.210 port 22

命令是什么" nohup:忽略输入和追加 输出到'nohup.out'"意思?我该如何监督这个过程?此代码可能会在ec2中运行几天。谢谢!

0 个答案:

没有答案