Re: PostgreSQL 10.20 crashes / Antivirus - Mailing list pgsql-general

From Adrian Klaver
Subject Re: PostgreSQL 10.20 crashes / Antivirus
Date
Msg-id 6750bcfa-f7a9-4b15-180e-bd20d60cd150@aklaver.com
Whole thread Raw
In response to RE: PostgreSQL 10.20 crashes / Antivirus  ("Thomas, Richard" <Richard.Thomas@atkinsglobal.com>)
Responses RE: PostgreSQL 10.20 crashes / Antivirus  ("Thomas, Richard" <Richard.Thomas@atkinsglobal.com>)
List pgsql-general
On 4/20/22 01:06, Thomas, Richard wrote:
> Adrian Klaver wrote:
>> What are the actual commands you are using to do the above?
> 
> The command used in a PowerShell script (run with Windows task scheduler) to dump each database should evaluate to:
> 
> "C:\Program Files\PostgreSQL\10\bin\pg_dump.exe" -b -v -F c -d $dbName -h localhost -p 6488 -U backup_su -f
$backupFile2`>`&1 | Out-File $pgdumpLogFile
 

FYI, -b is the default unless you are restricting the dump to a schema 
or a table .

Do you have large objects(blobs) in the database?

> 
> where:
> - "backup_su" is a superuser role (with password stored in the user's pgpass.conf file)
> - $backupFile and $pgdumpLogFile are in folders excluded from McAfee scanning
> - pg_dump.exe executable is not excluded from McAfee on-access scanning (although as recommended postgres.exe is)

Why not?

I would think the whole C:\Program Files\PostgreSQL\10\bin\ would be 
excluded.

> 
> The actual script segment building the command is:
> 
>          $pgdumpCmd = "C:\Program Files\PostgreSQL\10\bin\pg_dump.exe"
>          $pgdumpArgs = @("-b", "-v",
>              "-F", "c",
>              "-d", $dbName,
>              "-h", "localhost",
>              "-p", "6488",
>              "-U", " backup_su",
>              "-f", $backupFile)
>          cmd /c $pgdumpCmd $pgdumpArgs 2`>`&1 | Out-File $pgdumpLogFile
> 
> Note that the .backup file for the first failing pg_dump (after several successful ones) is now being produced but is
oflength 0, with the associated pg_dump log file simply reading:
 

What does the Windows event log show?

Same for the A/V software log.

> 
> pg_dump: [archiver (db)] connection to database "dbexample" failed: could not connect to server: Connection refused
(0x0000274D/10061)
>          Is the server running on host "localhost" (127.0.0.1) and accepting
>          TCP/IP connections on port 6488?
> could not connect to server: Connection refused (0x0000274D/10061)
>          Is the server running on host "localhost" (::1) and accepting
>          TCP/IP connections on port 6488?
> 
> Richard
> 



-- 
Adrian Klaver
adrian.klaver@aklaver.com



pgsql-general by date:

Previous
From: Greg Stark
Date:
Subject: Re: PITR and Temp Tables
Next
From: Shaozhong SHI
Date:
Subject: Can anyone confirm the flaw of postgres and how to deal with it?