sqlpage / SQLPage

Fast SQL-only data application builder. Automatically build a UI on top of SQL queries.
https://sql.datapage.app
MIT License
1.65k stars 98 forks source link

unable to start binary on Rocky Linux 8 (GLIBC_2.29 missing) #709

Open cbertelli opened 1 day ago

cbertelli commented 1 day ago

Introduction

Starting the binary il bails that it cannot find GLIBC_2.29 nor in libm.so.6 or libc.so.6

To Reproduce

Start a binary on a v. 8 Red Hat compatible

Actual behavior

Error

$ /opt/sqlpage/sqlpage.bin: /lib64/libm.so.6: version `GLIBC_2.29' not found (required by /opt/sqlpage/sqlpage.bin)
   /opt/sqlpage/sqlpage.bin: /lib64/libc.so.6: version `GLIBC_2.29' not found (required by /opt/sqlpage/sqlpage.bin)

Expected behavior

Rely on the current libc version or musl (for AlpineLinux)

Version information

lovasoa commented 1 day ago

Hello and welcome to SQLPage !

Glibc 2.29 was released almost 6 years ago, I think it is reasonable dependency to have.

If using a more recent os is not an option, I can recommend our docker image: https://hub.docker.com/r/lovasoa/sqlpage

If you need help to get started, do not hesitate to ask here ! What do you want to build with SQLPage ?

lovasoa commented 1 day ago

Here is a musl-based statically linked sqlpage binary I compiled locally, in case it's useful.

sqlpage.0.31.musl.bin.gz

cbertelli commented 1 day ago

Thank you very much! I will try it on a newer RH compatible distribution, thanks for the musl-based binary.