当前位置:   article > 正文

【参赛作品56】国产开源数据库OpenGauss的安装运行_yum install flex bison ncurses-devel glibc-devel p

yum install flex bison ncurses-devel glibc-devel patch readline-devel libnsl

作者:adadaadadade

步骤一:OpenGauss的安装

环境

OS:openEuler 20.03 64bit with ARM

架构:arm64

部署:单机

安装过程

1、环境配置

安装依赖包:

yum install libaio-devel flex bison ncurses-devel glibc-devel patch readline-devel
  • 1
2、创建xml配置文件

创建cluster_config.xml配置文件并进行配置

<?xml version="1.0" encoding="UTF-8"?>
<ROOT>
    <!-- openGauss整体信息 -->
    <CLUSTER>
    <!-- 数据库名称 -->
        <PARAM name="clusterName" value="GaussDB" />
    <!-- 数据库节点名称(hostname) -->
        <PARAM name="nodeNames" value="node1" />
    <!-- 节点IP,与nodeNames一一对应 -->
        <PARAM name="backIp1s" value="192.168.0.187"/>
    <!-- 数据库安装目录-->
        <PARAM name="gaussdbAppPath" value="/opt/huawei/install/app" />
    <!-- 日志目录-->
        <PARAM name="gaussdbLogPath" value="/var/log/omm" />
    <!-- 临时文件目录-->
        <PARAM name="tmpMppdbPath" value="/opt/huawei/tmp"/>
    <!--数据库工具目录-->
        <PARAM name="gaussdbToolPath" value="/opt/huawei/install/om" />
    <!--数据库core文件目录-->
        <PARAM name="corePath" value="/opt/huawei/corefile"/>
    <!-- openGauss类型,此处示例为单机类型,“single-inst”表示单机一主多备部署形态-->
        <PARAM name="clusterType" value="single-inst"/>
    </CLUSTER>
    <!-- 每台服务器上的节点部署信息 -->
    <DEVICELIST>
        <!-- node1上的节点部署信息 -->
        <DEVICE sn="1000001">
        <!-- node1的hostname -->
            <PARAM name="name" value="ecs-kc1-large-2-linux-20210605213652"/>
        <!-- node1所在的AZ及AZ优先级 -->
            <PARAM name="azName" value="AZ1"/>
            <PARAM name="azPriority" value="1"/>
        <!-- 如果服务器只有一个网卡可用,将backIP1和sshIP1配置成同一个IP -->
            <PARAM name="backIp1" value="192.168.0.187"/>
            <PARAM name="sshIp1" value="192.168.0.187"/>
    &lt;!--dbnode--&gt;
    	&lt;PARAM name=&quot;dataNum&quot; value=&quot;1&quot;/&gt;
    &lt;!--DBnode端口号--&gt;
    	&lt;PARAM name=&quot;dataPortBase&quot; value=&quot;26000&quot;/&gt;
    &lt;!--DBnode主节点上数据目录,及备机数据目录--&gt;
    	&lt;PARAM name=&quot;dataNode1&quot; value=&quot;node1&quot;/&gt;
    &lt;!--DBnode节点上设定同步模式的节点数--&gt;
    	&lt;PARAM name=&quot;dataNode1_syncNum&quot; value=&quot;0&quot;/&gt;
    &lt;/DEVICE&gt;
&lt;/DEVICELIST&gt;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35

</ROOT>

注意节点hostname应与/etc/hostname中保持一致

3、初始化安装环境

1.以root用户登录待安装openGauss的任意主机,并按规划创建存放安装包的目录。

 
 
mkdir -p /opt/software/openGauss chmod 755 -R /opt/software
  • 1
  • 2

2.下载安装包并将配置文件“cluster_config.xml”都上传至上一步所创建的目录中。

 
 
wget https://opengauss.obs.cn-south-1.myhuaweicloud.com/2.0.1/arm/openGauss-2.0.1-openEuler-64bit-all.tar.gz
  • 1

3.解压安装包。

 
 
tar -zxvf openGauss-2.0.1-openEuler-64bit-all.tar.gz tar jxvf openGauss-2.0.1-openEuler-64bit.tar.bz2 tar -zxvf openGauss-2.0.1-openEuler-64bit-om.tar.gz tar -zxvf upgrade_sql.tar.gz
  • 1
  • 2
  • 3
  • 4

4.进入到工具脚本存放目录下。

 
 
cd /opt/software/openGauss/script
  • 1

