averainy's Blog
averainy
Links
Systemd
08
Nov 2023
Use Systemd Auto Start Podman Container
使用docker的时候,只要将容器设置成restart:always就能使容器自启动,但是在podman里这样做是无效的。因为它使用systemd来管理服务。通过以下步骤即可创建自启动服务。 生成system service文件 podman generate systemd …
23
Oct 2023
How to Switch Boot Target to Text or GUI in Systemd Linux
Find wich target uni is used by default sudo systemctl get-default Switching boot target to text To change boot target to the text mode: …
08
Nov 2022
使用python监控systemd服务修改版
以前写过一个监控systemd service的脚本,在使用过程中发现了一些问题,比如service不存在时,或者service状态是 **Active: active (exited)**的时候会误认为service未启动,因此做了一下修正。 代码如下: # -*- …
02
Sep 2022
解决nginx: [emerg] host not found in upstream 'xxx.com'
我用nginx配置了一个反向代理,每次服务器重启之后,nginx都会报:nginx: [emerg] host not found in upstream 'xxx.com'的错误。这个错误的原因其实很简单,就是nginx无法解析xxx.com。解决方法就是以下流程: 确 …
05
May 2022
Create Kms Service in Linux
I create a kms service for the lan computers in a linux server recently,so record the steps download kms source and compile it cd …
02
Apr 2022
Monitor Systemd Services With Python
systemd service有时会自动退出。在这种情况下,为了保证服务能够24*7运行,需要额外做一些监控,当服务挂掉之后能够自动重启。这里我使用python写了一个监控脚本,将这个脚本放到定时任务中,就能够做到自动重启的效果。 代码如下 # -*- coding: utf-8 …