我在Ubuntu服务器上,一旦我安装supervisord它会重新启动?
我怎样才能find这个?
只需重新启动,看看是否开始:)
你可以使用Ubuntu的sysv-rc-conf,其中Centos或类似的可能使用chkconfig
如果它没有安装
sudo apt-get install sysv-rc-conf
然后
sysv-rc-conf supervisord on
检查你的脚本是/etc/init.d/supervisor还是类似的,在/etc/rc?.d中有相关的符号链接。 如果不是这样的话
update-rc.d supervisor defaults
一旦你把一个启动脚本放到/etc/init.d中,就应该这样做。
话虽如此,如果您从一个软件包安装Supervisor,并且没有安装并设置一个启动脚本,您有权向软件包维护人员投诉。