- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们目前在一台主机上运行着许多不同的服务,我们正在广泛使用 systemd,包括用于消息传递的 systemd-notify 和用于服务管理的自己的前端。
我们希望开始在容器内运行这些服务,以简化依赖管理并同时运行多个版本进行测试。我们想要:
请注意;大多数问题都是关于在 docker 容器中运行 systemd 的。这不是这个问题的意思。相反,我想在 systemd 中运行一个(docker?)容器。
最佳答案
我们采用了以下解决方案:
我们决定使用 Podman . Podman 是 RunC 的包装器,其 CLI 工具已调整为 Docker 的直接替代品。然而,因为它不是在守护进程下运行容器(无论如何我更喜欢它),所以几乎不需要任何管道来使 systemd-notify 工作。
只需在 sytemd 服务文件中指定 Environment=NOTIFY_SOCKET=/run/systemd/notify
即可。
参见 here
完整示例:
我正在使用来自:https://github.com/bb4242/sdnotify 的 systemd-notify 测试脚本
docker 文件
FROM python
COPY test.py /
RUN pip install sdnotify
RUN chmod 755 /test.py
ENTRYPOINT ["/usr/local/bin/python", "test.py"]
CMD ["run"]
EXPOSE 8080
build.sh - 创建 Podman 容器,需要与 Dockerfile 和 test.py 脚本位于同一文件夹中。
#!/bin/bash
IMAGE_NAME=python-test
CONTAINER_NAME=python-test
sudo podman build . -t ${IMAGE_NAME}
sudo podman rm ${CONTAINER_NAME}
sudo podman create -e PYTHONUNBUFFERED=true -d --name=${CONTAINER_NAME} ${IMAGE_NAME}
通知测试服务
[Unit]
Description=A test service written in Python
[Service]
# Note: setting PYTHONUNBUFFERED is necessary to see the output of this service in the journal
# See https://docs.python.org/2/using/cmdline.html#envvar-PYTHONUNBUFFERED
Environment=PYTHONUNBUFFERED=true
Environment=NOTIFY_SOCKET=/run/systemd/notify
SyslogIdentifier=notify-test
NotifyAccess=all
ExecStart=/usr/bin/podman start -a python-test
ExecStop=/usr/bin/podman stop python-test
# Note that we use Type=notify here since test.py will send "READY=1"
# when it's finished starting up
Type=notify
[Install]
WantedBy=multi-user.target
所以首先安装podman,将上面url中的test.py、Dockerfile、build.sh放在单独的文件夹中。运行 ./build.sh
。
然后获取.service 文件,并将其与其他systemd 服务文件放在/usr/lib/systemd/user
中。执行 sudo systemctl daemon-reload
。
现在,可以使用 sudo systemctl start notify-test
和 sudo systemctl stop notify-test
启动和停止服务。
systemd 默认情况下会自动将写入 stdout/stderr 的任何内容记录到它自己的日志(可通过 journalctl
访问)和系统日志。
参见:https://www.freedesktop.org/software/systemd/man/systemd.exec.html
SyslogLevelPrefix=Takes a boolean argument. If true andStandardOutput= or StandardError= are set to journal or kmsg (or tothe same settings in combination with +console), log lines written bythe executed process that are prefixed with a log level will beprocessed with this log level set but the prefix removed. If set tofalse, the interpretation of these prefixes is disabled and the loggedlines are passed on as-is. This only applies to log messages writtento stdout or stderr. For details about this prefixing seesd-daemon(3). Defaults to true.
两个问题:
问题:当使用 podman 作为 ExecStart=
时,日志源默认为可执行文件的名称,即“podman”。
解决方案:使用 SyslogIdentifier=
指定日志记录的名称,如上面的 .service 文件示例。
问题:日志行的日志级别之间没有任何区别。
解决方案:如所述here在 systemd 文档中,在日志行前面加上 <7>(用于调试)、<6>(用于信息)、<4>(用于警告)等,让 systemd 在任何地方设置正确的日志级别,包括 syslog。甚至可以免费在 journalctl 工具中获取颜色!
关于docker - 如何在 systemd 中运行在容器中运行的服务,包括 systemd-notify 和日志记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63540832/
我正在尝试在我安装的 Laravel 5.1 中设置 Gulp。我已经运行然后命令 npm install正如 Laravel 文档中所指定的那样,效果很好。 但是,当我现在运行命令时 gulp我收到
我有两个扩展线程的类和一个等待/通知 class A extends Thread { int r = 20; public void run() { try {
我正在尝试在后台服务中启动通知,这也是位置监听器。我有一个功能: public Notification CreateNotification(){ Intent notificati
编辑:我将其范围缩小到 python 代码中 Notifier.notify('Something') 的问题。当 python 脚本从 launchd 启动时,这不会产生预期的行为。我的其他 pyt
我正在尝试使用 bootstrap-notify v3.1.3、typescript、aurelia 和 VS2015 在我的网站上显示警报。 我的 aurelia 组件是: //myAlert.ts
注:other question的标题不同,导致无法识别为匹配的。 系统.类 TCollection = class(TPersistent) protected procedure Notify
我正在将一个项目从 Sprockets 迁移到 Webpacker。 我似乎无法正确运行的最后一件事是通知。 我曾经能够做到:$.notify('Test') 但现在我得到了 Uncaught Typ
我在一个项目中有多个用户控件,其中一个从 XML 中检索项目,创建“ClassItem”类型的对象,并应通知其他用户控件有关这些项目的信息。 我为我的对象创建了一个类(所有项目都将具有的“模型”):
我以为我会理解 Java 中的并发概念,但现在有一件事打破了我的理解: 为什么我必须在同步块(synchronized block)中包含对 wait() 和 notify() 方法的调用? 假设我有
我正在开发 NodeJS/Electron/Angular 应用程序,我正在使用 node-notifier 模块。一切正常,但在我的通知消息底部有一个不合适的“toast”字符串。它仅在我使用“图标
我正在基于Sproutcore 1.9.1的Web应用程序上工作。要从服务器检索数据 发出一个SC.Request.getUrl()请求,该请求在除IE8之外的所有浏览器中都可以正常工作。 对于IE8
我试图写一个关于如何使用wait()和notify()的示例,但是似乎无法通知wait() public class Transfer { private int[] data; pr
我想使用QAudioInput从麦克风捕获声音,对其进行处理然后再播放。据我了解,我需要连接到notify信号和内部处理程序,以便用户使用readAll()函数来获取原始数据。但是问题是,此处理函数永
public class Signal2NoiseRatio { public ImagePlus SingleSNR(ImagePlus imagePlus) throws Interrup
为什么只有第一个任务退出后才调用dispatchGroup.notify? 下面的代码输出如下: 1) Did the other thing **2) Did all the things** 3)
假设线程 T1 正在等待进入同步块(synchronized block),线程 T2 在同步块(synchronized block)内 wait(),并且线程 T3 在同步块(synchroniz
我正在尝试仅使用等待/通知同步来实现合并排序。我知道更高级的结构,例如 Fork/Join、Executors。等等,但我需要在这里使用工作/通知。基于此https://courses.cs.wash
了解 notifyAll 让我对 notify 产生了一些疑问:在典型情况下,我们有多个线程正在等待对 methody notify 的调用。当这种情况发生时,其中一个线程(之前调用了 wait 方法
我正在使用 wait() 和 notify() 编写一个示例程序,但是当调用 notify() 时,会出现多个线程被唤醒而不是一个。 代码是: public class MyQueue { O
根据17.2.4. Interactions of Waits, Notification, and Interruption : Similarly, notifications cannot be
我是一名优秀的程序员,十分优秀!