org.apache.zookeeper.server.ZooKeeperServerMain.initializeAndRun()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中org.apache.zookeeper.server.ZooKeeperServerMain.initializeAndRun()方法的一些代码示例,展示了ZooKeeperServerMain.initializeAndRun()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperServerMain.initializeAndRun()方法的具体详情如下:
包路径:org.apache.zookeeper.server.ZooKeeperServerMain
类名称:ZooKeeperServerMain
方法名:initializeAndRun

ZooKeeperServerMain.initializeAndRun介绍

暂无

代码示例

代码示例来源:origin: apache/incubator-pinot

@Override
public void initializeAndRun(String[] args)
  throws QuorumPeerConfig.ConfigException, IOException {
 super.initializeAndRun(args);
}

代码示例来源:origin: org.apache.zookeeper/zookeeper

public static void main(String[] args) {
  ZooKeeperServerMain main = new ZooKeeperServerMain();
  try {
    main.initializeAndRun(args);
  } catch (IllegalArgumentException e) {
    LOG.error("Invalid arguments, exiting abnormally", e);
    LOG.info(USAGE);
    System.err.println(USAGE);
    System.exit(2);
  } catch (ConfigException e) {
    LOG.error("Invalid config, exiting abnormally", e);
    System.err.println("Invalid config, exiting abnormally");
    System.exit(2);
  } catch (Exception e) {
    LOG.error("Unexpected exception, exiting abnormally", e);
    System.exit(1);
  }
  LOG.info("Exiting normally");
  System.exit(0);
}

代码示例来源:origin: apache/zookeeper

public static void main(String[] args) {
  ZooKeeperServerMain main = new ZooKeeperServerMain();
  try {
    main.initializeAndRun(args);
  } catch (IllegalArgumentException e) {
    LOG.error("Invalid arguments, exiting abnormally", e);
    LOG.info(USAGE);
    System.err.println(USAGE);
    System.exit(ExitCode.INVALID_INVOCATION.getValue());
  } catch (ConfigException e) {
    LOG.error("Invalid config, exiting abnormally", e);
    System.err.println("Invalid config, exiting abnormally");
    System.exit(ExitCode.INVALID_INVOCATION.getValue());
  } catch (DatadirException e) {
    LOG.error("Unable to access datadir, exiting abnormally", e);
    System.err.println("Unable to access datadir, exiting abnormally");
    System.exit(ExitCode.UNABLE_TO_ACCESS_DATADIR.getValue());
  } catch (AdminServerException e) {
    LOG.error("Unable to start AdminServer, exiting abnormally", e);
    System.err.println("Unable to start AdminServer, exiting abnormally");
    System.exit(ExitCode.ERROR_STARTING_ADMIN_SERVER.getValue());
  } catch (Exception e) {
    LOG.error("Unexpected exception, exiting abnormally", e);
    System.exit(ExitCode.UNEXPECTED_ERROR.getValue());
  }
  LOG.info("Exiting normally");
  System.exit(ExitCode.EXECUTION_FINISHED.getValue());
}

代码示例来源:origin: uber/chaperone

@Override
public void initializeAndRun(String[] args)
  throws QuorumPeerConfig.ConfigException, IOException {
 super.initializeAndRun(args);
}

代码示例来源:origin: uber/uReplicator

@Override
public void initializeAndRun(String[] args)
  throws QuorumPeerConfig.ConfigException, IOException {
 super.initializeAndRun(args);
}

代码示例来源:origin: uber/uReplicator

@Override
public void initializeAndRun(String[] args)
  throws QuorumPeerConfig.ConfigException, IOException {
 super.initializeAndRun(args);
}

代码示例来源:origin: uber/uReplicator

@Override
public void initializeAndRun(String[] args)
  throws QuorumPeerConfig.ConfigException, IOException {
 super.initializeAndRun(args);
}

代码示例来源:origin: org.apache.hadoop/zookeeper

public static void main(String[] args) {
  ZooKeeperServerMain main = new ZooKeeperServerMain();
  try {
    main.initializeAndRun(args);
  } catch (IllegalArgumentException e) {
    LOG.fatal("Invalid arguments, exiting abnormally", e);
    LOG.info(USAGE);
    System.err.println(USAGE);
    System.exit(2);
  } catch (ConfigException e) {
    LOG.fatal("Invalid config, exiting abnormally", e);
    System.err.println("Invalid config, exiting abnormally");
    System.exit(2);
  } catch (Exception e) {
    LOG.fatal("Unexpected exception, exiting abnormally", e);
    System.exit(1);
  }
  LOG.info("Exiting normally");
  System.exit(0);
}

相关文章