linux – upstart看不到我的工作

在Ubuntu 12.10中
user@xyz:~$sudo initctl --version
initctl (upstart 1.5)
Copyright (C) 2012 Scott James Remnant,Canonical Ltd.

This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
user@xyz:~$ls -l /etc/init/rs-comm.conf
-rw-r--r-- 1 root root 349 нояб. 15 03:22 /etc/init/rs-comm.conf
user@xyz:~$sudo initctl reload-configuration
user@xyz:~$sudo initctl start rs-comm
initctl: Unknown job: rs-comm

解决方法

您的工作可能包含无效的语法,这意味着Upstart不会考虑它.尝试以普通用户身份运行以下用户(而不是root用户):
init-checkconf /etc/init/rs-comm.conf

相关文章

文件查找(find) 1 find 简单的说,就是实时查找指定的内容或条件。特点:最新、最快、最准确。 用法:...
非交互式添加分区 方法一 添加/deb/sdb 下的分区,其实位置为1到1000M,第二个分区位置为1001至3000M,...
编译安装httpd 1 去官网下载源码包 为避免非法软件,一定要去官网下载http://www.apache.org httpd-2.4...
gdisk用法 gdisk - InteractiveGUIDpartitiontable (GPT) manipulator GPTfdisk (akagdisk) isatext-mo...
1 一定用快捷键 这里简单的说下几个常用的快捷按键。 1.1 移动光标快捷键 Crtl + a 光标回到命令行...
bash shell中测试命令 test命令提供了if-than语句中测试不同条件的途径。如果test命令中列出的条件成立...