几个月前,我获得了安装了Debian 8 Jessie的VPS。 对我来说奇怪的是,在执行了一些操作后(比如服务[停止|启动|重启],debian没有通知我(例如:重启nginx:nginx,就像老debian 7 wheezy一样)。 昨天,我安装在我的虚拟机Debian 8 Jessie上,但“bug”仍然存在。 我应该安装一些额外的库,还是设置它们? 提前谢谢。
答案 0 :(得分:0)
Debian现在使用systemd
。
systemctl start example1
调查systemd
在启动或重启/关闭时挂起的原因。
通过cmdline增加详细程度:添加" systemd.log_target = kmsg systemd.log_level = debug"
[ /etc/default/grub ]
GRUB_CMDLINE_LINUX="systemd.log_target=kmsg systemd.log_level=debug" <--- Add here (by uncommenting you can easily switch to debug)
# update-grub
答案 1 :(得分:0)
Systemd不像旧的SysV脚本那么冗长,所以你描述的&#34; bug&#34;意图是行为。
旧命令,例如&#34; service&#34;只是简单的符号链接/脚本,它将工作委托给systemd。 据我所知,/ etc / init.d脚本也是如此。