Re: Not able to set pgaudit.log with pgaudit 1.3.2 in PostgreSQL 11.9

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Dhinakaran R <dhiraam(dot)postgresql(at)gmail(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Not able to set pgaudit.log with pgaudit 1.3.2 in PostgreSQL 11.9
Date: 2020-11-07 18:55:20
Message-ID: cef0041c-95d4-dd6d-f3b2-e42d4d4e7df2@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 11/7/20 10:42 AM, Dhinakaran R wrote:
> Hello,
>
> I had installed PostgreSQL 11.9 and pgaudit 1.3.2.  updated
> shared_preload_libraries, restarted PostgreSQL, created an extension for
> pgaudit and set parameters for pgaudit in postgresql.conf.  But
> surprisingly pgaudit.log is not getting picked up and neither able to
> set it manually.
>
>
> postgres>pwd
> /usr/pgsql-11/lib
> postgres>ls -ltr *pgaudit*
> -rwxr-xr-x. 1 root root 33088 Oct  6 10:48 pgaudit.so
> postgres>
>
> postgres>pwd
> /usr/pgsql-11/share/extension
> postgres>ls -ltr *pgaudit*
> -rw-r--r--. 1 root root 145 Oct  6 10:48 pgaudit.control
> -rw-r--r--. 1 root root 615 Oct  6 10:48 pgaudit--1.3.2.sql
> -rw-r--r--. 1 root root 175 Oct  6 10:48 pgaudit--1.3--1.3.1.sql
> -rw-r--r--. 1 root root 177 Oct  6 10:48 pgaudit--1.3.1--1.3.2.sql
> postgres>
>
> postgres=# create extension pgaudit;
> CREATE EXTENSION
> postgres=# select * from pg_Extension;
>  extname | extowner | extnamespace | extrelocatable | extversion |
> extconfig | extcondition
> ---------+----------+--------------+----------------+------------+-----------+--------------
>  plpgsql |       10 |           11 | f              | 1.0        |
>       |
>  pgaudit |       10 |         2200 | t              | 1.3.2      |
>       |
> (2 rows)
>
>
>
> postgres=# select name, setting, source from pg_settings where name like
> '%audit%';
>             name            | setting |       source
> ----------------------------+---------+--------------------
>  pgaudit.log                | none    | default
>  pgaudit.log_catalog        | on      | configuration file
>  pgaudit.log_client         | on      | configuration file
>  pgaudit.log_level          | log     | default
>  pgaudit.log_parameter      | on      | configuration file
>  pgaudit.log_relation       | off     | default
>  pgaudit.log_statement_once | off     | default
>  pgaudit.role               |         | default
> (8 rows)
>
>
>
>
> But I have below parameters in postgresql.conf.. not sure why its not
> picking up pgaudit.log value.

Have you looked at the Postgres log to see if there are relevant error
messages?

>
> log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'
> log_line_prefix = '%m %u %d [%p]: '
> shared_preload_libraries = 'pgaudit' # (change requires restart)
> pgaudit.log = 'write, role, ddl, misc_set'
> pgaudit.log_catalog = on
> pgaudit.log_client = on
> pgaudit.log_parameter = on
>
> Thanks,
> Dhiraam.

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Dhinakaran R 2020-11-07 19:03:22 Re: Not able to set pgaudit.log with pgaudit 1.3.2 in PostgreSQL 11.9
Previous Message Dhinakaran R 2020-11-07 18:42:39 Not able to set pgaudit.log with pgaudit 1.3.2 in PostgreSQL 11.9