5.如果是openEuler的操作系统为确保适配python版本,执行如下命令打开gspylib/common/CheckPythonVersion.py文件,将if not pythonVersion = = (3, 6):修改为if not pythonVersion > = (3, 6):,键入“ESC”键进入指令模式,执行**:wq**保存并退出修改。(我在实际操作中进入后发现无需修改)

 
 
vi gspylib/common/CheckPythonVersion.py
  • 1

6.如果是openEuler的操作系统,执行如下命令打开performance.sh文件,用#注释sysctl -w vm.min_free_kbytes=112640 &> /dev/null,键入“ESC”键进入指令模式,执行**:wq**保存并退出修改。

 
 
vi /etc/profile.d/performance.sh
  • 1

7.为确保openssl版本正确,执行预安装前请加载安装包中lib库。执行命令如下,其中_{packagePath}_为用户安装包放置的路径,本示例中为/opt/software/openGauss。

 
 
export LD_LIBRARY_PATH=/opt/software/openGauss/script/gspylib/clib:$LD_LIBRARY_PATH
  • 1

8.为确保成功安装,检查 hostname 与 /etc/hostname 是否一致。预安装过程中,会对hostname进行检查。

9.使用gs_preinstall准备好安装环境。若为共用环境需加入–sep-env-file=ENVFILE参数分离环境变量,避免与其他用户相互影响,ENVFILE为用户自行指定的环境变量分离文件的路径。

  • 采用交互模式执行前置,并在执行过程中自动创建操作系统root用户互信和omm用户互信:

       
       
    ./gs_preinstall -U omm -G dbgrp -X /opt/software/openGauss/cluster_config.xml
    • 1

    在执行中会要求输入omm用户的密码。

    运行结果应类似:

    plat1:/opt/software/openGauss/script # ./gs_preinstall -U omm -G dbgrp -X /opt/software/openGauss/cluster_config.xml
    Parsing the configuration file.
    Successfully parsed the configuration file.
    Installing the tools on the local node.
    Successfully installed the tools on the local node.
    Are you sure you want to create trust for root (yes/no)? yes
    Please enter password for root.
    Password:
    Creating SSH trust for the root permission user.
    Checking network information.
    All nodes in the network are Normal.
    Successfully checked network information.
    Creating SSH trust.
    Creating the local key file.
    Successfully created the local key files.
    Appending local ID to authorized_keys.
    Successfully appended local ID to authorized_keys.
    Updating the known_hosts file.
    Successfully updated the known_hosts file.
    Appending authorized_key on the remote node.
    Successfully appended authorized_key on all remote node.
    Checking common authentication file content.
    Successfully checked common authentication content.
    Distributing SSH trust file to all node.
    Successfully distributed SSH trust file to all node.
    Verifying SSH trust on all hosts.
    Successfully verified SSH trust on all hosts.
    Successfully created SSH trust.
    Successfully created SSH trust for the root permission user.
    Setting pssh path
    Successfully set core path.
    Distributing package.
    Begin to distribute package to tool path.
    Successfully distribute package to tool path.
    Begin to distribute package to package path.
    Successfully distribute package to package path.
    Successfully distributed package.
    Are you sure you want to create the user[omm] and create trust for it (yes/no)? yes
    Please enter password for cluster user.
    Password:
    Please enter password for cluster user again.
    Password:
    Successfully created [omm] user on all nodes.
    Preparing SSH service.
    Successfully prepared SSH service.
    Installing the tools in the cluster.
    Successfully installed the tools in the cluster.
    Checking hostname mapping.
    Successfully checked hostname mapping.
    Creating SSH trust for [omm] user.
    Checking network information.
    All nodes in the network are Normal.
    Successfully checked network information.
    Creating SSH trust.
    Creating the local key file.
    Successfully created the local key files.
    Appending local ID to authorized_keys.
    Successfully appended local ID to authorized_keys.
    Updating the known_hosts file.
    Successfully updated the known_hosts file.
    Appending authorized_key on the remote node.
    Successfully appended authorized_key on all remote node.
    Checking common authentication file content.
    Successfully checked common authentication content.
    Distributing SSH trust file to all node.
    Successfully distributed SSH trust file to all node.
    Verifying SSH trust on all hosts.
    Successfully verified SSH trust on all hosts.
    Successfully created SSH trust.
    Successfully created SSH trust for [omm] user.
    Checking OS software.
    Successfully check os software.
    Checking OS version.
    Successfully checked OS version.
    Creating cluster's path.
    Successfully created cluster's path.
    Setting SCTP service.
    Successfully set SCTP service.
    Set and check OS parameter.
    Setting OS parameters.
    Successfully set OS parameters.
    Preparing CRON service.
    Successfully prepared CRON service.
    Setting user environmental variables.
    Successfully set user environmental variables.
    Setting the dynamic link library.
    Successfully set the dynamic link library.
    Setting Core file
    Successfully set core path.
    Setting pssh path
    Successfully set pssh path.
    Set ARM Optimization.
    No need to set ARM Optimization.
    Fixing server package owner.
    Setting finish flag.
    Successfully set finish flag.
    Preinstallation succeeded.
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
4、执行安装

