Snowsql includes it's own system libraries, particularly libz for backward-compatibility reason's but doesn't unload those libraries before trying to open a browser, causing the browser to fail to open. If you replace the bundled libraries with your system libraries it will work, until snowsql upgrades itself. The you'll have to do it again. I wrote a script for whenever that happens
#!/usr/bin/env bash
VERSION=$(snowsql --version | cut -d' ' -f2)
LIBS="$HOME/.snowsql/$VERSION"
LIBZ="$LIBS/LIBZ.so.1"
if ! [[ -L $LIBZ ]]
then
mv -v $LIBZ{,-bak}
fi
SYSTEM=$(sudo find /usr -name libz.so* 2> /dev/null | head -n1)
ln -sfv $SYSTEM $LIBZ
Pinned Comments
dcelasun commented on 2023-03-28 21:39 (UTC) (edited on 2025-03-19 21:15 (UTC) by dcelasun)
To add the Snowflake GPG keys to your keyring, run