All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.bootstrap.commands.MigrateCmd Maven / Gradle / Ivy

There is a newer version: 6.1.4
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog2.bootstrap.commands;

import com.github.rvesse.airline.annotations.Command;
import org.graylog2.commands.Server;
import org.graylog2.migrations.MigrationType;
import org.graylog2.plugin.Tools;
import org.graylog2.plugin.Version;
import org.jsoftbiz.utils.OS;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Command(name = MigrateCmd.MIGRATION_COMMAND, description = "Run Graylog server migrations")
public class MigrateCmd extends Server {
    public static final String MIGRATION_COMMAND = "migrate";

    private static final Logger LOG = LoggerFactory.getLogger(MigrateCmd.class);

    private final Version version = Version.CURRENT_CLASSPATH;

    public MigrateCmd() {
        super(MIGRATION_COMMAND);
    }

    @Override
    protected void startCommand() {
        final OS os = OS.getOs();

        LOG.info("Graylog {} {} migration command", commandName, version);
        LOG.info("JRE: {}", Tools.getSystemInformation());
        LOG.info("Deployment: {}", configuration.getInstallationSource());
        LOG.info("OS: {}", os.getPlatformName());
        LOG.info("Arch: {}", os.getArch());

        try {
            runMigrations(this.injector, MigrationType.STANDARD);
        } catch (Exception e) {
            LOG.warn("Exception while running migrations", e);
            System.exit(1);
        }

        System.exit(0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy