【解决openGauss无法使用gs_check等服务器端命令问题】

2024-01-08 13:34:28

【解决openGauss无法使用gs_check等服务器端命令问题】

一、问题描述

[omm@opengauss03 ~]$ gs_check -i CheckCPU
Parsing the check items config file successfully
[GAUSS-53026]: ERROR: Execute SSH command on host 192.168.56.19 faild. The exception is:

二、问题原因

数据库所在主机之间没有实现SSH免密登录

三、解决方法

  1. 切换到omm系统用户下,执行如下命令生成密钥对

    gs_sshexkey -h 192.168.56.19
    

    注意:-h 后面的IP地址换成你自己环境中数据库所在主机IP地址

    在这里插入图片描述
    该命令执行成功后,会在omm用户家目录下生成一个隐藏目录.ssh,在该.ssh目录下生成了密钥对,如下所示:
    在这里插入图片描述

  2. 重新执行openGauss服务器端命令,如下所示,正常显示

    [omm@opengauss03 ~]$ gs_check -i CheckDBConnection
    Parsing the check items config file successfully
    Distribute the context file to remote hosts successfully
    Start to health check for the cluster. Total Items:1 Nodes:1
    
    Checking...               [=========================] 1/1
    Start to analysis the check result
    CheckDBConnection...........................OK
    The item run on 1 nodes.  success: 1
    
    Analysis the check result successfully
    Success.        All check items run completed. Total:1   Success:1
    For more information please refer to /opt/install/om/script/gspylib/inspection/output/CheckReport_202401036302132258.tar.gz
    [omm@opengauss03 ~]$
    

文章来源:https://blog.csdn.net/sujiangming/article/details/135369181
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。