2.8. Troubleshooting an Installation
2.8.1. First Install
If your CouchDB doesn’t start after you’ve just installed, check the followingthings:
- On UNIX-like systems, this is usually this is a permissions issue. Ensurethat you’ve followed the User Registration and Security
chown
/chmod
commands. This problem is indicated by the presence ofthe keywordeacces
somewhere in the error output from CouchDB itself. - Some Linux distributions split up Erlang into multiple packages. For yourdistribution, check that you really installed all the required Erlangmodules. This varies from platform to platform, so you’ll just have towork it out for yourself. For example, on recent versions of Ubuntu/Debian,the
erlang
package includes all Erlang modules. - Confirm that Erlang itself starts up with crypto (SSL) support:
- ## what version of erlang are you running? Ensure it is supported
- erl -noshell -eval 'io:put_chars(erlang:system_info(otp_release)).' -s erlang halt
- ## are the erlang crypto (SSL) libraries working?
- erl -noshell -eval 'case application:load(crypto) of ok -> io:put_chars("yay_crypto\n") ; _ -> exit(no_crypto) end.' -s init stop
- Next, identify where your Erlang CouchDB libraries are installed. This willtypically be the lib/ subdirectory of the release that you have installed.
- Use this to start up Erlang with the CouchDB libraries in its path:
- erl -env ERL_LIBS $ERL_LIBS:/path/to/couchdb/lib -couch_ini -s crypto
- In that Erlang shell, let’s check that the key libraries are running. The
%%
lines are comments, so you can skip them:
- %% test SSL support. If this fails, ensure you have the OTP erlang-crypto library installed
- crypto:md5_init().
- %% test Snappy compression. If this fails, check your CouchDB configure script output or alternatively
- %% if your distro comes with erlang-snappy make sure you're using only the CouchDB supplied version
- snappy:compress("gogogogogogogogogogogogogogo").
- %% test the CouchDB JSON encoder. CouchDB uses different encoders in each release, this one matches
- %% what is used in 2.0.x.
- jiffy:decode(jiffy:encode(<<"[1,2,3,4,5]">>)).
- %% this is how you quit the erlang shell.
- q().
- The output should resemble this, or an error will be thrown:
- Erlang/OTP 17 [erts-6.2] [source] [64-bit] [smp:2:2] [async-threads:10] [kernel-poll:false]
- Eshell V6.2 (abort with ^G)
- 1> crypto:md5_init().
- <<1,35,69,103,137,171,205,239,254,220,186,152,118,84,50,
- 16,0,0,0,0,0,0,0,0,0,0,0,0,0,...>>
- 2> snappy:compress("gogogogogogogogogogogogogogo").
- {ok,<<28,4,103,111,102,2,0>>}
- 3> jiffy:decode(jiffy:encode(<<"[1,2,3,4,5]">>)).
- <<"[1,2,3,4,5]">>
- 4> q().
- At this point the only remaining dependency is your system’s Unicode supportlibrary, ICU, and the Spidermonkey Javascript VM from Mozilla. Make sure thatyour
LD_LIBRARY_PATH
or equivalent for non-Linux systems(DYLD_LIBRARY_PATH
on macOS) makes these available to CouchDB.Linux example running as normal user:
- LD_LIBRARY_PATH=/usr/local/lib:/usr/local/spidermonkey/lib couchdb
- Linux example running as couchdb user:
- echo LD_LIBRARY_PATH=/usr/local/lib:/usr/local/spidermonkey/lib couchdb | sudo -u couchdb sh
- If you receive an error message including the key word
eaddrinuse
,such as this:
- Failure to start Mochiweb: eaddrinuse
- edit your ``etc/default.ini`` or ``etc/local.ini`` file and change the
- ``[chttpd] port = 5984`` line to an available port.
- If you receive an error including the string:
- … OS Process Error … {os_process_error,{exit_status,127}}
then it is likely your SpiderMonkey JavaScript VM installation is notcorrect. Please recheck your build dependencies and try again.
- If you receive an error including the string:
- … OS Process Error … {os_process_error,{exit_status,139}}
this is caused by the fact that SELinux blocks access to certain areas ofthe file system. You must re-configure SELinux, or you can fully disableSELinux using the command:
- setenforce 0
- If you are still not able to get CouchDB to start at this point, keepreading.
2.8.2. Quick Build
Having problems getting CouchDB to run for the first time? Follow this simpleprocedure and report back to the user mailing list or IRC with the outputof each step. Please put the output of these steps into a paste service (suchas https://paste.ee/) rather than including the output of your entirerun in IRC or the mailing list directly.
- Note down the name and version of your operating system and your processorarchitecture.
- Note down the installed versions of CouchDB’s dependencies.
- Follow the checkout instructions to get a fresh copy of CouchDB’s trunk.
- Configure from the couchdb directory:
- ./configure
- Build the release:
- make release
- Run the couchdb command and log the output:
- cd rel/couchdb
- bin/couchdb
- Use your system’s kernel trace tool and log the output of the above command.
- For example, linux systems should use
strace
:
- For example, linux systems should use
- strace bin/couchdb 2> strace.out
- Report back to the mailing list (or IRC) with the output of each step.
2.8.3. Upgrading
Are you upgrading from CouchDB 1.x? Install CouchDB into a fresh directory.CouchDB’s directory layout has changed and may be confused by librariespresent from previous releases.
2.8.4. Runtime Errors
2.8.4.1. Lots of memory being used on startup
Is your CouchDB using a lot of memory (several hundred MB) on startup? This oneseems to especially affect Dreamhost installs. It’s really an issue with theErlang VM pre-allocating data structures when ulimit is very large orunlimited. A detailed discussion can be found on the erlang-questions list,but the short answer is that you should decrease ulimit -n
or defineERL_MAX_PORTS
to something reasonable like 1024.
2.8.4.2. erlang stack trace contains system_limit, open_port
Erlang has a default limit of 1024 ports, where each FD, tcp connection, andlinked-in driver uses one port. You seem to have exceeded this. You canchange it at runtime using the ERL_MAX_PORTS
env variable.
2.8.4.3. function raised exception (Cannot encode ‘undefined’ value as JSON)
If you see this in the CouchDB error logs, the JavaScript code you are usingfor either a map or reduce function is referencing an object member that isnot defined in at least one document in your database. Consider thisdocument:
- {
- "_id":"XYZ123",
- "_rev":"1BB2BB",
- "field":"value"
- }
and this map function:
- function(doc) {
- emit(doc.name, doc.address);
- }
This will fail on the above document, as it does not contain a name
oraddress
member. Instead, use guarding to make sure the function onlyaccesses members when they exist in a document:
- function(doc) {
- if(doc.name && doc.address) {
- emit(doc.name, doc.address);
- }
- }
While the above guard will work in most cases, it’s worth bearing JavaScript’sunderstanding of ‘false’ values in mind. Testing against a property with avalue of 0 (zero), ''
(empty String), false
or null
will returnfalse. If this is undesired, a guard of the form if (doc.foo !== undefined)
should do the trick.
This error can also be caused if a reduce function does not return a value. Forexample, this reduce function will cause an error:
- function(key, values) {
- sum(values);
- }
The function needs to return a value:
- function(key, values) {
- return sum(values);
- }
2.8.4.4. erlang stack trace contains bad_utf8_character_code
CouchDB 1.1.1 and later contain stricter handling of UTF8 encoding. If you arereplicating from older versions to newer versions, then this error may occurduring replication.
A number of work-arounds exist; the simplest is to do an in-place upgrade ofthe relevant CouchDB and then compact prior to replicating.
Alternatively, if the number of documents impacted is small, use filteredreplication to exclude only those documents.
2.8.4.5. FIPS mode
Operating systems can be configured to disallow the use of OpenSSL MD5 hashfunctions in order to prevent use of MD5 for cryptographic purposes. CouchDBmakes use of MD5 hashes for verifying the integrity of data (and not forcryptography) and will not run without the ability to use MD5 hashes.
The message below indicates that the operating system is running in “FIPS mode,”which, among other restrictions, does not allow the use of OpenSSL’sMD5 functions:
- md5_dgst.c(82): OpenSSL internal error, assertion failed: Digest MD5 forbidden in FIPS mode!
- [os_mon] memory supervisor port (memsup): Erlang has closed
- [os_mon] cpu supervisor port (cpu_sup): Erlang has closed
- Aborted
A workaround for this is provided with the —erlang-md5
compile flag. Use ofthe flag results in CouchDB substituting the OpenSSL MD5 function calls withequivalent calls to Erlang’s built-in library erlang:md5.
NOTE: there may bea performance penalty associated with this workaround.
Because CouchDB does not make use of MD5 hashes for cryptographic purposes, thisworkaround does not defeat the purpose of “FIPS mode,” provided that the systemowner is aware of and consents to its use.
2.8.5. macOS Known Issues
2.8.5.1. undefined error, exit_status 134
Sometimes the Verify Installation
fails with an undefined
error.This could be due to a missing dependency with Mac.In the logs, you will find couchdb exit_status,134
.
Installing the missing nspr
via brew install nspr
resolves the issue.(see: https://github.com/apache/couchdb/issues/979)
原文: http://docs.couchdb.org/en/stable/install/troubleshooting.html