Opened 14 years ago

Closed 13 years ago

#25373 closed defect (fixed)

couchdb crash on start after erlang upgrade to R14A

Reported by: jeff-macports@… Owned by: jyrkiwahlstedt
Priority: Normal Milestone:
Component: ports Version: 1.9.1
Keywords: Cc: bruno@…, bradley.holt@…
Port: couchdb

Description

See apache issue COUCHDB-805.

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 

Change History (5)

comment:1 Changed 14 years ago by ryandesign (Ryan Carsten Schmidt)

Cc: jwa@… removed
Owner: changed from macports-tickets@… to jwa@…
Priority: HighNormal

High priority tickets are reserved for MacPorts team members to create.

comment:2 Changed 14 years ago by bruno@…

Cc: bruno@… added

Cc Me!

comment:3 Changed 14 years ago by bradley.holt@…

Cc: bradley.holt@… added

Cc Me!

comment:4 Changed 14 years ago by jeff-macports@…

This issue has been fixed with the release of couchdb 1.0.0.

comment:5 Changed 13 years ago by jmroot (Joshua Root)

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.