EDB CA cert key

Setting up an external EDB PostgreSQL database server

Last Updated: 2025-11-20

Focus sentinel

Deprecated

This version of documentation is no longer updated. For the latest information, see the following links:

Focus sentinel

You need to create the certificates and database objects if you use the new external database server for the first time to configure the external PostgreSQL database for IM or Zen service.

Complete the following procedures to set up the external database server:

Setting up certificate for external database server

To set up the Intermediate certificate authority (CA), database server certificate, and database client certificate, complete the following steps:

  1. Set up the intermediate CA.

    1. Generate the CA certificate singing request (CSR).

      复制代码
      openssl req -new -nodes -text \
          -out root.csr \
          -keyout root.key \
          -subj "/CN=IBM <IM or Zen service> Intermidiate Certificate Authority"

      You can replace <IM or Zen service> with IM or Zen service.

    2. Sign a CA certificate with openssl.

      复制代码
      find / -name openssl.cnf 2> /dev/null
      
      openssl x509 -req -in root.csr \
          -text \
          -days 3650 \
          -extfile /etc/pki/tls/openssl.cnf \
          -extensions v3_ca \
          -signkey root.key -out root.crt
      
      chmod og-rwx root.key
  2. Set up the database server certificate.

    1. Generate the database server CSR.

      复制代码
      openssl req -new -nodes -text \
          -out server.csr \
          -keyout server.key \
          -subj "/CN=*.fyre.ibm.com"
      
      chmod og-rwx server.key
    2. Sign a database server certificate with the internal intermediate CA.

      复制代码
      openssl x509 -req \
          -in server.csr -text -days 730 \
          -CA root.crt -CAkey root.key -CAcreateserial \
          -out server.crt \
          -extfile <(printf "subjectAltName=DNS:*.fyre.ibm.com,DNS:edbcluster1.fyre.ibm.com")
  3. Set up a database client certificate.

    1. Generate the database client CSR.

      复制代码
      openssl req -new -nodes -text \
          -out client.csr \
          -keyout client.key \
          -subj "/CN=&lt;username&gt;"

      You can replace <username> with the database username such as im_user or zen_user.

      复制代码
      chmod og-rwx client.key
    2. Sign a database client certificate with the internal intermediate CA.

      复制代码
      openssl x509 -req \
          -in client.csr -text -days 730\
          -CA root.crt -CAkey root.key -CAcreateserial \
          -out client.crt
  4. Verify the root.crt, server.crt, and client.crt certificates.

    复制代码
    openssl x509 -in root.crt -noout -subject -issuer -startdate -enddate
    openssl x509 -in server.crt -noout -subject -issuer -startdate -enddate
    openssl x509 -in client.crt -noout -subject -issuer -startdate -enddate
  5. Export client.key, client.crt, and root.crt certificates in the PEM format

    复制代码
    openssl rsa -in client.key -outform PEM -out client_key.pem
    openssl x509 -in client.crt -outform PEM -out client.pem
    openssl x509 -in root.crt -outform PEM -out root.pem
  6. Verify the root.pem and client.pem certificates.

    复制代码
    openssl x509 -in root.pem -noout -subject -issuer -startdate -enddate
    openssl x509 -in client.pem -noout -subject -issuer -startdate -enddate

Installing an EDB PostgreSQL database

Install the PostgreSQL version 16 to set up the database server and connections. To install the PostgreSQL version 16, complete the following steps:

  1. Download and install the PostgreSQL version 16.

    复制代码
    sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
    sudo dnf -qy module disable postgresql
    sudo dnf install -y postgresql16-server
  2. Create the PostgreSQL database cluster.

    复制代码
    sudo /usr/pgsql-16/bin/postgresql-16-setup initdb
  3. Enable and start the Postgresql-16 service.

    复制代码
    sudo systemctl enable postgresql-16
    sudo systemctl start postgresql-16
    sudo systemctl status postgresql-16

Configuring an EDB PostgreSQL database

