Questions tagged «systemd»

8
如何将Systemd服务的输出重定向到文件
我正在尝试将systemd服务的输出重定向到文件,但它似乎不起作用: [Unit] Description=customprocess After=network.target [Service] Type=forking ExecStart=/usr/local/bin/binary1 agent -config-dir /etc/sample.d/server StandardOutput=/var/log1.log StandardError=/var/log2.log Restart=always [Install] WantedBy=multi-user.target 请更正我的方法。
171 linux  centos7  systemd  rhel  rhel7 

9
如何在centos 7上使用iptables?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 去年关闭。 改善这个问题 我以最少的配置(OS +开发工具)安装了CentOS 7。我正在尝试打开80端口进行httpd服务,但是iptables服务出了点问题...这是怎么回事?我究竟做错了什么? # ifconfig/sbin/service iptables save bash: ifconfig/sbin/service: No such file or directory # /sbin/service iptables save The service command supports only basic LSB actions (start, stop, restart, try-restart, reload, force-reload, status). For other actions, please try to use systemctl. # sudo service …

2
在特定服务之后启动systemd服务?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 2年前关闭。 改善这个问题 我有一个一般性的问题。成功启动*.service特定单元后,如何启动systemd单元*.service? 更具体的问题是,如何website.service仅在启动后才能mongodb.service启动?换句话说website.service应该依靠mongodb.service。
81 service  systemd 

5
Python守护程序和systemd服务
我有一个简单的Python脚本充当守护程序。我试图创建systemd脚本,以便能够在启动过程中启动此脚本。 当前的systemd脚本: [Unit] Description=Text After=syslog.target [Service] Type=forking User=node Group=node WorkingDirectory=/home/node/Node/ PIDFile=/var/run/zebra.pid ExecStart=/home/node/Node/node.py [Install] WantedBy=multi-user.target node.py: if __name__ == '__main__': with daemon.DaemonContext(): check = Node() check.run() run包含while True循环。 我尝试使用运行该服务systemctl start zebra-node.service。不幸的是,服务从未完成说明序列-我必须按Ctrl + C。脚本正在运行,但是状态为激活,一段时间后变为停用状态。现在我正在使用python-daemon(但是在我尝试不使用它之前,症状是相似的)。 我应该为脚本实现一些其他功能还是systemd文件不正确?

1
Ubuntu Docker映像中的systemd和systemctl [关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 4年前关闭。 改善这个问题 问题 systemd在Ubuntu Docker映像中似乎无效或不可用。 设定 我正在从中运行Docker容器 ubuntu:16.04和ubuntu:16.10镜像。 测验 如果我执行: systemctl status ssh 在里面 16,04容器中 结果是错误 Failed to connect to bus: No such file or directory 在16.10容器中的错误是:bash: systemctl: command not found。 如果我which systemctl在16.04容器中找到systemctl,但在16.10容器中。 我发现了 /lib/systemd存在。 我尝试使用以下方式安装systemd: apt-get install systemd libpam-systemd systemd-ui 然后 which systemctl找到systemctl16.10 但systemctl status ssh仍然给出错误Failed …

6
修复systemd服务203 / EXEC故障(无此类文件或目录)
我正在尝试设置一个简单的systemd计时器来每天午夜运行bash脚本。 systemctl --user status backup.service 失败并记录以下内容: backup.service: Failed at step EXEC spawning /home/user/.scripts/backup.sh: No such file or directory. backup.service: Main process exited, code=exited, status=203/EXEC Failed to start backup. backup.service: Unit entered failed state. backup.service: Failed with result 'exit-code'. 我迷路了,因为文件和目录存在。该脚本是可执行的,为了检查,我什至将权限设置为777。 一些背景: 在backup.timer和backup.service单元文件位于/home/user/.config/systemd/user。 backup.timer 已加载并处于活动状态,当前正在等待午夜。 看起来是这样的: [Unit] Description=Runs backup at 0000 [Timer] …
74 bash  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.