How to create and configure linux service

How to create and configure linux service
In the previous post, we wrote an HTTP server script that has one drawback - it doesn't start automatically and doesn't work as a service. Here are the steps to configure it as a service in Linux. Script: We already have a startup script named web-server.py. Save it in the directory where it will be permanently stored.…

Simple HTTP server with 208 redirect in Python

Simple HTTP server with 208 redirect in Python
In today's post, I will show you how to start a simple web server that will be accessible within your network, and when users enter its address, they will be redirected to an external address. I created my web server on Debian, and it's written in Python. I used the Flask framework. The server will perform a…

Uptime report – PowerShell

Uptime report – PowerShell
Following the post about the Defender status report in PowerShell, I decided to create a script that will generate a list of servers based on Active Directory data, just like in the previous case, and gather information about the current UpTime and last boot time. In the first step, we need to retrieve a list of computers…