内存小于安装要求的32G应该做一些配置修改:

# vim /etc/sysctl.conf
kernel.shmall = 1125899906842624
kernel.shmmax = 1351079888211149
  • 1
  • 2
  • 3

vim /opt/huawei/install/data/db1/postgresql.conf

cstore_buffers=16MB
bulk_write_ring_size=128MB
shared_buffers=128MB
max_process_memory=2GB
max_connections=10

切换到omm用户下执行安装:

 
 
su - omm gs_install -X /opt/software/openGauss/cluster_config.xml
  • 1
  • 2

步骤二 数据库的简单链接与使用

1、创建新用户,新数据库并赋予权限

使用gsql 用omm 管理账号登陆,创建新用户jack,创建新数据库testjack,赋予权限,执行

CREATE USER jack PASSWORD 'Gaussdba@Mpp';
CREATE DATABASE testjack OWNER jack;
GRANT SELECT ON pg_catalog.pg_roles to jack; 
GRANT SELECT ON pg_catalog.pg_user_status to jack; 
GRANT ALL PRIVILEGES on TABLESPACE pg_default,pg_global TO jack;
  • 1
  • 2
  • 3
  • 4
  • 5

然后退出,使用jack用户登录gsql

gsql -U jack -d testjack -p "Gaussdba@Mpp"
  • 1

创建 SCHEMA

CREATE SCHEMA jack AUTHORIZATION jack;
  • 1

退出gsql,赋予jack权限,这里client_address是客户端的地址

gs_guc set -N all -I all -h "host all jack client_address/32 sha256
  • 1

或者也可以修改pg_hba.conf,添加

host    all             jack            client_address/32         sha256
  • 1

2、允许客户端访问数据库

执行,这里的client_address是要客户端的地址, listen_addresses是参数名。

gs_guc set -I all -c "listen_addresses='client_address'"
  • 1

或在使用omm账号在gsql中

ALTER SYSTEM SET listen_addresses TO "client_address";
  • 1

之后重启数据库

3、关闭防火墙,打开端口

4、使用Data Studio 访问数据库

可在opengauss官网下载DATA STUDIO应用

填入对应参数,注意这里应去掉启用SSL的选项,因为SSL还需要配置证书或密钥。

连接后的界面

5、使用JDBC访问数据库

我这里使用windows系统作为客户端连接数据库。

在opengauss网站下载对应的JDBC包,并解压。

创建Gauss.java文件

 
 
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.sql.Statement; import java.sql.CallableStatement; import java.sql.Types; import java.util.Collections; import java.util.Properties;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

public class Gauss {

<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> <span class="hljs-keyword">void</span> <span class="hljs-title function_">main</span><span class="hljs-params">(String[] args)</span> {
    Connection connection;
    ResultSet resultSet;
    <span class="hljs-type">String</span> <span class="hljs-variable">url</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;jdbc:postgresql://address:port/testjack&quot;</span>; <span class="hljs-comment">//address 地址 port 端口 testjack 数据库名</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">user</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;××××&quot;</span>; <span class="hljs-comment">// 数据库用户名</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">password</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;××××&quot;</span>; <span class="hljs-comment">// 对应密码</span>
    String sql;
    <span class="hljs-keyword">if</span>(args.length &gt; <span class="hljs-number">0</span>)
    {
        sql = args[<span class="hljs-number">0</span>];
    }
    <span class="hljs-keyword">else</span>
    {
        System.out.println(<span class="hljs-string">&quot;输入一条sql语句&quot;</span>);
        <span class="hljs-keyword">return</span>;
    }

    <span class="hljs-keyword">if</span> ((connection = getConnect(user, password, url)) != <span class="hljs-literal">null</span>) {
        System.out.println(connection.toString());
    }

    <span class="hljs-keyword">if</span> ((resultSet = execSql(connection, sql)) != <span class="hljs-literal">null</span>)
    {
        
        
    }
}

<span class="hljs-comment">// 以下代码将获取数据库连接操作封装为一个接口,可通过给定用户名和密码来连接数据库。</span>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> Connection <span class="hljs-title function_">getConnect</span><span class="hljs-params">(String username, String passwd, String url)</span> {
    <span class="hljs-comment">// 驱动类。</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">driver</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;org.postgresql.Driver&quot;</span>;
    <span class="hljs-comment">// 数据库连接描述符。</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">sourceURL</span> <span class="hljs-operator">=</span> url;
    <span class="hljs-type">Connection</span> <span class="hljs-variable">conn</span> <span class="hljs-operator">=</span> <span class="hljs-literal">null</span>;

