issue with PSQL 17.1 on Suse 15 Linux SP6

Started by Raghu Dev Ramaiahabout 1 year ago2 messagesbugs
Jump to latest
#1Raghu Dev Ramaiah
rramaiah@opentext.com

Hi

I was trying to install our product with PostgreSQL 17.1 on Suse 15 Linux SP6 platform. I observed below errors while installing PSQL. Is there any issue? Thanks

stderr: /home/siva/25.2/bld27psqlot/share/postgres/15.6/bin/initdb: error while loading shared libraries: libicui18n.so.67: cannot open shared object file: No such file or directory

stderr: /home/siva/25.2/bld27psqlot/share/postgres/15.6/bin/initdb: error while loading shared libraries: libicuuc.so.67: cannot open shared object file: No such file or directory
'
stderr: /home/siva/25.2/bld27psqlot/share/postgres/15.6/bin/initdb: error while loading shared libraries: libicudata.so.67: cannot open shared object file: No such file or directory
02/17/2025 15:30:25 Unable to create new database cluster for PostgresSQL server

stderr: /home/siva/25.2/bld27psqlot/share/postgres/15.6/bin/postgres: symbol lookup error: /home/siva/25.2/bld27psqlot/share/postgres/15.6/bin/postgres: undefined symbol: ucol_open_67
02/17/2025 15:38:30 stderr: command not found

Regards
Raghu

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Raghu Dev Ramaiah (#1)
Re: issue with PSQL 17.1 on Suse 15 Linux SP6

Raghu Dev Ramaiah <rramaiah@opentext.com> writes:

I was trying to install our product with PostgreSQL 17.1 on Suse 15 Linux SP6 platform. I observed below errors while installing PSQL. Is there any issue? Thanks

You appear to be trying to install a package that was built against a
different version of ICU than what you have installed (or maybe you
don't have any version of it?).

You can install that version of ICU, or build PG from source against
whatever version you do have (or build --without-icu if you have to),
or discuss the version discrepancy with wherever you got the PG
package from and see if the packager will fix it. This bug list is
for source-code bugs, we don't deal with packaging problems.

regards, tom lane