go-daemon/README.md

20 lines
707 B
Markdown
Raw Normal View History

2023-07-08 13:51:35 +03:00
# go-daemon
2023-07-24 16:44:56 +03:00
A Linux daemon runs continuously written in golang. Refer to [ahenk-docs/dev](https://git.aliberksandikci.com.tr/Liderahenk/ahenk-docs/src/branch/main/dev/resources.md#daemon-linux) for resources
<br>
---
<br>
### Summary - [MakeUseOf](https://www.makeuseof.com/create-daemons-on-linux/)
Usually daemons start on system startup and run continuously until the system shuts down. They do NOT send messages to the console or screen in any way.
It is not mandatory but daemon processes are usually named to end with the letter **d**
- Initial operations, such as reading configuration files or obtaining necessary system resources, must be performed before the process becomes a daemon
-