启动AzkabanWebServer报如下错误:

点击进入 ActiveExecutors.setupExecutors发现调用的是
loadExecutors()继续深入
private ImmutableSet<Executor> loadExecutors() throws ExecutorManagerException {
logger.info("Initializing executors from database.");
return ImmutableSet.copyOf(this.executorLoader.fetchActiveExecutors());
}
继续深入调用JdbcExecutorLoader的fetchActiveExecutors方法
public List<Executor> fetchActiveExecutors() throws ExecutorManagerException {
return this.executorDao.fetchActiveExecutors();
}
继续深入调用DAO方法
List<Executor> fetchActiveExecutors() throws ExecutorManagerException {
try {
return this.dbOperator
.query(FetchExecutorHandler.FETCH_ACTIVE_EXECUTORS, new FetchExecutorHandler());





![[附源码]Python计算机毕业设计Django大学生考勤管理系统论文](https://img-blog.csdnimg.cn/fc66071795244d90a0887e0d4b1404ae.png)












