init.py 3.7 KB
Newer Older
R
Rongfeng Fu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# coding: utf-8
# OceanBase Deploy.
# Copyright (C) 2021 OceanBase
#
# This file is part of OceanBase Deploy.
#
# OceanBase Deploy is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OceanBase Deploy 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OceanBase Deploy.  If not, see <https://www.gnu.org/licenses/>.


from __future__ import absolute_import, division, print_function

R
Rongfeng Fu 已提交
23 24
from _errno import EC_FAIL_TO_INIT_PATH, InitDirFailedErrorMessage

R
Rongfeng Fu 已提交
25 26 27 28 29 30 31

def init(plugin_context, local_home_path, repository_dir, *args, **kwargs):
    cluster_config = plugin_context.cluster_config
    clients = plugin_context.clients
    stdio = plugin_context.stdio
    global_ret = True
    force = getattr(plugin_context.options, 'force', False)
F
v1.5.0  
frf12 已提交
32
    clean = getattr(plugin_context.options, 'clean', False)
R
Rongfeng Fu 已提交
33 34 35 36 37
    stdio.start_loading('Initializes obagent work home')
    for server in cluster_config.servers:
        server_config = cluster_config.get_server_conf(server)
        client = clients[server]
        home_path = server_config['home_path']
R
Rongfeng Fu 已提交
38
        remote_home_path = client.execute_command('echo ${OBD_HOME:-"$HOME"}/.obd').stdout.strip()
R
Rongfeng Fu 已提交
39 40
        remote_repository_dir = repository_dir.replace(local_home_path, remote_home_path)
        stdio.verbose('%s init cluster work home', server)
F
v1.5.0  
frf12 已提交
41 42 43 44 45 46 47 48 49 50 51 52
        need_clean = force
        if clean and not force:
            if client.execute_command('bash -c \'if [[ "$(ls -d {0} 2>/dev/null)" != "" && ! -O {0} ]]; then exit 0; else exit 1; fi\''.format(home_path)):
                owner = client.execute_command("ls -ld %s | awk '{print $3}'" % home_path).stdout.strip()
                global_ret = False
                err_msg = ' {} is not empty, and the owner is {}'.format(home_path, owner)
                stdio.error(EC_FAIL_TO_INIT_PATH.format(server=server, key='home path', msg=err_msg))
                continue
            need_clean = True

        if need_clean:
            client.execute_command("pkill -9 -u `whoami` -f '^%s/bin/monagent -c conf/monagent.yaml'" % home_path)
R
Rongfeng Fu 已提交
53
            ret = client.execute_command('rm -fr %s' % home_path)
R
Rongfeng Fu 已提交
54 55
            if not ret:
                global_ret = False
R
Rongfeng Fu 已提交
56
                stdio.error(EC_FAIL_TO_INIT_PATH.format(server=server, key='home path', msg=ret.stderr))
R
Rongfeng Fu 已提交
57 58 59 60 61 62
                continue
        else:
            if client.execute_command('mkdir -p %s' % home_path):
                ret = client.execute_command('ls %s' % (home_path))
                if not ret or ret.stdout.strip():
                    global_ret = False
R
Rongfeng Fu 已提交
63
                    stdio.error(EC_FAIL_TO_INIT_PATH.format(server=server, key='home path', msg=InitDirFailedErrorMessage.NOT_EMPTY.format(path=home_path)))
R
Rongfeng Fu 已提交
64 65 66
                    continue
            else:
                global_ret = False
R
Rongfeng Fu 已提交
67
                stdio.error(EC_FAIL_TO_INIT_PATH.format(server=server, key='home path', msg=InitDirFailedErrorMessage.CREATE_FAILED.format(path=home_path)))
R
Rongfeng Fu 已提交
68 69
                continue

F
v1.5.0  
frf12 已提交
70
        if not client.execute_command("bash -c 'mkdir -p %s/{run,bin,lib,conf,log}'" % home_path):
R
Rongfeng Fu 已提交
71
            global_ret = False
R
Rongfeng Fu 已提交
72
            stdio.error(EC_FAIL_TO_INIT_PATH.format(server=server, key='home path', msg=InitDirFailedErrorMessage.PATH_ONLY.format(path=home_path)))
R
Rongfeng Fu 已提交
73 74 75 76 77 78
            
    if global_ret:
        stdio.stop_loading('succeed')
        plugin_context.return_true()
    else:
        stdio.stop_loading('fail')