使用 supervisord 监控管理的进程必须以 nodaemon 启动,而 tomcat 的 startup.sh 脚本是daemon方式的,如果不做修改的话,supervisord 会一直报错,那就没法玩了。
办法是:
在 startup.sh 的最后的
exec "$PRGDIR"/"$EXECUTABLE" start "[email protected]" 改为
exec "$PRGDIR"/"$EXECUTABLE" run "[email protected]"
时间: 2024-12-20 05:28:48