This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-01-05
Channels
- # aleph (1)
- # announcements (18)
- # babashka (145)
- # beginners (70)
- # calva (34)
- # cider (3)
- # clj-kondo (98)
- # cljdoc (5)
- # cljs-dev (13)
- # clojure (134)
- # clojure-europe (57)
- # clojure-nl (4)
- # clojure-uk (4)
- # clojurescript (40)
- # code-reviews (3)
- # conjure (1)
- # core-async (5)
- # data-science (3)
- # datomic (8)
- # fulcro (9)
- # google-cloud (2)
- # inf-clojure (9)
- # jobs (1)
- # lsp (9)
- # malli (25)
- # polylith (4)
- # reitit (4)
- # releases (2)
- # remote-jobs (3)
- # rewrite-clj (8)
- # shadow-cljs (34)
- # tools-build (1)
- # tools-deps (67)
We are getting local (development) transactor processes dying with exit code 137. Is there documentation for transactor exit codes somewhere?
I'm having trouble connecting to a console running in a docker container using postgres storage
bash-4.3# psql -U datomic -h postgres
Password for user datomic:
psql (9.5.13, server 13.3)
WARNING: psql major version 9.5, server major version 13.
Some psql features might not work.
Type "help" for help.
datomic=> c
^ connection is correct
bash-4.3# /opt/datomic-pro-0.9.5561/bin/console -p 8080 sql datomic:sql://?jdbc:
[1] 898
bash-4.3# Console started on port: 8080
sql = datomic:sql://?jdbc:
Open in your browser (Chrome recommended)
open the browser and i get
The server requested password-based authentication, but no password was provided. trying to connect to datomic:sql://?jdbc:, make sure transactor is running
you need to quote the command line arguments because bash
interprets &
as “run in the background”
like this:
/opt/datomic-pro-0.9.5561/bin/console -p 8080 sql 'datomic:sql://?jdbc:'