    <span class="hljs-keyword">try</span> {
        <span class="hljs-comment">// 加载驱动。</span>
        Class.forName(driver);
    } <span class="hljs-keyword">catch</span> (Exception e) {
        e.printStackTrace();
        <span class="hljs-keyword">return</span> <span class="hljs-literal">null</span>;
    }

    <span class="hljs-keyword">try</span> {
        <span class="hljs-comment">// 创建连接。</span>
        conn = DriverManager.getConnection(sourceURL, username, passwd);
        System.out.println(<span class="hljs-string">&quot;Connection succeed!&quot;</span>);
    } <span class="hljs-keyword">catch</span> (Exception e) {
        e.printStackTrace();
        <span class="hljs-keyword">return</span> <span class="hljs-literal">null</span>;
    }

    <span class="hljs-keyword">return</span> conn;
};

<span class="hljs-comment">// 以下代码将使用Properties对象作为参数建立连接</span>
<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> Connection <span class="hljs-title function_">getConnectUseProp</span><span class="hljs-params">(String username, String passwd, String url)</span> {
    <span class="hljs-comment">// 驱动类。</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">driver</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;org.postgresql.Driver&quot;</span>;
    <span class="hljs-comment">// 数据库连接描述符。</span>
    <span class="hljs-type">String</span> <span class="hljs-variable">sourceURL</span> <span class="hljs-operator">=</span> url + <span class="hljs-string">&quot;?&quot;</span>;
    <span class="hljs-type">Connection</span> <span class="hljs-variable">conn</span> <span class="hljs-operator">=</span> <span class="hljs-literal">null</span>;
    <span class="hljs-type">Properties</span> <span class="hljs-variable">info</span> <span class="hljs-operator">=</span> <span class="hljs-keyword">new</span> <span class="hljs-title class_">Properties</span>();

    <span class="hljs-keyword">try</span> {
        <span class="hljs-comment">// 加载驱动。</span>
        Class.forName(driver);
    } <span class="hljs-keyword">catch</span> (Exception e) {
        e.printStackTrace();
        <span class="hljs-keyword">return</span> <span class="hljs-literal">null</span>;
    }

    <span class="hljs-keyword">try</span> {
        info.setProperty(<span class="hljs-string">&quot;user&quot;</span>, username);
        info.setProperty(<span class="hljs-string">&quot;password&quot;</span>, passwd);
        <span class="hljs-comment">// 创建连接。</span>
        conn = DriverManager.getConnection(sourceURL, info);
        System.out.println(<span class="hljs-string">&quot;Connection succeed!&quot;</span>);
    } <span class="hljs-keyword">catch</span> (Exception e) {
        e.printStackTrace();
        <span class="hljs-keyword">return</span> <span class="hljs-literal">null</span>;
    }

    <span class="hljs-keyword">return</span> conn;
};

