astdb2sqlite3.8 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. .TH "ASTDB2SQLITE3" "8" "30 SEPTEMBER 2013" "Asterisk 11" ""
  2. .SH NAME
  3. astdb2sqlite3 \- convert astdb to SQLite 3
  4. .SH SYNOPSIS
  5. .B astdb2sqlite3 path/to/astdb
  6. .SH "DESCRIPTION"
  7. Up until version version 11, Asterisk used an old version of the
  8. Berkeley DB 1.86 (bdb) to store its internal persistent database. In
  9. version 11 it switched to using a SQLite 3 database. This program is
  10. used to convert an existing bdb astdb file to astdb.sqlite3.
  11. Normally the conversion is done by Asterisk itself which will run this
  12. program. But you may need to run it on your own.
  13. .SH OPTIONS
  14. There is a single (and required) parameter: the path the the bdb file.
  15. The output file name will be the same as the input, with
  16. .B .sqlite3
  17. appended.
  18. .SH EXAMPLES
  19. Asterisk will typically run the following to upgrade the database:
  20. astdb2sqlite3 /var/lib/asterisk/astdb
  21. which will create \fB/var/lib/asterisk/astdb.sqlite3\fR.
  22. .SH SEE ALSO
  23. .B astdb2bdb(8),
  24. .B asterisk(8)
  25. .SH AUTHOR
  26. astdb2sqlite3 was written by Terry Wilson <twilson@digium.com>.
  27. This manual page was written by Tzafrir Cohen <tzafrir.cohen@xorcom.com>.