This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-13
Channels
- # babashka (7)
- # babashka-sci-dev (3)
- # beginners (29)
- # biff (16)
- # calva (2)
- # clojars (1)
- # clojure (50)
- # clojure-austin (5)
- # clojure-europe (29)
- # clojure-france (8)
- # clojure-nl (3)
- # clojure-uk (3)
- # clojured (10)
- # clojurescript (19)
- # code-reviews (3)
- # core-async (22)
- # cursive (5)
- # data-science (11)
- # datalevin (1)
- # datomic (10)
- # eastwood (4)
- # helix (4)
- # introduce-yourself (2)
- # jobs (1)
- # jobs-discuss (1)
- # joyride (6)
- # leiningen (4)
- # london-clojurians (2)
- # lsp (82)
- # malli (7)
- # meander (12)
- # minecraft (3)
- # nbb (14)
- # off-topic (52)
- # podcasts (3)
- # portal (3)
- # re-frame (32)
- # reagent (9)
- # releases (2)
- # shadow-cljs (95)
- # tools-deps (14)
What version of the Postgresql driver does the latest onprem transactor use? I’m having trouble connecting the transactor to a Postgres 14 instance: “PSQLException: The authentication type 10 is not supported”. I’m no postgres expert, but I think that this means that the client (the transactor) isn’t capable of scram-sha-256 authentication, is that correct?
Version 9.3-1102 as far as I can tell:
$ unzip -l datomic-pro-1.0.6397.zip | grep postgresql
592322 2022-04-01 21:54 datomic-pro-1.0.6397/lib/postgresql-9.3-1102-jdbc41.jar
Right, thanks 👍
I ended up using md5 passwords in postgres and got things working
@U9MKYDN4Q JohnJ is right, you can swap the driver for a newer one. If you are using the PG Setup script packaged w/ Datomic and targeting Postgres 14 you may need to modify it. IIRC there was a change made in Postgres 14 which our script hasn't yet been updated for. If you're aware of using scram-sha-256 auth I'm sure you'll be able to figure out how to modify the script to accomplish your needs. Hope that helps
Thanks! I ended up changing the password mechanism in psql, which was the least effort at this point 🙂
Thanks 🙂