<span class="hljs-keyword">public</span> <span class="hljs-keyword">static</span> ResultSet <span class="hljs-title function_">execSql</span><span class="hljs-params">(Connection conn, String sql)</span> {
    <span class="hljs-type">Statement</span> <span class="hljs-variable">stmt</span> <span class="hljs-operator">=</span> <span class="hljs-literal">null</span>;
    <span class="hljs-type">ResultSet</span> <span class="hljs-variable">rs</span> <span class="hljs-operator">=</span> <span class="hljs-literal">null</span>;
    <span class="hljs-type">SQLWarning</span> <span class="hljs-variable">sqlw</span> <span class="hljs-operator">=</span> <span class="hljs-literal">null</span>;
    <span class="hljs-keyword">try</span> {
        stmt = conn.createStatement();
        <span class="hljs-comment">// 执行普通SQL语句。</span>
        stmt.execute(sql);
        <span class="hljs-keyword">if</span>((sqlw = stmt.getWarnings()) != <span class="hljs-literal">null</span>)
            System.out.println(sqlw.toString());
        <span class="hljs-keyword">if</span>((rs = stmt.getResultSet()) != <span class="hljs-literal">null</span>)
            printResultSet(rs);
        
        stmt.close();
    } <span class="hljs-keyword">catch</span> (SQLException e) {
        <span class="hljs-keyword">if</span> (stmt != <span class="hljs-literal">null</span>) {
            <span class="hljs-keyword">try</span> {
                stmt.close();
            } <span class="hljs-keyword">catch</span> (SQLException e1) {
                e1.printStackTrace();
            }
        }
        e.printStackTrace();
    }
    <span class="hljs-keyword">return</span> rs;
}


<span class="hljs-keyword">private</span> <span class="hljs-keyword">static</span> <span class="hljs-keyword">void</span> <span class="hljs-title function_">printResultSet</span><span class="hljs-params">(ResultSet rs)</span>
{
    <span class="hljs-type">String</span> <span class="hljs-variable">line</span> <span class="hljs-operator">=</span> <span class="hljs-string">&quot;&quot;</span>;
    <span class="hljs-keyword">try</span> {
        <span class="hljs-type">ResultSetMetaData</span> <span class="hljs-variable">rsmd</span> <span class="hljs-operator">=</span> rs.getMetaData();
        <span class="hljs-keyword">for</span>(<span class="hljs-type">int</span> <span class="hljs-variable">i</span> <span class="hljs-operator">=</span> <span class="hljs-number">1</span>; i &lt;= rsmd.getColumnCount(); i ++)
        {
            <span class="hljs-type">String</span> <span class="hljs-variable">label</span> <span class="hljs-operator">=</span> rsmd.getColumnLabel(i).toString();
            System.out.print(label + <span class="hljs-string">&quot;\t&quot;</span>);
            line += String.join(<span class="hljs-string">&quot;&quot;</span>, Collections.nCopies(label.length(), <span class="hljs-string">&quot;-&quot;</span>)) + <span class="hljs-string">&quot;\t&quot;</span>;
        }
        System.out.println(<span class="hljs-string">&quot;\n&quot;</span> + line);

        <span class="hljs-keyword">while</span>(rs.next())
        {
            <span class="hljs-keyword">for</span>(<span class="hljs-type">int</span> <span class="hljs-variable">i</span> <span class="hljs-operator">=</span> <span class="hljs-number">1</span>; i &lt;= rsmd.getColumnCount(); i ++)
            {
                System.out.print(rs.getObject(i).toString() + <span class="hljs-string">&quot;\t&quot;</span>);
            }
            System.out.println(<span class="hljs-string">&quot;&quot;</span>);

        }
    } <span class="hljs-keyword">catch</span> (Exception e) {
        e.printStackTrace();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141

}

编译

 
 
javac .\Gauss.java -encoding "utf-8"
  • 1

运行,我这里将postgresql.jar放在同一目录下,创建一个表nt作为测试

 
 
java -cp ".;postgresql.jar" Gauss "CREATE TABLE nt(id INTEGER, name VARCHAR(20))" java -cp ".;postgresql.jar" Gauss "INSERT into nt(id, name) VALUES (1,'n1'),(2,'n2'),(3,'n3');" java -cp ".;postgresql.jar" Gauss "SELECT * FROM nt;"
  • 1
  • 2
  • 3

最后一句输出结果为,可以看到成功进行了连接和操作。

九月 13, 2021 11:58:25 上午 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
信息: [75000bb7-1475-4579-94cb-f53a01bec9eb] Try to connect. IP: *.*.*.*:****
九月 13, 2021 11:58:26 上午 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
信息: [*.*.*.*:****/*.*.*.*:****] Connection is established. ID: 75000bb7-1475-4579-94cb-f53a01bec9eb
九月 13, 2021 11:58:26 上午 org.postgresql.core.v3.ConnectionFactoryImpl openConnectionImpl
信息: Connect complete. ID: 75000bb7-1475-4579-94cb-f53a01bec9eb
Connection succeed!
id      name
--      ----
1       n1
2       n2
3       n3
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/636103
推荐阅读
相关标签
  

闽ICP备14008679号