Questions tagged «systemctl»

3
与非tty交互时,如何使systemctl彩色打印?
当我运行这样的命令时: # systemctl status plexmediaserver 我得到很好的彩色输出。但是当我运行以下命令时: # watch -n300 --color systemctl status plexmediaserver 有什么办法可以watch用from的颜色执行此命令systemctl?我已经看过手册页,systemctl但是在任何地方都没有看到对颜色的引用。


1
systemctl如何计划系统关闭?
当我输入时shutdown -h +30,Linux会以某种方式在30分钟内安排运行级别的更改。在Debian上,/sbin/shutdown是的符号链接/bin/systemctl。我的测试表明,shutdown它既不使用cron也不使用systemd计时器。 系统关机是如何实现的systemd?

1
sys-subsystem-net-devices的启动作业正在运行
所以前一段时间,我无法让wifi自动在Arch Linux中自动连接,我查阅了一些视频,发现其中一个使我执行命令时先执行sudo systemctl enable类似操作netctl-auto@,然后执行类似操作。好吧,我发现那行不通,所以我放弃了它。现在,在启动时,我收到一条加载时间为1m30的消息,内容为“正在运行sys-subsystem-net-devices-enp0s26u1u1.ervice.device的启动作业”。回想起来,当我早些时候输入该代码时,我无意中输入了该代码,sudo systemctl enable netctl-auto@enp0s26u1u1.ervice因为它告诉我要这样做,只是我搞砸了并且忘记了服务中的。Idk该怎么办,我尝试输入禁用代码sudo systemctl disable netctl-auto@enp0s26u1u1.ervice,即使sudo systemctl disable netctl-auto@enp0s26u1u1.ervice.device没有任何反应。有人可以帮我拆开计算机XD吗 谢谢! 编辑: 所以我想通了。对于那些遇到相同类型的启动问题的用户,由于“正在为sys-subsystem-net-devices正在运行启动作业...”而需要等待1到30分钟,然后启动计算机,转到路径etc / systemd /系统,然后在其中的文件夹中查找试图启动的名称。我的问题位于一个名为multi-user.target.wants的文件夹中。您必须在那打开一个终端并运行sudo rm(文件名)才能删除它。希望我与自己的对话可以帮助某人XD

1
使用systemctl启动的进程不会抛出错误,但不会出现在进程列表中?
Unix新手在这里。我想开始gunicorn有systemctl。没有出现错误消息,但它也没有显示在进程列表中: $ sudo systemctl start gunicorn $ ps aux | grep gunicorn test+ 29902 0.0 0.0 14224 924 pts/0 S+ 11:13 0:00 grep --color=auto gunicorn 它可能正在运行,但看不见吗? 或者如果没有,我该如何调试它为什么不运行? 更新:刚试过systemctl status gunicorn并得到了这个: ● gunicorn.service - Gunicorn Application Server handling myapp Loaded: loaded (/etc/systemd/system/gunicorn.service; enabled; vendor preset: enabled) Active: inactive (dead) (Result: exit-code) …

1
如何配置systemd服务以在启动之间使用预定义的顺序和超时来启动/停止进程?
我使用systemd通过使用Requires / After / Before / BindsTo字段按顺序启动/停止4个服务。 systemctl start service01 initiat这样的开始顺序: service01 - > service02 - > service03 - > service04 停止动作通过BindTo在service0 [234]侧配置。它们绑定到service01,因此如果它停止,其他服务也将被停止。 但是由于一些问题,应该在service02和service03 start之间配置5-10秒的延迟。 可以使用systemd吗? 当然,我可以在service03的ExecStart开头添加“sleep 10”,但也许还有一些其他方法可以使用systemd。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.