diff --git a/heplme/Asterisk odbc steps.docx b/heplme/Asterisk odbc steps.docx new file mode 100644 index 0000000..eab0bdb Binary files /dev/null and b/heplme/Asterisk odbc steps.docx differ diff --git a/heplme/Asterisk odbc steps.odt b/heplme/Asterisk odbc steps.odt new file mode 100644 index 0000000..1000661 Binary files /dev/null and b/heplme/Asterisk odbc steps.odt differ diff --git a/heplme/Asterisk- The Definitive Guide, 4th Edition.pdf b/heplme/Asterisk- The Definitive Guide, 4th Edition.pdf new file mode 100644 index 0000000..2000245 Binary files /dev/null and b/heplme/Asterisk- The Definitive Guide, 4th Edition.pdf differ diff --git a/heplme/note.txt b/heplme/note.txt new file mode 100644 index 0000000..05e0e28 --- /dev/null +++ b/heplme/note.txt @@ -0,0 +1,33 @@ +;install odbc on asterisk running container +This installs: +asterisk-odbc → Asterisk's ODBC module +unixodbc → ODBC driver manager +unixodbc-dev → Development files for ODBC +mariadb-client → MySQL/MariaDB client tools (for testing) + +sudo docker exec -it mat_asterisk sh -c "apk add --no-cache asterisk-odbc unixodbc unixodbc-dev mariadb-client" + + + +THEN CHECK USING THIS +1️⃣ Check If ODBC Modules Are Available +Run this command inside your Asterisk container: + +sh +Copy +Edit +sudo docker exec -it mat_asterisk ls /usr/lib/asterisk/modules | grep odbc +This should list files like: + +Copy +Edit +res_odbc.so +res_config_odbc.so +cdr_odbc.so +cel_odbc.so +func_odbc.so +If res_odbc.so and res_config_odbc.so are missing, then ODBC support is not installed in Asterisk. + +SEEMS to be THE ONLY AVAILABLE for the alpine linux connector +sudo docker exec -it mat_asterisk sh -c "apk add --no-cache unixodbc" +