You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Alex Portnov (JIRA)" <ji...@apache.org> on 2010/06/19 06:41:28 UTC

[jira] Created: (COUCHDB-805) public_key application has to be started with Erlang R14A

public_key application has to be started with Erlang R14A
---------------------------------------------------------

                 Key: COUCHDB-805
                 URL: https://issues.apache.org/jira/browse/COUCHDB-805
             Project: CouchDB
          Issue Type: Bug
          Components: Infrastructure
         Environment: Mac OS X 10.6.4, Erlang R14A
            Reporter: Alex Portnov
            Priority: Minor
             Fix For: 0.12
         Attachments: couch_app.patch

After installing Erlang R14A couchdb won't start. ssl application initialization failure due to public_key application not being started.
Adding public_key into start_apps sequence in src/couchdb/couch_app.erl fixed the problem.

-    case start_apps([crypto, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
+    case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (COUCHDB-805) public_key application has to be started with Erlang R14A

Posted by "Benoit Chesneau (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COUCHDB-805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benoit Chesneau closed COUCHDB-805.
-----------------------------------

      Assignee: Benoit Chesneau
    Resolution: Fixed

committed, thanks! . tested on R13B04 and R14A also available since R12B5.

> public_key application has to be started with Erlang R14A
> ---------------------------------------------------------
>
>                 Key: COUCHDB-805
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-805
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Infrastructure
>         Environment: Mac OS X 10.6.4, Erlang R14A
>            Reporter: Alex Portnov
>            Assignee: Benoit Chesneau
>            Priority: Minor
>             Fix For: 0.12
>
>         Attachments: couch_app.patch
>
>
> After installing Erlang R14A couchdb won't start. ssl application initialization failure due to public_key application not being started.
> Adding public_key into start_apps sequence in src/couchdb/couch_app.erl fixed the problem.
> -    case start_apps([crypto, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
> +    case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (COUCHDB-805) public_key application has to be started with Erlang R14A

Posted by "Alex Portnov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COUCHDB-805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alex Portnov updated COUCHDB-805:
---------------------------------

    Attachment: couch_app.patch

Patch file to start public_key application

> public_key application has to be started with Erlang R14A
> ---------------------------------------------------------
>
>                 Key: COUCHDB-805
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-805
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Infrastructure
>         Environment: Mac OS X 10.6.4, Erlang R14A
>            Reporter: Alex Portnov
>            Priority: Minor
>             Fix For: 0.12
>
>         Attachments: couch_app.patch
>
>
> After installing Erlang R14A couchdb won't start. ssl application initialization failure due to public_key application not being started.
> Adding public_key into start_apps sequence in src/couchdb/couch_app.erl fixed the problem.
> -    case start_apps([crypto, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
> +    case start_apps([crypto, public_key, sasl, inets, oauth, ssl, ibrowse, mochiweb]) of
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.