-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing libssl.so.1.1
needed by timescaledb-2.8.1.so
in timescale/timescaledb:2.15.2-pg14
(trying to upgrade)
#260
Comments
Can confirm I'm also getting this, for |
I have the same issue with This problem was introduced in commit 20e456c which casually removes Postgres 13 support - perhaps that's why libssl was removed in that commit. Perhaps Postgres 14 also requires libssl? |
I pulled \x off
\t
\pset format unaligned
select format('psql -c "drop extension if exists timescaledb"; psql -X -c "create extension timescaledb version %L"; test $? -eq 0 || echo "%s failed" > fail.txt', x.version, x.version)
from
(
select
((string_to_array(version, '.'))[1])::int as maj
, ((string_to_array(version, '.'))[2])::int as min
, ((string_to_array(version, '.'))[3])::int as patch
, version
from pg_catalog.pg_available_extension_versions
where name = 'timescaledb'
order by 1,2,3
) x
; These versions failed:
|
@jedwards1211 while we are fixing this... |
@ToonSpinTUe I just confirmed that |
@jgpruitt yes, I was able to follow that upgrade path. Thanks! |
Thank you @jgpruitt I had already found that workaround. Thanks for picking this issue up! I have subscribed to the PR and will put our Docker setup back on On another note, it seems to have been your understanding that you were good to remove support from Postgres 13: are there plans to remove PG 13 support from Timescaledb in the (near) future? If so, is there a roadmap/EOL or some date we can mark on our calendars? |
Seems like you solved this by yourself and this can be closed. PG13 support has been removed, we try to limit the amount of supported major pg versions to the three most recent ones as the older the version the more effort it takes to keep it supported. |
Hi @svenklemm, awesome that it's fixed! So just to confirm: if I upgrade my timescaledb image to |
Also I would note that according to the Dockerhub page you do in fact still support Postgres 13. |
Postgres 17 was released like a week ago or so, so I guess 14 isn't supposed to be supported anymore? |
I think #200 has reoccurred...
I'm trying to upgrade from
timescale/timescaledb:2.8.1-pg14
totimescale/timescaledb:2.15.2-pg14
(and thereafter to2.15.2-pg16
) but it's missing and oldlibssl.so.1.1
version needed bytimescaledb-2.8.1.so
:I assume since
timescaledb-2.8.1.so
is present in the image it's supposed to be possible to run it, so this must be a bug in the image.libssl.so.1.1
is present in2.15.0-pg14
and2.15.1-pg14
, but not2.15.2-pg14
.The text was updated successfully, but these errors were encountered: