Publish Python Console App

I am running python application on my local0 machine, which is linked to Mysql Database exist on this server. I have PY file and I am using BAT windows file by calling:
python C:\Users\PC\Desktop\test\AZAutoBuy\Main.py

I need to upload this code on the Linode Linux server and run it online. How can I accomplish this?

2 Replies

You can transfer the file though SSH with the scp command to (for example) /home/user/Main.py.

I'm not a Windows user, but you can check here how to use pscp to transfer files from Windows to GNU/Linux.

Once you have it on your server, you could run it once just like you do Windows:

python /home/user/Main.py

Or if you want to run it in the background, add & at the end of the line, like so:

python /home/user/Main.py &

I don't know what does your script do, but you could use a cron job to run it at boot or at certain time intervals.

Read more about SCP and cron.

Many thanks,

I used putty to run the python program. but when I closed the putty the application is terminated.

Shall I run it use a cron job?

On the other hand, what do you mean by "if you want to run it in the background, add &"?

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct