Use obd to take over a cluster

2025-01-24 01:51:31  Updated

Prerequisites

  • The version of the OceanBase cluster to be taken over is OceanBase Database Community Edition V4.2.1 BP4 or later, and OceanBase Shell (obshell) has been started before. For more information, see View the information about an OceanBase cluster.

  • The OceanBase cluster to be taken over is running properly. For more information about how to check the status of the OceanBase cluster, see Check the OBServer node status in OceanBase Database documentation.

  • The server where OceanBase Deployer (obd) is installed is connected to an OBServer node in the OceanBase cluster.

Take over an OceanBase cluster

  1. Take over an OceanBase cluster.

    [admin@obtest ~]$ obd cluster takeover test -h 10.10.10.1 -P 2881 -p ****** -ssh-user=admin --ssh-key-file=/home/admin/.ssh/id_rsa
    

    For more information about the takeover command, see the obd cluster takeover section in the Cluster commands topic.

  2. Query the cluster status in obd.

    [admin@obtest ~]$ obd cluster display test
    

    A sample query result is as follows:

    Get local repositories and plugins ok
    Open ssh connection ok
    Cluster status check ok
    Connect to observer 10.10.10.1:2881 ok
    Wait for observer init ok
    +----------------------------------------------+
    |                    observer                  |
    +------------+---------+------+-------+--------+
    | ip         | version | port | zone  | status |
    +------------+---------+------+-------+--------+
    | 10.10.10.1 | 4.3.0.1 | 2881 | zone1 | ACTIVE |
    +------------+---------+------+-------+--------+
    obclient -h10.10.10.1 -P2881 -uroot -Doceanbase -A
    
    Trace ID: 093ddc0c-039b-11ef-865a-00163e0808cc
    If you want to view detailed obd logs, please run: obd display-trace 093ddc0c-039b-11ef-865a-00163e0808cc
    

View the information about an OceanBase cluster

  1. Log on to the sys tenant of the OceanBase cluster to be taken over as the root user.

    [admin@obtest ~]$ obclient -h10.10.10.1 -P2883 -uroot@sys#obdemo -p -c -Doceanbase -A
    

    The parameters are described as follows:

    • -h: the IP address for connecting to OceanBase Database, which is usually the IP address of OceanBase DataBase Database Proxy (ODP). 10.10.10.1 is used as an example. You can modify it as needed.

    • -u: the tenant account. The following formats are supported: username@tenant name#cluster name, cluster name:tenant name:username, cluster name-tenant name-username, and cluster name.tenant name.username. root@sys#obdemo is used as an example. You can modify it as needed.

      Note

      • When you use ODP to connect to an OceanBase cluster, you can obtain the cluster name in the following way:
        Directly connect to OceanBase Database and run the SHOW PARAMETERS LIKE 'cluster'; command to query the cluster name. In the query result, VALUE indicates the name of the OceanBase cluster.
      • If ODP manages multiple clusters, you must specify a cluster name. If ODP manages only one cluster, you do not need to specify a cluster name.

    • -P: the port for connecting to OceanBase Database. When you directly connect to OceanBase Database, set this parameter to the value of mysql_port. The default value is 2881. When you use ODP to connect to OceanBase Database, set this parameter to the value of listen_port. The default value is 2883. 2883 is used as an example. You can modify it as needed.

    • -c: specifies not to ignore comments in the runtime environment of OceanBase Client (OBClient).

      Note

      Hints are special comments that are not affected by the -c parameter.

    • -A: specifies not to automatically retrieve the statistical information when connecting to the tenant.

    • -D: the name of the database to be accessed. You can change it to a business database.

  2. Query the OceanBase Database version in use.

    obclient [oceanbase]> SELECT OB_VERSION();
    

    A sample query result is as follows:

    +--------------+
    | OB_VERSION() |
    +--------------+
    | 4.3.0.1      |
    +--------------+
    
  3. Query obshell information.

    obclient [oceanbase]> select * from ocs.all_agent;
    

    If obshell information is returned, obshell has been started in the cluster before. A sample query result is as follows:

    +------------+------+---------------+----------------------+-------+--------------+-------+------------+----------+--------------------------------+------------------------------------------------------------------------------------------------------+
    | ip         | port | identity      | version              | os    | architecture | zone  | mysql_port | rpc_port | home_path                      | public_key                                                                                           |
    +------------+------+---------------+----------------------+-------+--------------+-------+------------+----------+--------------------------------+------------------------------------------------------------------------------------------------------+
    | 10.10.10.1 | 2886 | CLUSTER AGENT | 4.2.3.0-102024031414 | linux | x86_64       | zone1 |       2881 |     2882 | /home/admin/oceanbase-ce       | MEgCQQCoegOM/lKWUfz0ZUOg+KK+bpW7jr16xvQy7foOqZc5yB8F+8J5pNvD0pHNH+2IeG2bIMbhnUbV/B0XeqkACD/xAgMBAAE= |
    +------------+------+---------------+----------------------+-------+--------------+-------+------------+----------+--------------------------------+------------------------------------------------------------------------------------------------------+
    

References

Contact Us