4

Heroku でホストされている Compojure で基本的な Web アプリを作成しようとしています。私はこのウェブサイトのチュートリアルに従っています:

http://www.vijaykiran.com/2012/01/17/web-application-development-with-clojure-part-2/

ロボスとコルマの部分を削ってから2日ほど経ちます。アプリはローカルの Postgres サーバーに接続できるようになりましたが、Heroku にプッシュしようとしたり、Heroku Postgres データベースに接続しようとすると、次のエラーが発生します。

PSQLException FATAL: no pg_hba.conf entry for host "the IP", user "the username", database "the dbname", SSL off  org.postgresql.core.v3.ConnectionFactoryImpl.doAuthentication (ConnectionFactoryImpl.java:291)

ここに私のproject.cljがあります:

(defproject portfolio "1.0.0-SNAPSHOT"
  :description "My personal portfolio"
  :url "the URL"
  :license {:name "FIXME: choose"
            :url "http://example.com/FIXME"}
  :dependencies [[compojure "1.1.1"]
                 [ring/ring-jetty-adapter "1.1.0"]
                 [ring/ring-devel "1.1.0"]
                 [ring-basic-authentication "1.0.1"]
                 [environ "0.4.0"]
                 [com.cemerick/drawbridge "0.0.6"]
                 [hiccup "1.0.4"]
                 [lobos "1.0.0-beta1"]
                 [korma "0.3.0-RC5"]
                 [org.clojure/java.jdbc "0.2.3"]
                 [postgresql "9.1-901.jdbc4"]
                 [clj-yaml "0.3.1"]
                 [http.async.client "0.5.2"]
                 [clj-bonecp-url "0.1.0"]
                 [org.slf4j/slf4j-nop "1.7.2"]
                 [org.clojure/clojure "1.5.1"]]
  :min-lein-version "2.0.0"
  :plugins [[environ/environ.lein "0.2.1"]]
  :hooks [environ.leiningen.hooks]
  :profiles {:production {:env {:production true}}})

データ移行にはロボス ( https://github.com/budu/lobos ) を使用しています。私は github ページのアドバイスに従い、config.clj を作成しました。これは、このページのアドバイスで編集しました。

(ns lobos.config
  (:refer-clojure :exclude [replace reverse])
  (:use [clojure.string :as str]
        lobos.connectivity)
  (:import (java.net URI)))

(defn heroku-db
  "Generate the db map according to Heroku environment when available."
  []
  (when (System/getenv "DATABASE_URL")
    (let [url (URI. (System/getenv "DATABASE_URL"))
          host (.getHost url)
          port (if (pos? (.getPort url)) (.getPort url) 5432)
          path (.getPath url)]
      (merge
       {:subname (str "//" host ":" port path)}
       (when-let [user-info (.getUserInfo url)]
         {:user (first (str/split user-info #":"))
          :password (second (str/split user-info #":"))})))))

(def db
  (merge {:classname "org.postgresql.Driver"
          :subprotocol "postgresql"
          :subname "//localhost:5432/blogdb"}
         (heroku-db)))

(defn open-global-when-necessary
  "Open a global connection only when necessary, that is, when no previous
  connection exist or when db-spec is different to the current global
  connection."
  [db-spec]
  ;; If the connection credentials has changed, close the connection.
  (when (and (@lobos.connectivity/global-connections :default-connection)
             (not= (:db-spec (@lobos.connectivity/global-connections :default-connection)) db-spec))
    (lobos.connectivity/close-global))
  ;; Open a new connection or return the existing one.
  (if (nil? (@lobos.connectivity/global-connections :default-connection))
    ((lobos.connectivity/open-global db-spec) :default-connection)
    (@lobos.connectivity/global-connections :default-connection)))


(open-global-when-necessary db)

上記のエラーが表示されます。

SSL を有効にする方法はわかりましたが:ssl "true"、config.clj の db マップに追加しました。ただし、新しいエラーが発生しました。

SunCertPathBuilderException unable to find valid certification path to requested target.

Heroku にプッシュしようとすると、SSL がオンかオフかに関係なく、次のエラーが表示されます。

Exception in thread "main" org.postgresql.util.PSQLException: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections., compiling:(config.clj:44:1)

さらに詳細が必要な場合は、お知らせください。

4

2 に答える 2

0

当面の最善の方法は、単に@#'parse-properties-urlトリックを使用して、clojure.java.jdbc 内で必要な関数がプライベートであるという事実を回避することです。

ただし、この変更により、将来のバージョンで SSL を有効にすることが容易になります。

https://github.com/clojure/java.jdbc/pull/35#issuecomment-32956962

于 2014-01-21T22:13:28.627 に答える