To configure the PostgreSQL database for the new external database server, complete the following steps:

  1. Copy the server.crt, server.key, and root.crt files to the $PGDATAdirectory (/var/lib/pgsql/16/data) and change the owner of the files to postgres.

    复制代码
    cp -p server.crt /var/lib/pgsql/16/data/server.crt
    cp -p server.key /var/lib/pgsql/16/data/server.key
    cp -p root.crt /var/lib/pgsql/16/data/root.crt
    chown postgres:postgres /var/lib/pgsql/16/data/server.*
    chown postgres:postgres /var/lib/pgsql/16/data/root.*
  2. Access shell prompt for postgres to edit the files.

    复制代码
    su - postgres
    cd $PGDATA
  3. Edit the postgresql.conf file to update the following values.

    复制代码
    listen_addresses = '*'
    
    max_connections = 600
    
    ssl = on
    ssl_ca_file = 'root.crt'
    ssl_cert_file = 'server.crt'
    #ssl_crl_file = ''
    #ssl_crl_dir = ''
    ssl_key_file = 'server.key'
    #shared_buffers = 128MB

    The shared_buffers parameter allocates the memory for the database server to cache data. The default value of the #shared_buffers parameter is 128MB. You can set the value between 15% to 20% of the total system RAM. For example, if your system RAM size is 32 GB, the recommended value for the #shared_buffers parameter is 8 GB.

  4. Edit the pg_hba.conf file to add the following command to enable SSL encryption for database connections.

    复制代码
    hostssl all             all             0.0.0.0/0               cert

Creating database objects

To create the database objects, complete the following steps:

  1. Create the database, database user, and monitoring schema.

    • For Zen service, run the following command:

      复制代码
      psql -U postgres -tc "SELECT 1 FROM pg_database WHERE datname = 'zen'" | grep -q 1 || psql -U postgres -c "CREATE DATABASE zen"
      
      psql -U postgres -tc "SELECT 1 FROM pg_user WHERE usename = 'zen_user'" | grep -q 1 || psql -U postgres -c "CREATE USER zen_user"
      
      psql -U postgres -c "GRANT CONNECT ON DATABASE zen TO public;" -c "ALTER DATABASE zen OWNER TO zen_user;" -c "GRANT ALL PRIVILEGES ON DATABASE zen to zen_user;"
      
      psql -U postgres -d zen -tc "SELECT 1 FROM information_schema.schemata WHERE schema_name = 'watchdog'" | grep -q 1 || psql -U postgres -d zen -c "CREATE SCHEMA watchdog;" -c "ALTER SCHEMA watchdog OWNER TO zen_user;" -c "GRANT ALL ON SCHEMA watchdog TO zen_user;"
      
      psql -U postgres -d zen -c "ALTER DATABASE zen SET timezone TO 'Etc/UTC';"

      Zen supports the watchdog and public monitoring schemas. You can update the schema_name = in the command with watchdog or public for the Zen service.

    • For IM service, run the following command:

      复制代码
      psql -U postgres -tc "SELECT 1 FROM pg_database WHERE datname = 'im'" | grep -q 1 || psql -U postgres -c "CREATE DATABASE im"
      
      psql -U postgres -tc "SELECT 1 FROM pg_user WHERE usename = 'im_user'" | grep -q 1 || psql -U postgres -c "CREATE USER im_user"
      
      psql -U postgres -c "GRANT CONNECT ON DATABASE im TO public;" -c "ALTER DATABASE im OWNER TO im_user;" -c "GRANT ALL PRIVILEGES ON DATABASE im to im_user;"
      
      psql -U postgres -d im -c "ALTER DATABASE im SET timezone TO 'Etc/UTC';"

      IM operator creates the required database schemas for the IM service.

  2. Restart the PostgreSQL database.

    复制代码
    sudo systemctl restart postgresql-16

You can start the external database connection for IM or Zen service after you set up the external database server. To configure an external PostgreSQL database for IM or Zen service, see Configuring an external EDB PostgreSQL database for IM or Configuring an external EDB PostgreSQL database for Zen.

相关推荐
IvorySQL20 小时前
PostgreSQL 日报|在线校验和特性被回退(9 月 17 日)
数据库·人工智能·postgresql
geovindu21 小时前
sql:Data Modeling Patterns using PostgreSQL 18
postgresql·数据库开发·数据库架构
l1t1 天前
DeepSeek总结的PostgreSQL 19 发生了什么
数据库·postgresql
TechWJ2 天前
没有公网 IP 也想远程连 PostgreSQL?从本地数据库到固定 TCP 地址完整配置
大数据·数据库·网络安全·postgresql·内网穿透
あ-2 天前
postgres创建只读用户
postgresql
IvorySQL2 天前
PostgreSQL 日报|8 字节 TOAST 值支持(9 月 16 日)
数据库·人工智能·postgresql
IvorySQL2 天前
AI 时代,PostgreSQL 正在发生什么变化?
数据库·人工智能·postgresql
风哥2号2 天前
数据库教程FGMT50‑PostgreSQL体系结构深入与源码解析
数据库·postgresql
风哥2号2 天前
数据库教程FGMT52‑PostgreSQL用户权限与安全管理
数据库·postgresql