Page 1 of 1

CLuster of the latest Vicibox 9.0.1, Telephony not starting

PostPosted: Sat Mar 14, 2020 7:07 pm
by boiken
Hello
Im facing an issue

I have a cluster with 1 DB/WEB and 1 Tel.

The telephony has issues service vicidial doesnt start,it shows this error
(Mar 14 23:44:26 telephony1 systemd[1]: Starting LSB: ViciDial Telephony Server...
Mar 14 23:44:26 telephony1 vicidial[1468]: Starting ViciDial Telephony Server...
Mar 14 23:44:26 telephony1 vicidial[1468]: find: '/etc/wanpipe': No such file or directory
Mar 14 23:44:26 telephony1 vicidial[1468]: Loading dahdi_dummy module... failed.
Mar 14 23:44:26 telephony1 vicidial[1468]: Fallback to dahdi module... final failure! Aborting startup.)

Normally asterisk doesnt start too at boot.
If i start asterisk manually when i login the conference doesnt work, i get a ring on the softphone and once i answer the conference fails and the session goes down.

This is a cluster done by the procedure.

Thanks

Re: CLuster of the latest Vicibox 9.0.1, Telephony not start

PostPosted: Sun Apr 26, 2020 5:12 am
by carpenox
Check if dahdi is running:

dahdi_cfg -vvv

It should tell you what version and that thers 0 channels.

If its not running then try this:

Code: Select all
***Install Asterisk - Dadhi and libpri
mkdir /usr/src/asterisk
cd /usr/src/asterisk
wget http://downloads.asterisk.org/pub/telephony/libpri/libpri-current.tar.gz
wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz

tar xzf dahdi-linux-complete-*
tar xzf libpri-*
 
cd /usr/src/asterisk/dahdi-linux-complete-*
make
make install
make config
cd tools
make clean
make
make install
make config



Then check it again, and type: modprobe dahdi

Hope this helps.

-Nox