close Warning: Can't synchronize with repository "(default)" (/usr/local/svn/deb2-client does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of ServerTroubleshooting


Ignore:
Timestamp:
Jun 23, 2008, 12:39:27 PM (17 years ago)
Author:
Adam
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ServerTroubleshooting

    v1 v1  
     1By default, logs are stored in ''/var/log/deb-server/'' directory for each service separately (eg. wordnet_services.log, admin_services.log), have a look in the logfile if there's some useful error message.
     2
     3== Common problems ==
     4
     5=== Lock table ===
     6
     7In case of too many consequent restarts in a short period or unexpected reboot (e.g. power failure), BerkeleyDB sometimes does not free the resources used. Log file contains following error:
     8
     9{{{
     10in `open_container': Lock table is out of available locker entries (BDB::Fatal)
     11}}}
     12
     13If this happens, stop the DEB server completely:
     14{{{
     15sudo /etc/init.d/deb-server stop
     16}}}
     17
     18Go to ''/var/lib/deb-server/db'' directory and run
     19{{{
     20sudo db4.5_recover
     21}}}
     22
     23Start the DEB server:
     24{{{
     25sudo /etc/init.d/deb-server start
     26}}}