Python Forum
Python3x running only with one instance (how can I prevent too many running instance)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python3x running only with one instance (how can I prevent too many running instance)
#1
i tried to solve this problem with socket module but I couldn't. do you know useful efficent solution to solve this problem ? thanks.

example: when users reopened my program, it will give "program has already running please close other instance" error and will be closed.
Reply
#2
A lockfile. Or, if you like very easy things, tendo.singleton.SingleInstance() https://github.com/pycontribs/tendo/blob...ngleton.py
Reply
#3
(Jul-19-2017, 07:59 PM)nilamo Wrote: A lockfile.  Or, if you like very easy things, tendo.singleton.SingleInstance() https://github.com/pycontribs/tendo/blob...ngleton.py


i cant' trust lockfile because this file can be deleted from other users. i heard mutex in c/c++ language to do this. does mutex avaliable in python ?

i never seen singleton before. I'll try thanks.
Reply
#4
The example is also using a lockfile inside a temporary directory.

A stupid solution can be to seek for all processes with the name 'python.exe' and look if the script is in cmdline.
The module psutil seems good use for it: http://pythonhosted.org/psutil/#psutil.process_iter

import sys
import psutil
import time

procs = [p for p in psutil.process_iter() if 'python.exe' in p.name() and __file__ in p.cmdline()]
if len(procs) > 1:
    print('Process is already running...')
    sys.exit(1)


for i in range(10):
    print('Running...')
    time.sleep(2)
But it's still possible to run the program twice, if you rename the python.exe or the script itself.
The lockfile should be the best solution for it. When the user deletes the lockfile, he deserves
everything what happens to his computer :-D
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply
#5
(Jul-21-2017, 09:58 AM)DeaD_EyE Wrote: The example is also using a lockfile inside a temporary directory.

A stupid solution can be to seek for all processes with the name 'python.exe' and look if the script is in cmdline.
The module psutil seems good use for it: http://pythonhosted.org/psutil/#psutil.process_iter

import sys
import psutil
import time

procs = [p for p in psutil.process_iter() if 'python.exe' in p.name() and __file__ in p.cmdline()]
if len(procs) > 1:
    print('Process is already running...')
    sys.exit(1)


for i in range(10):
    print('Running...')
    time.sleep(2)
But it's still possible to run the program twice, if you rename the python.exe or the script itself.
The lockfile should be the best solution for it. When the user deletes the lockfile, he deserves
everything what happens to his computer :-D

thanks very much. perhaps you played too many pc games. some pc games do this one instance app process perfectly. for exapmple. I played FIFA 2005 football game too many years ago. when this game be opened, I couldn't open another instance of this game. I made copy of FIFA 2005 for opening the another instance but when I tried to open cloned game, game not opened again. two same games on different location gave "program has already running" error. how did these games on diffirent location give this error ?

and too many another games can do it. examples: League of Legends, Dota2, FIFA games, .....

I think these games use sockets, ports. when another (second) instance of one of this games be opened, it begins to scan ports of operation system and if it finds first instance's port, gives error. but if it couldn't find any port of first instance, doesn't give any error and starts the first instance.
Reply
#6
(Jul-20-2017, 04:10 PM)harun2525 Wrote:
(Jul-19-2017, 07:59 PM)nilamo Wrote: A lockfile.  Or, if you like very easy things, tendo.singleton.SingleInstance() https://github.com/pycontribs/tendo/blob...ngleton.py


i cant' trust lockfile because this file can be deleted from other users. i heard mutex in c/c++ language to do this. does mutex avaliable in python ?

i never seen singleton before. I'll try thanks.

If a user wants to run it twice, and they're willing to delete a lockfile to accomplish it, why not just let them? At that point, they know they could have undefined behavior.

If you try the port path, but use a port that some other program out there in the world is also using, then your program might never be able to run.

If you go with check the filename from psutil, then that doesn't stop someone from creating a wrapper script and just importing your program, so the "running program" has a different name. And then there's the fact that "python.exe" is only on windows, and won't stop someone from just renaming the python binary so that your program is running through "my-personal-python-v3.6.exe" or something.

There WAS a mutex module in python, but it was removed in 3.0 (and was deprecated since 2.6): https://docs.python.org/2/library/mutex....dule-mutex

I think using a lockfile would be the easiest way, since a determined user could just circumvent your checks anyway.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Running script from remote to server invisiblemind 4 540 Mar-28-2025, 07:57 AM
Last Post: buran
  Problem running external process rjdegraff42 0 273 Mar-19-2025, 07:50 PM
Last Post: rjdegraff42
  writing and running code in vscode without saving it akbarza 5 2,181 Mar-03-2025, 08:14 PM
Last Post: Gribouillis
  Detect if another copy of a script is running from within the script gw1500se 4 1,033 Jan-31-2025, 11:30 PM
Last Post: Skaperen
  Python: How to import data from txt, instead of running the data from the code? Melcu54 1 589 Dec-13-2024, 06:50 AM
Last Post: Gribouillis
  Running search/replace across Polars dataframe columns efficiently hobbycoder 3 2,041 Oct-28-2024, 03:18 AM
Last Post: hobbycoder
  Pandas - error when running Pycharm, but works on cmd line zxcv101 2 2,359 Sep-09-2024, 08:03 AM
Last Post: pinkang
  How to share a configured logger between running processes? somhairle69tx 5 1,488 Sep-06-2024, 11:10 PM
Last Post: somhairle69tx
  Running powershell command in flask wtf form robertkwild 10 2,194 Jun-27-2024, 09:49 AM
Last Post: robertkwild
Bug Copying methods to effect the new owner instead of the old instance Daniel285 2 950 Jun-03-2024, 07:58 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020