Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Mac OS X 10.6.4, Erlang R14A
Description
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