[ https://issues.apache.org/jira/browse/COUCHDB-716?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12851603#action_12851603 ]
Paul Joseph Davis commented on COUCHDB-716: ------------------------------------------- Looks like it is the command that lists and formats the modules list. Apparently OpenSolaris' sed doesn't like input that isn't newline terminated. Changing the find/tr/sed command to find/tr/awk/sed using awk to add a new line appears to fix things. $ find src/couchdb -name "couch*.erl" -exec basename {} .erl \; | tr '\n' ',' | awk '{print $1}' | sed "s/,$//" > CouchDB fails to start, just hangs. > ----------------------------------- > > Key: COUCHDB-716 > URL: https://issues.apache.org/jira/browse/COUCHDB-716 > Project: CouchDB > Issue Type: Bug > Components: Database Core > Affects Versions: 0.11 > Environment: opensolaris/snv98 > Reporter: Victor Igumnov > > CouchDB 0.10.x works well while CouchDB 0.11 fails to start, it just hangs > with no debug information. I have used truss to trace the execution to the > hang point. > Truss debug info > http://temp.fabulously40.com/~victori/couch.txt > Pstack info on the hanged process > http://temp.fabulously40.com/~victori/couchdb-pstack.txt -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.