Fatel: unsupported frientend protocol error

Started by eswar reddyalmost 4 years ago4 messagesgeneral
Jump to latest
#1eswar reddy
eswarareddyps03@gmail.com

Hi sir, I am getting below error for the past 3 month's plz can suggest how
to resolve this issue.

PostgreSQL 9.6 version and Linux redhat 7.2 efm 4.1 plz

Fatel: unsupported frientend protocol 1234.5680: server supports 1.0 to 3.0

This error continuesly getting in log file

Thanks & Regards
Eswara Reddy

#2Laurenz Albe
laurenz.albe@cybertec.at
In reply to: eswar reddy (#1)
Re: Fatel: unsupported frientend protocol error

On Thu, 2022-06-30 at 16:40 +0530, eswar reddy wrote:

Hi sir, I am getting below error for the past 3 month's plz can suggest how to resolve this issue.

PostgreSQL 9.6 version and Linux redhat 7.2 efm 4.1 plz

Fatel: unsupported frientend protocol 1234.5680: server supports 1.0 to 3.0

This error continuesly getting in log file

This is simple: upgrade the server to a supported version, ideally v14.

Yours,
Laurenz Albe

#3David G. Johnston
david.g.johnston@gmail.com
In reply to: Laurenz Albe (#2)
Re: Fatel: unsupported frientend protocol error

On Thursday, June 30, 2022, Laurenz Albe <laurenz.albe@cybertec.at> wrote:

On Thu, 2022-06-30 at 16:40 +0530, eswar reddy wrote:

Hi sir, I am getting below error for the past 3 month's plz can suggest

how to resolve this issue.

PostgreSQL 9.6 version and Linux redhat 7.2 efm 4.1 plz

Fatel: unsupported frientend protocol 1234.5680: server supports 1.0 to

3.0

This error continuesly getting in log file

This is simple: upgrade the server to a supported version, ideally v14.

Good advice regardless, but wouldn’t v14 still give that same error if some
client tried to present protocol version 1234.5680 as the desired
communicarion protocol?

David J.

#4Tom Lane
tgl@sss.pgh.pa.us
In reply to: David G. Johnston (#3)
Re: Fatel: unsupported frientend protocol error

"David G. Johnston" <david.g.johnston@gmail.com> writes:

On Thursday, June 30, 2022, Laurenz Albe <laurenz.albe@cybertec.at> wrote:

On Thu, 2022-06-30 at 16:40 +0530, eswar reddy wrote:

Fatel: unsupported frientend protocol 1234.5680: server supports 1.0 to
3.0

This is simple: upgrade the server to a supported version, ideally v14.

Good advice regardless, but wouldn’t v14 still give that same error if some
client tried to present protocol version 1234.5680 as the desired
communicarion protocol?

Per src/include/libpq/pqcomm.h, that code is

#define NEGOTIATE_GSS_CODE PG_PROTOCOL(1234,5680)

So some client is running code new enough to try GSS protocol,
but the 9.6 server doesn't know what that is. You'd need v12
or later server if you don't want to see these complaints.
(But you could just ignore them.)

regards, tom lane