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.
- Timestamp:
-
Jun 23, 2008, 12:39:27 PM (17 years ago)
- Author:
-
Adam
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v1
|
v1
|
|
| 1 | By 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 | |
| 7 | In 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 | {{{ |
| 10 | in `open_container': Lock table is out of available locker entries (BDB::Fatal) |
| 11 | }}} |
| 12 | |
| 13 | If this happens, stop the DEB server completely: |
| 14 | {{{ |
| 15 | sudo /etc/init.d/deb-server stop |
| 16 | }}} |
| 17 | |
| 18 | Go to ''/var/lib/deb-server/db'' directory and run |
| 19 | {{{ |
| 20 | sudo db4.5_recover |
| 21 | }}} |
| 22 | |
| 23 | Start the DEB server: |
| 24 | {{{ |
| 25 | sudo /etc/init.d/deb-server start |
| 26 | }}} |