3

There are plenty entries on the internet on how to create a daemon using python in unix but I couldn't find anything mentioning how to do this in OpenVMS. Does anybody know how to create daemons (or VMS equivalent) in OpenVMS using python?

ZenaCat
  • 33
  • 1

1 Answers1

2

You just have to run it like that:

$ run /detach /process=daemon_name python_program

More information here

Luc M
  • 16,630
  • 26
  • 74
  • 89