我有一个服务文件/etc/init.d/supervisord,我可以通过发出命令来启动和停止服务
sudo service supervisord start
现在我想在机器重启时让supervisord自动启动,我使用
chkconfig --add supervisord
但是,它会返回错误
service supervisord does not support chkconfig
因此,我想添加两行以使其与chkconfig一起使用,以便在服务器重启时重新启动
# chkconfig: 345 99 01
# description: some startup script
有什么问题吗?